Iv'e been creating menus in GFA and i've found that i cannot click menu items once without the same result occurring. I cannot find a way to fix this.
Why doesn't this work (for having different menu items)?
Code: Select all
ON entry$="Quit" GOSUB eval01
ON entry$="About" GOSUB eval02
'
REPEAT
ON MENU
LOOP UNTIL MOUSEK AND 2
'
PROCEDURE eval01
OPEN #1,0,0,200,200,0
DO
PRINT "Menu stuff"
KEYGET n
LOOP UNTIL n=3735584
CLOSE #1
RETURN
'
PROCEDURE eval02
OPEN #1,0,0,300,300,0
DO
PRINT "Menu stuff is great"
KEYGET n
LOOP UNTIL n=3735584
CLOSE #1
RETURN
On a side note and .TXT to .GFA converters out there and vice versa?
Thanks,
Wirelord55