Jump to content

Hoppel

Member
  • Posts

    1
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Switzerland

Everything posted by Hoppel

  1. In the above script the spacebar is used to toggle the quick launch bar on/off. Try sending a minus (-) or a plus (+) key instead of the space bar and it does not just switch from on to off or off to on, but you can make sure that the option is selected or deselected. If you adjust the script a bit, like this, then the quick launch bar is also unlocked. set WshShell = WScript.CreateObject("WScript.Shell") WshShell.SendKeys("^{ESC}") WScript.Sleep 100 WshShell.SendKeys("{TAB}") WScript.Sleep 100 WshShell.SendKeys("%~") WScript.Sleep 100 WshShell.SendKeys("-") WshShell.SendKeys("{TAB}") WshShell.SendKeys("-") WshShell.SendKeys("{TAB}") WshShell.SendKeys("-") WshShell.SendKeys("{TAB}") WshShell.SendKeys("-") WshShell.SendKeys("{TAB}") WshShell.SendKeys("+") WshShell.SendKeys("{TAB}") WshShell.SendKeys("+") WshShell.SendKeys("{TAB}{TAB}") WshShell.SendKeys("-") WshShell.SendKeys("~") Edit: seems like this does not always work here Sometimes it does, sometimes it don't... anyone knows another solution?
×
×
  • Create New...