vote up 0 vote down star

Even though I specify different widths and heights for each.

vid = new Video(600, 800);
this.addChild(vid);
trace(vid.width); //600
trace(vid.height); //800

vid2 = new Video(1000, 1200);
this.addChild(vid2);
trace(vid2.width); //600
trace(vid2.height); //800

What is going on here? Is this a flash bug?

flag

0% accept rate
What happens when you instantiate vid2 first? Do the values stay the same or does vid trace out 1000, 1200? – picardo Sep 2 at 1:01
Yes, if I switch the order, they both get sized to 1000x1200. – sol Sep 2 at 1:12

1 Answer

vote up 0 vote down

I just tried your sample code in Flash CS4 on the Mac and I didn't see this problem (I had to add var before the variable names). What version and platform are you using? It might be a bug.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.