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

#1 2008-11-03 22:47:56

OrganicHam
Scratcher
Registered: 2008-11-03
Posts: 1

Sprite shrinks

When I use the following script, my sprite shrinks each time I run it, which is not what I expected. I expect the sprite to maintain its size when each time I click on the green flag.

[blocks]
<when green flag clicked>
<forever>
<change size by( -20)>
<wait(.5  )secsc>
<change size by( 20)>
[/blocks]

If I use the following code, my sprite maintains it's size each time I run the script.

[blocks]
<when green flag clicked>
<change size by( 20)>
<forever>
<change size by( -20)>
<wait(.5  )secsc>
<change size by( 20)>
[/blocks]

Can anyone help me understand what's happening here?

thank you

Offline

 

Board footer