HTML
HTML

Reputation: 61

how to maintain aspect ratio in flash as3 video

I have created a flash video player using as3 (videoObject) but when I play the video the video is streched how to tell flash using as3 to maintain aspect ratio.

Upvotes: 0

Views: 1726

Answers (2)

Chmod
Chmod

Reputation: 107

Well, if you're putting it up online, you could always use HTML to do so:

Flash will do this for you, automatically, if you publish your file (File -> publish).

Upvotes: 0

Mark P.
Mark P.

Reputation: 282

Can you use:

myVideo.scaleMode = "maintainAspectRatio";

Upvotes: 1

Related Questions