Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Calling macros from another macro
#1
Can one macro be made that will call and execute a number of other macros in sequence? If so, how?

Assume:
macro-1 called by crtl-F1
macro-2 called by crtl-F2
macro-3 called by crtl-F3

How can one make a macro such as:
macro-all called by crtl-F12
which will call and execute macro-1, macro-2, macro-3 in sequence?
#2

If I understand what you're saying, simply put mac- "Macro name" at the bottom of your macro, this will end the current macro and go to the next. That way you can cause a train reaction of macros to run, one right after the other.


Example: Just run the first macro.(Macro80)

Macro ( Macro80 )
Code:
Copy      Help
out "hi"
mac- "Macro81"
Macro ( Macro81 )
Code:
Copy      Help
out "bye"
mac- "Macro82"
Macro ( Macro82 )
Code:
Copy      Help
out "all done"
Taking on Quick Macros one day at a time
#3
Thank you but that does not answer my specific question. Following your solution will not let me run the origional macros as individual macros. If I start in the middle or the train, it wiil progress through the remianing macros.

George
#4
Use functions. Two macros cannot run simultaneously.

Function1
Function2
Function3
...
#5
Thank you so very much. At my age (83) I never would have found the answer on my own. Thanks agai.

George
#6
Age 83, wow! Good for you!!!!!!
At age 36, I thought I was already pretty old to first start doing programming. QuickMacros is the best. Thanks Gintaras!!!!!!!


Forum Jump:


Users browsing this thread: 1 Guest(s)