I want to set the actionscript in red to be on the top level. Everytime I run this the loaded.swf is always behind the BrowserBackground. How would I flip flop this in AS3?
import com.gfxcomplex.display.*;
var _test = new BrowserBackground(stage, “http://jennifersfinefoods.com/dev/background.jpg”);
[COLOR=Red]var request:URLRequest = new URLRequest(“loaded.swf”);
var loader:Loader = new Loader();
loader.load(request);
addChild(loader);[/COLOR]