FinalVersion Posted May 30, 2009 Posted May 30, 2009 (edited) How can I stop the script from pausing when I click on the tray icon, and remove the "script pause" trayitem, thanks. Edit: Nvm solved myself with Opt("TrayAutoPause", 0) Still need to remove the tray option tho Edited May 30, 2009 by Godly [center][+] Steam GUI [+][+] Clipboard Tool [+][+] System :: Uptime [+][+] StarCraft II Mouse Trap [+][/center]
unixu Posted May 30, 2009 Posted May 30, 2009 How can I stop the script from pausing when I click on the tray icon, and remove the "script pause" trayitem, thanks. Edit: Nvm solved myself with Opt("TrayAutoPause", 0) Still need to remove the tray option tho use the following ^^ Opt("TrayOnEventMode",1) Opt("TrayMenuMode",1) $exititem = TrayCreateItem("Exit") TrayItemSetOnEvent(-1,"Exitt") TraySetClick(16) // This will tell the trayicon to only react on rightklick with mouse TraySetState() Func Exitt() Exit EndFunc
FinalVersion Posted May 30, 2009 Author Posted May 30, 2009 use the following ^^ Opt("TrayOnEventMode",1) Opt("TrayMenuMode",1) $exititem = TrayCreateItem("Exit") TrayItemSetOnEvent(-1,"Exitt") TraySetClick(16) // This will tell the trayicon to only react on rightklick with mouse TraySetState() Func Exitt() Exit EndFuncThanks. [center][+] Steam GUI [+][+] Clipboard Tool [+][+] System :: Uptime [+][+] StarCraft II Mouse Trap [+][/center]
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now