Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Calling macros
#1
Can someone please give me an example of what I am doing wrong?

Macro359
Code:
Copy      Help
out "0"
mac "Macro360"
out "2"

Macro360
Code:
Copy      Help
out "1"

Output
0
2
1

Thank You
Kenneth
#2

What do you want? Do you want it to output 0 1 2?


mac+ opens macro in editor (doesn't run)

mac- end the current running macro and starts the new one.

mac Default continues executing this item and starts macro. If both items are macros (not functions, etc), macro starts when this macro ends, else, if only macro is macro, is applied "If a macro is running" property.


You will need a function instead of macro if you wish to do that.
Taking on Quick Macros one day at a time
#3
Macros cannot be called. It must be function.

out 0
Macro360
out 2
#4
Thank you
I did a Function and it worked fine.


Forum Jump:


Users browsing this thread: 1 Guest(s)