views:

15

answers:

1

I can get the videos to play using the flvplauer component, but im having a little trouble figuring out if and how to dynamically change the path of the flvplayer while running through a timeline. If I can do something like mc.changeFLVPath that would be awesome! Any and all help appriciated.

+1  A: 

Depending on where you call the function from, you should be able to do the following

function playFLV(url:String):void
{ 
    playerInstanceName.source = url;
    //or mc.playerInstanceName.source = url;
}
PatrickS
Sometging told me it was a property...thanks for the directikn. Gonna try it tonight...thanks for such a quick response too!
Aaron
IT WORKS!!! Thanks!
Aaron
Giving you a ONE UP from here cause my rep is too low to vote up, thanks again lol
Aaron