i was reading through my calculator manual so i could see what some of the commands did and i stumbled across this bit of code:
Code:
when you run it it takes you to the graphscreen and you can move a cursor around the once you push enter it returns to the program. and i figured if you want a menu this might actually save you some memory and maybe even make it faster because you do not have to check for keyinput. so if you wanted to do a menu you could draw a circle or a box next to a choice and then they put the cursor into the box and press enter than all you have to do is check the coordinates of x and y than do certain stuff based on that.
Code:
:Fnoff
:ZDecimal
:input
when you run it it takes you to the graphscreen and you can move a cursor around the once you push enter it returns to the program. and i figured if you want a menu this might actually save you some memory and maybe even make it faster because you do not have to check for keyinput. so if you wanted to do a menu you could draw a circle or a box next to a choice and then they put the cursor into the box and press enter than all you have to do is check the coordinates of x and y than do certain stuff based on that.