/************************** I2ICE TUTORIAL SCREEN #48 **************************/ menu = 1 define literally P = 'include scr.47 nolist' define literally R = 'include scr.48 nolist' define literally N = '''Not relevent for this screen''' define literally RTN = 'include scr.48 nolist' define literally M = 'include scr.2 nolist' cls /*******************************************************************************/ ' ------------------------' 'You have now completed the 47 screens of the main | SCR48: MAIN PATH END |' 'tutorial path. You should feel confident that you | M = Go to main menu |' 'have a good grasp of the I2ICE system''s fundamental | N = Next screen |' 'capabilities and the basic command set. | P = Previous screen |' ' | Q = Quit tutorial |' 'However, it is important to realize that the tutorial| R = Rewrite SCR48 |' 'has not introduced you to all of the I2ICE capabil- | SCR# = Screen desired |' 'ities and commands. In addition, many of the com- ------------------------' 'mands that you now know have options that were not mentioned in this' 'tutorial. To master these other features and commands, consult the I2ICE ' 'manual set, and make use of the I2ICE syntax menu and HELP screens.' 'Note that there are tutorial AID modules of helpful information that were' 'not referenced in the main tutorial path (also ones that you may have skipped).' ' AID1 go to the menu of all AID modlues ' ' AID2 go to the menu of all feature AID modlues ' ' M go to the main tutorial menu ' ' Q quit and exit the tutorial ' '############################### END OF MAIN PATH #############################' /* PROC to count the number of feature modules not yet executed */ define byte m_count = 0 define proc COUNT_MODS = do if not moda_flag then m_count = m_count + 1 end if not modb_flag then m_count = m_count + 1 end if not modc_flag then m_count = m_count + 1 end if not modd_flag then m_count = m_count + 1 end if not mode_flag then m_count = m_count + 1 end if not modf_flag then m_count = m_count + 1 end if not modg_flag then m_count = m_count + 1 end if not modh_flag then m_count = m_count + 1 end if not modj_flag then m_count = m_count + 1 end if not modk_flag then m_count = m_count + 1 end if not modl_flag then m_count = m_count + 1 end if not modm_flag then m_count = m_count + 1 end if not modn_flag then m_count = m_count + 1 end if not modp_flag then m_count = m_count + 1 end if not modq_flag then m_count = m_count + 1 end if not modr_flag then m_count = m_count + 1 end if not modt_flag then m_count = m_count + 1 end if not modv_flag then m_count = m_count + 1 end if not modw_flag then m_count = m_count + 1 end if not modx_flag then m_count = m_count + 1 end end