forked from: forked from: Loading external classes using ApplicationDomain

This is the standard example for importing external classes 
from an ApplicationDomain class, but it won't work in wonderfl.

Is there a way to make this work, or is it just impossible to do?

No, it's not impossible.

If you load the SWF file A from different domain samplerinfo.com
the class Bounce difined in Ais loaded into current application domain as
samplerinfo.com::Bounce@??????
and you cannot find the class Bounce.

if you want to load the classes of A directly into current application domain,
set securityDomain property of loader context to SecurityDomain.currentDomain

cheers,
happy fun coding!!