felisan
03-12-2008, 10:14 AM
hej everybody.
I've tried loading a .flv-file into my Flash, and it actually works properly.
I use the following actionscript:
var videoConnection:NetConnection = new NetConnection();
videoConnection.connect(null);
var videoStream:NetStream = new NetStream(videoConnection);
var video:Video = new Video(700, 480);
addChild(video);
video.attachNetStream(videoStream);
videoStream.play("shine_introduction.flv");
and when I test, the .flv is loaded and all is honky Dory.
except...
I get the following error in my trace-window:
Error #2044: Unhandled AsyncErrorEvent:. text=Error #2095: flash.net.NetStream was unable to invoke callback onMetaData. error=ReferenceError: Error #1069: Property onMetaData not found on flash.net.NetStream and there is no default value.
at loading_flv_files_fla::MainTimeline/frame1()
how do I avoid these errors, and how much do they actually matter?
an example of flash loading the .flv-file can be seen here
http://felisan.wordpress.com/2008/01/23/as30-brug-af-after-effects-flv-filer-i-flash-del-1/
thanks
felisan
I've tried loading a .flv-file into my Flash, and it actually works properly.
I use the following actionscript:
var videoConnection:NetConnection = new NetConnection();
videoConnection.connect(null);
var videoStream:NetStream = new NetStream(videoConnection);
var video:Video = new Video(700, 480);
addChild(video);
video.attachNetStream(videoStream);
videoStream.play("shine_introduction.flv");
and when I test, the .flv is loaded and all is honky Dory.
except...
I get the following error in my trace-window:
Error #2044: Unhandled AsyncErrorEvent:. text=Error #2095: flash.net.NetStream was unable to invoke callback onMetaData. error=ReferenceError: Error #1069: Property onMetaData not found on flash.net.NetStream and there is no default value.
at loading_flv_files_fla::MainTimeline/frame1()
how do I avoid these errors, and how much do they actually matter?
an example of flash loading the .flv-file can be seen here
http://felisan.wordpress.com/2008/01/23/as30-brug-af-after-effects-flv-filer-i-flash-del-1/
thanks
felisan