I wanted to know how to make the background of the stage to change whenever I go to the edge. I put in the following blocks:
<when green flag clicked><forever if><touching[edge]<broadcast[next]
Then for the Stage scripts i put:
<when I receive[next] Go to next Background.
But When I do that, the backgrounds rapidly change. Also when the background changes I want the sprite to be at the beginning of the stage.
Offline
DO this:
When Green flag clicked
Forever
If touching {edge?]
Broadcast {Next background]
Go to x [ insert some place not touching any edges] y[0]
End if
End forever
When I recieve [Next backround]
Next Backround
Tada! It should work.
Offline
Or Try this one-
when green flag clicked
forever
if touching edge?
broadcast next
wait 3 seconds(or whatever time)
end if
end forever
Last edited by Subh (2010-06-07 17:57:56)
Offline