Hello
I'm creating a shooting game in Director. I want to have an object drop from top to bottom of the screen in a straight vertical line. The object will need to keep repeating this before it's shot.
Does anyone know how to do that in Lingo?
Many thanks
if the locv of (yoursprite) < (bottom of your stage) then
set the locv of sprite (yoursprite) to (the locv of sprit (yoursprite)) + 1
else
set the locv of sprite (yoursprite) to (the top of your stage)
end if