Jing Posted March 8, 2013 Report Share Posted March 8, 2013 I am trying to setup a repeat script that will set %T1% to count. this script will be repeating 7000 times. durring the first repeat %T1% will = 1 second repeat %T1% will = 2 etc. thank you in advance. Quote Link to comment Share on other sites More sharing options...
Samrae Posted March 8, 2013 Report Share Posted March 8, 2013 The "Repeat Start" command has an option to put the counter in an integer variable. You could then copy the integer variable to a text variable using the "Variable Modify Integer: Convert %N1% to text string %T1%" command. Quote Link to comment Share on other sites More sharing options...
acantor Posted March 12, 2013 Report Share Posted March 12, 2013 Maybe something like this? // Initialize counter %N1%Variable Set Integer %N1% to 1// Repeat loop starts Repeat Start (Repeat 7000 times)// Perform the action// Code goes here// Increment %N1% by 1 Variable Modify Integer: %N1% = %N1% + 1 End Repeat 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.