I know it's 2 different .swfs, but I figured i'm workin in the .fla's whatever =0p anyhow.
They are two seperate movies right now.
I'm attempting to get one movie to change a javascript variable and the other to read that variable, if the variable changes, do something accordingly...this is what i'm trying...
Code in the button you click in movie 1:
on (release){
set (javascript:changemovie, 1);
}
Code in the hopeful reading movieclip actionscript:
stop ();
if (javascript:changemovie==1){
_root.gotoAndStop (2);
}
but it isn't working, so, i'm doing something wrong