|
-
 Originally Posted by necromanthus
the following (invizible) piece of code is included in that keyframe:
var netConn = new NetConnection();
netConn.connect(null);
var netStream = new NetStream(netConn);
flv1.attachVideo(netStream);
netStream.setBufferTime(5);
netStream.play("whatever.flv");
2) You cannot use netConn.connect("some URL here").
Only netConn.connect(null); is supported.
I'm sure the Video object is going to be improved in the upcoming KM version(s).

What if you changed that code to this :
var netConn = new NetConnection();
netConn.connect(KMOVERRIDEHTTP);
var netStream = new NetStream(netConn);
flv1.attachVideo(netStream);
netStream.setBufferTime(5);
netStream.play("whatever.flv");
Then the action script in Koolmoves to play other than http would be :
KMOVERRIDEHTTP = "rtmp://domain.com/folder";
flv1.netStream.play(eachvid);
KMOVERRIDEHTTP = null;
Can someone make this change and compile a special KM version just for me? 
Hmmmmmm? Where is the "praying to all Gods at once" icon when I need it.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|