Hey All!
I’m having trouble with an FLV file I’m trying to play.
I’ve encoded the file with Flash Video Encoder.
Resized it to 100x130px.
When i load it in Flash with the following code. It plays, but…
The size isn’t right… It plays at approximatly twice the size it should be.
var videoConnection:NetConnection = new NetConnection();
videoConnection.connect(null);
var videoStream:NetStream = new NetStream(videoConnection);
videoStream.play(“video1.flv”);
var video:Video = new Video();
video.attachNetStream(videoStream);
addChild(video);
Any thoughts on what I’m doing wrong?
Many thanks in advance! Cheers, Wim