[Coco] Cocoflash menu improvement
Rietveld Rietveld
rietveldh at hotmail.com
Mon May 1 00:56:13 EDT 2017
I noticed now that I have 100 program pak images flashed that it takes a bit of time to scroll from 1 to 100 because the menu displays 12 entries at a time
In addition to the (P) prev. and (N) next selection
I added 2 extra commands to the menu program :
(F) goes to first 12 entries
(L) goes to last 12 entries
This gives the MENU program much more flexibility
These changes can be made by
Editing line 50 to read:
50 input " P=prv,N=nxt,F=frst,L=lst";s$:s=val(s$):if (s<1 or s>p) and s$<>"n" and s$<>"p" and s$<>"f" and s$<>"L" then run
Add lines:
114 if s$="F" then FP=1: if s$="F" then lp=12
116 if s$="L" then FP=(p-11) : if s$="L" then lp=p
That's it. Pretty simple but big improvement
,
More information about the Coco
mailing list