When i try to move my sprite with arrow keys it doesn't work i have watched dozens of
videos of putting the blocks in the right places to move your sprite with arrow keys.I do EXACTLY what the people in videos do but mine just doesn't seem to move?.
Although when i play other peoples projects from the Scratch gallery the arrow keys work just fine.So is there any fix for this ? , if so please reply
Offline
Try this: http://scratch.mit.edu/forums/viewtopic.php?id=89182. If this doesn't work, I don't know what will. Also, I think this would fit better in the Help With Scripts Forum.
Last edited by djdolphin (2013-03-15 16:29:06)
Offline
Do this:
[scratchblocks]
when gf clicked
forever
if <key [right arrow] pressed>
point in direction [90]
move (10) steps
end
if <key [left arrow] pressed>
point in direction [-90]
move (10) steps
end
if <key [up arrow] pressed>
point in direction [0]
move (10) steps
end
if <key [down arrow] pressed>
point in direction [180]
move (10) steps
end
end
[scratchblocks]
If this doesn't work then there must be something wrong with your system.
Offline
Do this:
when gf clicked forever if <key [right arrow] pressed> point in direction [90] move (10) steps end if <key [left arrow] pressed> point in direction [-90] move (10) steps end if <key [up arrow] pressed> point in direction [0] move (10) steps end if <key [down arrow] pressed> point in direction [180] move (10) steps end endIf this doesn't work then there must be something wrong with your system. Sorry about the last one.
Offline