Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Quick Macros - Rerun Macro automatically
#2
Select macro text (Ctrl+A) and press Tab. It inserts tab before selected lines. Then add "rep 10" line at the beginning, without tab.

Macro Macro2361
Code:
Copy      Help
rep 10
,out "my"
,out "macro"

If need a counter variable:
Macro Macro2361
Code:
Copy      Help
int i
for i 0 10
,out "my"
,out "macro"
,out i

In Java it would be
for(int i=0; i<10; i++){
...
...}

Quick Macros language - everything is in the help file.
Also look in Quick Macros window, Tips pane at the bottom, 'Code tips and examples'.


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)