Processing Ajax...

Title
Close Dialog

Message

Confirm
Close Dialog

Confirm
Close Dialog

Confirm
Close Dialog

Confirm
Close Dialog

Are you sure you want to delete this item?

User Image
SilverSix311
11 discussion posts
Essentially I have to put my taskbar on "Auto Hide" every time I wanna play Diablo II. I've tried creating triggers, as well as the compatibility settings to treat the application as a fullscreen application. Not sure what else to do.

https://i.imgur.com/wV2Q1a2.png
https://i.imgur.com/wV2Q1a2.png
• Attachment [protected]: DisplayFusion.log [555,760 bytes]
Aug 3, 2021 (modified Aug 3, 2021)  • #1
Owen Muhlethaler (BFS)'s profile on WallpaperFusion.com
Hello,

If you use the "Disable DisplayFusion Taskbars while this application is running" compatibility setting, does that work?

Thanks!
Aug 4, 2021  • #2
User Image
SilverSix311
11 discussion posts
Nope, I ended up trying to use a scripted function to disable the middle taskbar whilst the window is focused. Just doesn't seem to recognize it. I also tried using scripting to do this as well.

Code

using System;
using System.Drawing;

public static class DisplayFusionFunction
{
  public static void Run()
    {
    bool isRunning = BFS.Application.IsAppRunningByFile("*Game.exe");
    if (isRunning == true) {
      // Disable the taskbar
      BFS.DisplayFusion.DisableTaskbar(3);
    }
    while (isRunning == true) {
    
        isRunning = BFS.Application.IsAppRunningByFile("*Game.exe");
        BFS.General.ThreadWait(5000);
        
        }
    if (isRunning != true) {
      // After the game has exited, enable the taskbar
      BFS.DisplayFusion.EnableTaskbar(3);
      }
     }
}
Aug 4, 2021  • #3
Owen Muhlethaler (BFS)'s profile on WallpaperFusion.com
Hello,

Interesting, could you send me over a screenshot of the trigger you were working with?

Thanks!
Aug 5, 2021  • #4
Subscribe to this discussion topic using RSS
Was this helpful?  Login to Vote(-)  Login to Vote(-)