Quote: "What Id like to be able to do is make I guess a drop down menu, and I wanted to use an image, like a button or something, so that when you click in that button it loads another image right below the button, I guess that would be the drop down menu with all the options?"
Yes, there are a few commands for handling that. I'd recommend
paste image or
paste sprite.
You should always load all of your resources
before the main loop begins, because it's a slow and inconsistent process.
// load before main loop
load image "foo.png", 1
do
cls // clear the screen
// draw image using "paste image"
paste image 1, 50, 50
loop
end