But not both at the same time. When I do step 2 the width is (visually) the same as it was in the original, not what I have set it to in step 1 and I cannot find any way to change that.
Do you encounter the same behavior? Do you knw a way to work around?
on mouseUp
clone img 1
set vis of last img to true
set the width of last img to 50
set the imagedata of last img to the imagedata of last img --NEAT-O!
set the angle of last img to 90
end mouseUp
Simon
Edit: I didn't spend much time trying the figure out better ways. There are probably many of them.
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
on mouseUp
put the formattedheight of image 1 into h
put the formattedwidth of image 1 into w
set the height of image 1 to h/2
set the width of image 1 to w/2
set the imagedata of image 1 to the imagedata of image 1 -- < here?
rotate image 1 -90
end mouseUp