Use the "change size by" block in the looks category, or the "set size to" block.
Paulmedwal
Offline
I was just learning to do this earlier today. What I did was Set Size To ( Size * 0.9 ).. there's that block of what the size is already, so you can set the size relative to what it is at the moment.
To make a 3D zooming effect I would say something like
Forever If ( Size > 20 ) <-- here i'd put the eventual size to shrink to,
Set Size To ( Size - 1 ) <-- and then this would shrink it until it got there
<3
Offline
You don't want a "forever-if" there, you want a "repeat-until Size < 21"
The repeat-until ends when the condition is met, but the forever-if keeps grinding away.
Offline
http://scratch.mit.edu/projects/ZeldaRecreation84/633885 It has some examples of that to simulate 3d!
Offline