/************************** I2ICE TUTORIAL SCREEN #38 **************************/ menu=1 define literally P = 'include scr.37 nolist' define literally R = 'include scr.38 nolist' define literally RTN = 'include scr.38 nolist' define literally N = 'include scr.39 nolist' define literally M = 'include scr.2 nolist' cls /*******************************************************************************/ ' ------------------------' 'Even though break and system specifications do not | SCR38: ARMING AT "1" |' 'help us, perhaps an arm specification can. The arm | M = Go to main menu |' 'specification can be used to set up a window to | N = Next screen |' 'break only when :CMAKER#14 executes to send the | P = Previous screen |' 'first "a" in the output "1a quarter". To establish | Q = Quit tutorial |' 'the arming condition, we need to identify some | R = Rewrite SCR38 |' 'unique activity that precedes the writing of the "a" | SCR# = Screen desired |' 'in "1a quarter". We know that "1" is written just ------------------------' 'before "a" is written. Let''s use that event as the ' 'arming condition.' ' ' 'The arm specification that we need to use is "ARM OUTPUT AT 2 IS 31", where ' '31 is the ASCII hex code for 1. To use the arm specification, we must also ' 'specify when the break should occur after the arm condition is met. The key-' 'word TRIG is used after an arm specification to identify the break condition--' 'here we will use "TRIG OUTPUT AT 2 IS 61". Enter the following command:' ' GO FROM TOP TIL ARM OUTPUT AT 2 IS 31 TRIG OUTPUT AT 2 IS 61;WAIT ' ' ' 'Again enter 150 for Paid and 108 for Price.' '------------------------------------------------------------------------------'