Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!think.com!spool.mu.edu!cs.umn.edu!uc!noc.MR.NET!gacvx2.gac.edu!hhdist From: CW%APG.PH.UCL.AC.UK@CUNYVM.CUNY.EDU Newsgroups: comp.sys.handhelds Subject: Turning menu keys off Message-ID: Date: 20 Jun 91 17:51:40 GMT Lines: 28 Return-path: <@CUNYVM.CUNY.EDU:CW@APG.PH.UCL.AC.UK> To: HANDHELDS@gac.edu Via: UK.AC.UCL.PH.APG; 20 JUN 91 17:52:31 BST Dear all, To turn off the menu label keys at the bottom of the screen use #4E2CFh SYSEVAL You should see the menu line dissapear briefly. It comes back very quicly under normal operations but remains hidden if done at the beginning of a program that does not require user input until the program is finished. To turn it on again use #4E347h SYSEVAL An example program follows. Run TEST and it counts from 1 to 100 with the menu switched off and then counts again with the menu switched on. MOFF = << #4E2CFh SYSEVAL >> MON = << #4E347h SYSEVAL >> LOOP = << 1 100 FOR i i 1 DISP NEXT >> TEST = << MOFF LOOP MON LOOP >> I hope this is useful Conrad