Is possible save images with different patch names like:
Example
Line:40
C:\Users\Matheus\Documents\Macro Scheduler 14\Firefox\dir.bmp
When macro get at line 40 again, he would save (dir.bmp) as:
C:\Users\Matheus\Documents\Macro Scheduler 14\Firefox\dir2.bmp
Next time
C:\Users\Matheus\Documents\Macro Scheduler 14\Firefox\dir3.bmp
Etc
Save image with different names
Moderators: Dorian (MJT support), JRL
Re: Save image with different names
Use a loop counter (ie. x=x+1) and then use this variable in your path name like:
AndrewT
Code: Select all
Let>x=0
Repeat>x
Let>x=x+1
Let>ImagePath=C:\Users\Matheus\Documents\Macro Scheduler 14\Firefox\dir(%x%).bmp
Rest of looping code
Until>x=end of loop condition
Re: Save image with different names
Thankyou it worked, one more doubt.
I have 4 macros running at same time, is possible do a code to when i stop the main macro with "Shift Esc" the others 3 also stop?
When i have multiple macros (allow multiple instances option in config) running and i press "shift esc" the command stop only one macro.
I have 4 macros running at same time, is possible do a code to when i stop the main macro with "Shift Esc" the others 3 also stop?
When i have multiple macros (allow multiple instances option in config) running and i press "shift esc" the command stop only one macro.