
Originally Posted by
Dominico
So I got a new laptop and installed windower to play ffxi on it (Windows 7). I've run windower for years on my old desktop (XP). Whenever I needed to open a browser on the desktop, I would ctrl+alt+dlt so that my running processes window would pop up, also allowing me to use the start menu. I'd click on Firefox and be up and running, simply alt-tabbing back and forth. On the laptop whenever I do this, FFXI crashes. I checked the Windower forums and was told to use Ctrl+Shft+Esc instead. Problem is when I do that, nothing happens whatsoever. If I open Firefox before I start FFXI and leave it open I can alt-tab back and forth with no problem. The issue is basically getting to the desktop after FFXI is open with no other programs running. Any ideas?
Here's another alternative.
I made this awhile back, it works for pulling the start bar up for anything. It's an AHK script you can run it or compile it as a exe and add a shortcut to you startup folder. Works for Windows 7 and possible other versions.. It toggles by pressing the Home key or change that to any other key you want to toggle. I've include the script or it you don't want to download ahk, I've uploaded the exe and included the source script there as well.
Toggle Taskbar
Code:
#SingleInstance force
WinHide,ahk_class Shell_TrayWnd
WinHide,Start ahk_class Button
Return
Home::
DetectHiddenWindows,on
ScriptOn := ScriptOn<1 ? 1:0
If ScriptOn = 1
{
WinShow,ahk_class Shell_TrayWnd
WinShow,Start ahk_class Button
}
Else
{
WinHide,ahk_class Shell_TrayWnd
WinHide,Start ahk_class Button
Return
}
Return