'LINE (RND * 640, RND * 640)-(RND * 640, RND * 640), &HFF000000 + RND * &HFFFFFF, BF
choice
= PopUpMenu
("New|Start|Run|Quit", 100, 100, 16, 2, _RGB32(255, 255, 0), _RGB32(255, 128, 255))PRINT "You chose choice #"; choice
choice = PopUpMenu("Cheese|Beef|Soda|Frog", 150, 150, f, 5, Silver, Purple)
PRINT "And this time you chose choice #"; choice
FUNCTION PopUpMenu
(choice$
, left
, top
, font
, framesize
, framecolor
, fontcolor
)
count = count + 1
temp
(count
) = LEFT$(choice$
, l
- 1) choice$
= MID$(choice$
, l
+ 1) temp(count) = choice$
iw = pw + framesize * 2
ih = fh * count + (framesize) * (count + 2) - 1
FOR i
= 0 TO framesize
- 1:
LINE (i
, i
)-(iw
- i
, ih
- i
), framecolor
, B:
NEXT
Center fh * (i - 1) + framesize * (i + 1), temp(i), tempimage
Highlight = BoxImage(iw - framesize + 2, fh + framesize * 2, framesize, 0, fontcolor)
FOR i
= 0 TO framesize
- 1:
LINE (i
, i
)-(iw
- i
- framesize
* 2, fh
+ framesize
- i
), fontcolor
, B:
NEXT
PopUpMenu = 1
oldmouse = -1
_PUTIMAGE , BG
, D
'Restore our original background _PUTIMAGE (left
, top
), tempimage
, D
'Put our options on the screen _PUTIMAGE (left
+ framesize
, top
+ (fh
+ framesize
) * (PopUpMenu
- 1) + framesize
), Highlight
, D
'put our highlight onto the screen CASE 20480: PopUpMenu
= (PopUpMenu
+ 1) 'down CASE 18432: PopUpMenu
= (PopUpMenu
- 1) 'up
scroll = 0
PopUpMenu
= (PopUpMenu
+ SGN(scroll
)) 'up/down from scrolling the mousewheel y
= (_MOUSEY - top
- framesize
) \
(fh
+ framesize
* 2) PopUpMenu = y + 1
'Note: If you only want the mouse to work inside the box, and not be counted as a viable click, then
'remark out the command above
FOR i
= 1 TO 3 'We have up/down movement on the joystick IF PopUpMenu
> count
THEN PopUpMenu
= 1 IF PopUpMenu
< 1 THEN PopUpMenu
= count
_PUTIMAGE , BG
, D
'Restore our original background
SUB Center
(FromTop
, what$
, where
) IF pw
> sw
THEN Explode
"Center, with pw > sw"
SUB CenterImage
(FromTop
, what
, where
) pw
= _WIDTH(what
): sw
= _WIDTH(where
) 'print width and screen width IF pw
> sw
THEN Explode
"CenterImage, with pw > sw" _PUTIMAGE ((sw
- pw
) \
2, FromTop
), what
, where
PRINT "YOU F'ED UP!! THERE'S A GLITCH IN THE CODE SOMEWHERE!"
FUNCTION BoxImage
(wide
, tall
, thick
, BGcolor
, FrameColor
) LINE (i
, i
)-STEP(wide
- i
* 2, tall
- i
* 2), FrameColor
, B