Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

event listener for _root

Status
Not open for further replies.

lucidtech

IS-IT--Management
Jan 17, 2005
267
0
0
US
I have the following code to load an external SWF file.. I want to create a progress bar for the file being loaded, but cannot seem to get the listener to work correctly.. and yes, I would like to keep this all on the _root level if possible.

loadMovie("game.swf", _root);
myLoaderListener = new Object();
myLoaderListener.complete = function(eventObject) {
trace("loaded");
};

_root.addEventListener("complete", myLoaderListener);
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top