Hi Guys,
I'm programming the ion for the first time and wanted to know of any macros that people find usfull.
Cheers.
George.
Hi Guys,
I'm programming the ion for the first time and wanted to know of any macros that people find usfull.
Cheers.
George.
How about "CHAN 1 <ENTER><CLEAR> on an RVI button so the designer can get back to page one.
Although this command looks simple, when put into a macro it doesn't work. The reason is that the macro playback doesn't wait for actions to complete before sending out the next keystroke. I found this a common problem with any macro that causes a display change. The fix is to use MACRO_WAITs at key points in your macro:
CHAN 1 <ENTER>MACRO_WAIT 1<CLEAR>
How about "CHAN 1 <ENTER><CLEAR> on an RVI button so the designer can get back to page one.
Although this command looks simple, when put into a macro it doesn't work. The reason is that the macro playback doesn't wait for actions to complete before sending out the next keystroke. I found this a common problem with any macro that causes a display change. The fix is to use MACRO_WAITs at key points in your macro:
CHAN 1 <ENTER>MACRO_WAIT 1<CLEAR>
www.etcconnect.com