HP Forums
menu access - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: HP Calculators (and very old HP Computers) (/forum-3.html)
+--- Forum: HP Prime (/forum-5.html)
+--- Thread: menu access (/thread-4960.html)



menu access - ji3m - 10-17-2015 11:41 AM

I have a simple endless loop as follows:

EXPORT loopy()
BEGIN
LOCAL KEY;
REPEAT
RECT_P(); //clear
KEY := WAIT(-1);
//... process_keys
//... use CHOOSE(...) opens over start
// screen
//...
UNTIL 0;
END;

The question
From this pgm is it possible to access system
menus since it owns the keyboard.?

Also, my CHOOSE menus opens over the starting screen and
not my cleared screen. Any way to control this?