-
MediaController
is there anyway through AS to tell the controller what flv to load? I thought of triggering it with a varibale
if (_global.playmovie == L1) {
this.loadMovie(nem.flv);
}
but that doesn't work, it always has errors
even with
on (load) {
}
around it. please help
-
or should I put this on the frame
Code:
stop();
_root.vidplayer.loadMovie(_global.vid);
or
Code:
stop();
if (_global.vidplay == L1) {
_root.vidplayer.loadMovie(L1);
}
-
maybe you have better luck by posting this in the appropriate section
-
-
what errors are you getting?
are you using the flvplayback component?
-
I'm using the MediaController and component inspector to set the path of the file, but can you do that in AS
-
ok change everything I changed it to use the seperate parts, display and controller. Now I want to load the .flv into the display with AS
so this is wut I have on the frame
Code:
stop();
_root.player.contentPath = L1.flv;
I also have tried this....
Code:
stop();
_root.player.contentPath = "L1.flv";
but it never works. Is my coding wrong?