H2o-KiD Posted December 12, 2006 Report Share Posted December 12, 2006 Hi, I knew this is not impossible right? What I mean is, how can I make that this macro will start at a certain scripts for the first time and then to normal? Example : When we activate it, it will start at the middle script to bottom script as what I wanted it to be. Then for the second time repeat, it will start all over from upper script to bottom script like normal back. I knew this is possible but, what must I do to done this? Would hope some sample macros will do. Thanks a lot and i appreciate this. Quote Link to comment Share on other sites More sharing options...
jason Posted December 12, 2006 Report Share Posted December 12, 2006 You could try something like this. Variable Set Integer %N1% to 1 Repeat Prompt Start (Prompt for repeat count at macro play time) If Variable %N1% = 0 // Place Code Here End If If Variable %N1% = 1 OR If Variable %N1% = 0 // Place Code Here Variable Set Integer %N1% to 0 End If Repeat End You could also try writing each function as a separate macro and then call the macro based upon the if statements. 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.