Your request is not specific enough for anyone to help.
Give a pointer to the project, so that people can download it and look at the code.
Say *exactly* what you want your sprite to do.
Say what the sprite is doing instead.
Then someone may be able to help you debug. Obviously, there are a lot of sprites that jump, so it is possible, unless you have some unusual definition of "jump".
Offline
Here is a basic jumping code you can try
<when[ up arrow ]key pressed>
<repeat( 10
<change y by( 5
<repeat( 10
<change y by( -5
<end>
Offline
You could also try to make it like this:
<when green flag clicked>
<forever if> <key[ Up arrow ]pressed?>
<repeat( 10
<change y by( 5
<repeat until> <touching color[ Your color
<change y by( -5
<end>
See if that works for you.
Last edited by music_man (2007-11-09 22:32:15)
Offline