Jump to content
Macro Express Forums

Play Macro Start From Certain Scripts


H2o-KiD

Recommended Posts

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. :P

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...