Log In
 
Faqs > 


Search
 
 


Flash template not working

This is probably because _root has been used in the Flash file.

_root refers to the root of the Flash file when it is run standalone, but when embedded into Content Point, it refers to the underlying Flash engine.

To resolve this, never use _root in a Flash file, instead use the following code in the root of your Flash files:

// Store the root of the current Flash file
var templateRoot = this;

Then use templateRoot instead of _root throughout the file.