I tried the following script:
for (var i = 0; i < 3; i++) {
mc = createEmptyMovieClip("mc" + i, i);
mc.lineStyle(0, 0, 0);
mc.beginFill(0xFF >> (i * 8));
mc.moveTo(-50, -15);
mc.lineTo(50, -15);
mc.lineTo(50, 15);
mc.lineTo(-50, 15);
What about changing the height and width of a movieclip inside the one
you are rotating and scaling?
Just a thought.
Dave
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mail
I'm having a thorny Flash problem and I was wondering if you've seen
anything like it before. In the tool I am building, you can place an object
on the stage and do a free transform kind of operation on it; you can scale
X, scale Y, and rotate it around its center. So far, I can:
* rotate
* scale
3 matches
Mail list logo