Question : No visual with FLVplayback component only sound when using AS

The issue is that I have no visual with my movie when I play my FLV, only sound. I am using action script. I have setup cue points and have code to trace the cue points in the output window. This works fine. I am using a FLVplayback component with a skin. Why can't I see the movie, I can hear it? I am using Flash 8. I am an advanced beginner.
Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
 
ns.onCuePoint = function(infoObject:Object) 
{
    //traces and displays cue points
	trace("onCuePoint:");
    for (var propName:String in infoObject) {
        if (propName != "parameters")
        {
            trace(propName + " = " + infoObject[propName]);
        }
        else
        {
            trace("parameters =");
            if (infoObject.parameters != undefined) {
                for (var paramName:String in infoObject.parameters)
                {
                    trace(" " + paramName + ": " + infoObject.parameters[paramName]);
                }
            }
            else
            {
                trace("undefined");
            }
        } 
    }
    trace("---------"); 
}
 
ns.play("Movie_00012.flv");
stop();
Open in New Window Select All

Answer : No visual with FLVplayback component only sound when using AS

Currently you have no command that says attach this netstream to this video playing object...  You normally do that with the attachVideo() function with the video object, but it is somewhat trickier with the FLVPlayback component...

Maybe this one helps???

http://theflashblog.com/?p=233
http://www.experts-exchange.com/Software/Photos_Graphics/Web_Graphics/Macromedia_Flash/Q_22677185.html
Random Solutions  
 
programming4us programming4us