XAntares Posted July 16, 2010 Report Share Posted July 16, 2010 Hello, I will make a script, with a command wait for keypress (wait 2 minutes and 30 secounds). After time elapse, macroexpress is aborting. Is it possible, that macro express wait for this time and after no key was pressed, that macro will continue ? Thx in advance and best greetings ! Quote Link to comment Share on other sites More sharing options...
mipoleon Posted July 29, 2010 Report Share Posted July 29, 2010 Hello, I will make a script, with a command wait for keypress (wait 2 minutes and 30 secounds). After time elapse, macroexpress is aborting. Is it possible, that macro express wait for this time and after no key was pressed, that macro will continue ? Thx in advance and best greetings ! You can do this in a round about way. The script would look something like: Repeat Until N1=150 Increment N1 Wait 1 Second Repeat End Quote Link to comment Share on other sites More sharing options...
XAntares Posted August 27, 2010 Author Report Share Posted August 27, 2010 You can do this in a round about way. The script would look something like: Repeat Until N1=150 Increment N1 Wait 1 Second Repeat End Thank you ! I had found a better way until wait for keypress while programm is running: Variable set integer %N1% to 0 Repeat Until %N1% = 1 Delay 5 secounds Text type <F12> If windows Title "save as" is on top Break End if Repeat End So macro continues without keypress automaticly. If programm is finish "save as window" will be appear. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.