I am trying to display a series of sprites to spell out a name. I want each sprite to wait until the previous one is in position before the next is displayed. So, I have done this block for the 2nd letter.
when gf clicked set x to 0 set y to 0 hide wait until <(xposition of sprite11)=[-123]> wait (1) sec go to x: (-94) y: (0) set size to (50%) showBut when I attempt to use the same structure for the 3rd letter, changing the following blocks to
wait until<(xposition of sprite12)=[-94]>and
go to x: (-65) y: (0)the 3rd sprite appears almost immediately after clicking the green flag instead of waiting until the 2nd one is at -94 like I think I'm telling it to.
Offline
I'm not sure what you are doing wrong, but I have a solution to your problem.
When your first letter is in position, make it broadcast something that tells the second letter to get in position. Then, when in position, make the second one broadcast something to make the third one get in position, and so on. Hope it helps. ^^
Offline
Thanks! The broadcast works quite well!
Offline