Skip to content

Instantly share code, notes, and snippets.

@mizutanikirin
Created June 9, 2014 12:32
Show Gist options
  • Save mizutanikirin/6c36c21d126bceae77f0 to your computer and use it in GitHub Desktop.
Save mizutanikirin/6c36c21d126bceae77f0 to your computer and use it in GitHub Desktop.
FLV読み込み
var netCon:NetConnection = new NetConnection();
netCon.connect(null);
var netStr:NetStream = new NetStream(netCon);
netStr.client = new Object();
netStr.play("test.flv");
var vid:Video = new Video(851, 480);
vid.attachNetStream(netStr);
addChild(vid);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment