MasonMill Posted August 8, 2010 Posted August 8, 2010 Say i want something like this: HotKeySet("{END}", "Terminate") I want a tooltip to read "My hotkeyset button " & $Terminate & " is used for ending the script." so that if the hotkey is changed so will the tooltip?
somdcomputerguy Posted August 8, 2010 Posted August 8, 2010 Yep. $Terminate = "{F7}" HotKeySet($Terminate, "Quit") While 1 ToolTip("My hotkeyset button " & $Terminate & " is used for ending the script." ) Sleep(10) WEnd Func Quit() Exit EndFunc - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
somdcomputerguy Posted August 9, 2010 Posted August 9, 2010 You bet man. - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
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