I have a button, that, when you press it, loads an external SWF while going to a transitional “Loading …” screen. Afterwards, I want the loading screen to disappear, and have my portfolio.swf become visible. My code is as follows:\r\r////////////////////\ron (release) {\r        _root.attachMovie(“loadTransition”, “t_load”, 0); // attach the loading movie clip\r        setProperty(“t_load”, _x, 325);\r        setProperty(“t_load”, _y, 200);\r        _root.loadMovieNum(“portfolio.swf”, 1); // load the portfolio\r        \r        while (_level1.getBytesLoaded() !== _level1.getBytesTotal()) {\r                i = 0; // delay everything until it loads        \r        }\r        _root[“t_load”][“loadingText”].gotoAndPlay(3); // send it to the frame that says “Done.”\r\r // insert unattach code here:\r}\r//////////////////////////\r\rNow, I need to figure out how to unattach my attached movie clip (loadTransition) and make it so portfolio.swf shows. Any thoughts?\r\rThanks,\rDavid Balatero
as long as you’re using the attach method,\r\rremoveMovieClip();\r\rshould work fine