Processing Ajax...

Title
Close Dialog

Message

Confirm
Close Dialog

Confirm
Close Dialog

Confirm
Close Dialog

User Image
SilverSix311
11 discussion posts
Hey guys,
So Im having an issue with the taskbar not going away on some applications im using in Fullscreen Windowed mode... I have not been able to get this fixed going through all of the options in Display Fusion. I do use all Display Fusion taskbars, and I have the normal bar hidden with Taskbar Magic app. Is there anything else you guys can think of to fix this?
• Attachment [protected]: Capture.PNG [29,554 bytes]
• Attachment [protected]: Untitled.png [3,889,327 bytes]
Jun 12, 2016  • #1
Keith Lammers (BFS)'s profile on WallpaperFusion.com
That Compatibility rule should do the trick, assuming the path to the EXE is correct. If you open the Settings > Troubleshooting tab, and click "Full screen applications," is WoW.exe listed there as detected?
Jun 13, 2016  • #2
User Image
SilverSix311
11 discussion posts
No it doesn't look like it ever shows up as a FullScreen Application in the Troubleshooting section.
Jun 14, 2016  • #3
Keith Lammers (BFS)'s profile on WallpaperFusion.com
Ok, could you attach a copy of your troubleshooting info, copied while WoW.exe is running?
  • Open the Settings > Troubleshooting tab
  • Click the "Copy to Clipboard" button
  • Paste the text into a text file (please don't paste the text directly into your reply, the formatting gets garbled and makes it difficult to parse)
  • Reply with the file attached
Jun 14, 2016  • #4
User Image
SilverSix311
11 discussion posts
Here ya go.
• Attachment [protected]: DisplayFusion - WoW.exe.txt [164,203 bytes]
Jun 15, 2016  • #5
Keith Lammers (BFS)'s profile on WallpaperFusion.com
Can you try changing the path in the Compatibility rule to just:

Code

*WoW.exe?
Jun 15, 2016 (modified Jun 15, 2016)  • #6
User Image
SilverSix311
11 discussion posts
Still doesn't like it :/
Jun 15, 2016  • #7
Keith Lammers (BFS)'s profile on WallpaperFusion.com
Ok, the weird part is that WoW.exe doesn't even seem to be detected by DisplayFusion in the list of processes. Do you run WoW as administrator, or as a different user?
Jun 16, 2016  • #8
User Image
SilverSix311
11 discussion posts
Yea, that's what I thought was weird to. I have tried making it detect on multiple names, and I for the life of me cannot figure this one out...

The process shows up as World of Warcraft (32 bit).
• Attachment [protected]: Capture.PNG [1,423,476 bytes]
Jun 16, 2016  • #9
Keith Lammers (BFS)'s profile on WallpaperFusion.com
Could you send a screenshot of that process on the Details tab?
Jun 16, 2016  • #10
User Image
SilverSix311
11 discussion posts
Here you go
• Attachment [protected]: Capture.PNG [33,298 bytes]
Jun 17, 2016  • #11
Keith Lammers (BFS)'s profile on WallpaperFusion.com
I'm really stumped on this! Could you try updating to the latest DisplayFusion Beta, and then send over a debug log while WoW is running?
  • On the Troubleshooting tab, change the Logging drop-down to "L1: Log Minimal"
  • Restart DisplayFusion
  • Reproduce the issue and note the time so we'll know where to check in the log file
  • Send us the DisplayFusion.log and DebugInfo.html files (can be found by clicking the Open Log button on the Troubleshooting tab)
  • Disable debug logging after sending the log
Jun 22, 2016  • #12
User Image
SilverSix311
11 discussion posts
Sorry it took a bit to get back to you. Been on vacation :) Here are the logs, the time is about 7:00 PM MST when it happened again.
• Attachment [protected]: DisplayFusion.log [4,006,120 bytes]
Jul 11, 2016  • #13
Keith Lammers (BFS)'s profile on WallpaperFusion.com
No worries, thanks! I don't see wow.exe listed anywhere in the debug log either :(

Did you enable debug logging after launching WoW, or before launching it?
Jul 12, 2016  • #14
User Image
SilverSix311
11 discussion posts
Yup... that's what i've been thinking is fishy too. It's not showing up at all... I turned on L1 logging, restart DisplayFusion, waited a few moments then opened WoW.exe, logged into my character and waited a few moments, and quit the game. I have no idea why this app would not show up.
Jul 12, 2016  • #15
Keith Lammers (BFS)'s profile on WallpaperFusion.com
Yeah, that's bizarre. The only thing I can think of is that WoW might have some anti-cheat protection that's preventing DisplayFusion from seeing the process. Unfortunately I don't think there's anything we can do here :(
Jul 12, 2016  • #16
User Image
SilverSix311
11 discussion posts
Is there any bat file i can run that can trigger DisplayFusion to completely hide the task bar? I can write it myself, but just wasn't sure if there is some kinda API call i can make. I'd be fine writing something to hide it till i close the cmd window after i close the game.
Jul 12, 2016  • #17
Keith Lammers (BFS)'s profile on WallpaperFusion.com
Actually, you could create a Scripted Function in DisplayFusion to disable the taskbar, launch the game, then re-enable the taskbar after it exits. See the code below. If it doesn't work (might have the same problem, where it can't see that the game is actually running), just take out the "WaitForExit" and "EnableTaskbar" lines, and move the EnableTaskbar line to a separate Scripted Function. You can then give those two functions hotkeys so that you can enable/disable the taskbar as needed.

Code

using System;
using System.Drawing;

public static class DisplayFusionFunction
{
  public static void Run()
    {
      // Disable the taskbar
      BFS.DisplayFusion.DisableTaskbar(1);
        
      // Start the game and wait for it to exit
      uint appID = BFS.Application.Start("E:\\World of Warcraft\World of Warcraft - 1.12\\WoW.exe");
      BFS.Application.WaitForExitByAppID(appID);
       
      // After the game has exited, enable the taskbar
      BFS.DisplayFusion.EnableTaskbar(1);
     }
}


Hope that helps!
Jul 13, 2016 (modified Jul 13, 2016)  • #18
Subscribe to this discussion topic using RSS
Was this helpful?  Login to Vote(-)  Login to Vote(-)