Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
cycle thru several macros from single key trigger
#1
Hi,
I have several different window arrangements for a set of applications on the screen. I have a macro that rearranges things to several pre-set arrangments. I would like to bundle all those seperate macros together so one key trigger can cycle through them all (advancing one each time pressed). Ideally, it would be repeatable so that it would cycle back to first after it goes through all macros.
Any strategies I can try to work out?

Thanks all!!
Stuart
#2
Use a manager macro that launches other macros. Use a global variable in it.

int+ g_xxx
sel g_xxx
,case 0 mac "macro1"
,case 1 mac "macro2"
...

g_xxx+1
if(g_xxx>=numberofmacros) g_xxx=0
#3
worked like a charm....

QM - a revolution in the making!!!!

S


Forum Jump:


Users browsing this thread: 1 Guest(s)