I'm loading several different link to .flv videos. I want each one to play in the same window. Currently, I can get the first one I click to play but the others just make it sit there like its trying to download. My trace function still outputs but the video just goes blank. It doesn't matter which one either.
Any ideas?
-Dustin
Rom 8:28
Code:
class ClipMenuItem extends MovieClip {
var ClipURL:String;
var txtClipName:TextField;
function init(myVideo:VideoClip) {
this.ClipURL = myVideo.filename;
this.txtClipName.text = myVideo.VideoTitle;
}
function showClip() {
this._parent._parent.ClipPlayer.load(this.ClipURL);
this._parent._parent.ClipPlayer.play();
trace("Loading "+this.ClipURL);
}
function onPress() {
this.showClip();
}
}
Any ideas?
-Dustin
Rom 8:28