This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2013-03-09 00:00:39

jakesyl
New Scratcher
Registered: 2013-03-05
Posts: 8

Blinking Arrow

Hello I Have an arrow I want to Blink when space bar is pushed


[scratchblocks] when space key pressed
Switch to Costume <(down orange)>
forever
    go to x:12 y:45
    wait 1 secs
    go to x:-1000 y:500
    wait 1 secs
[scratchblocks/]
It doesn't move at all

Offline

 

#2 2013-03-09 10:31:23

Smozzick
Scratcher
Registered: 2011-10-23
Posts: 100+

Re: Blinking Arrow

That's normal. Telling scratch to move something off of the stage in a direct way such as that can lead to problems. To make it blink it would be better to just use this:

When [space v] key pressed
wait [1] secs
hide
wait [1] secs
show
Also, just to note: to end the scratchblocks tag it should be /scratchblocks inside of the []s.

Last edited by Smozzick (2013-03-09 10:33:57)


http://i50.tinypic.com/ded8m.png

Offline

 

#3 2013-03-28 21:07:02

jakesyl
New Scratcher
Registered: 2013-03-05
Posts: 8

Re: Blinking Arrow

Thank you

Offline

 

Board footer