There was a simmilar thread to this already, and I’ve got almost the identical issues but am dealing with streaming over flashcomm.
Here’s the issue: I’m working with the VideoPlayback component using FlashComm. I’ve got a script that allows me to use the component without SimpleConnect. As the videoplayback component runs, both the pause/play functionality and the volume functionality work well, but the scrub bar functionality doesn’t work at all.
I dont know if anyone else has run into this issue. If it helps, the FLA contains only 2 layers, one a layer with an instance of the videoplayback component named “video_cc” and another with the following actions:
[color=darkslategray][color=gray][color=silver]//set the name for the video stream. This is the name of the flv file without the extension[/color]
[/color]video_cc.streamName=“U4_Study_5”;[/color]
[color=darkslategray][color=silver]//create a new NetConnection[/color]
myConn=new NetConnection();
myConn.onStatus=function(info){
trace(info.code);
video_cc.connect(myConn);
}[/color]
[color=darkslategray][color=silver]//connect to the video stream[/color]
myConn.connect(“rtmp:/video_tutorial/video”);[/color]
Any thoughts? Thanks!
Andrew