Hi All, i’m having some problems with my website.
I have a main swf that reads two smaller ones; but the thing is the URL parameter defines witch one must be read.
for exemple:
http://mysite.com?var1=swf1?var2=swf1frame?var3=swf
I have three variables that defines:
var 1 = what swf must load
var 2 = what frame should swf go to
var 3 = what is the second swf file to load
i made it work but inside flash I need to work via URL parameter.
//loads player
var player = new Loader; // cria moldura de carregamento
addChild (player); // puts player on the stage
player.x = 0; // defines the position of X
player.y = 0; // defines Y position of player
player.load ( new URLRequest ("one.swf")); // loads sj.swf inside of player
// loads content
var cont = new Loader;
addChild (cont);
cont.x = 0;
cont.y = 0;
cont.load ( new URLRequest ("two.swf"));
PLEASE HELP!!!