PcExpert Posted January 11, 2008 Posted January 11, 2008 Hi all,I need help with this script:$tool = ToolTip("Counting Down...", 0, 0)For $i = 900 to 0 Step -1 GUICtrlSetData($tool, $i)NextGUICtrlSetData($tool, "Ready...")What I want it to do is display the tooltip always and the loop should sleep 1 second between the steps and then edit the tooltip with the remaining seconds. But to show a tooltip you'll have to use sleep() but then the script pauses, so how to solve that?
PsaltyDS Posted January 11, 2008 Posted January 11, 2008 Hi all, I need help with this script: What I want it to do is display the tooltip always and the loop should sleep 1 second between the steps and then edit the tooltip with the remaining seconds. But to show a tooltip you'll have to use sleep() but then the script pauses, so how to solve that? A tool tip is not a GUI Control: For $i = 10 to 0 Step -1 ToolTip("Counting Down... " & $i) Sleep(1000) Next MsgBox(64, "Ta Da!", "Ready...") Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
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