MasonMill 0 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? Share this post Link to post Share on other sites
somdcomputerguy 103 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. Share this post Link to post Share on other sites
somdcomputerguy 103 Posted August 9, 2010 You bet man. - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change. Share this post Link to post Share on other sites