I have an swf1 importing an swf2. If both are at http endpoint, everything works fine. When swf2 is accessed using https, but swf1 is still retrieved thru http, problem comes. swf1 can still loadMovie(swf2athttps), but after loading, operations (e.g. gotoAndStop, getBytesTota...) on the mc that imported swf2 don't work any more. I mean I can see the first frame of swf2 in swf1, but cannot do any operation on it.
My setup does have crossdomain.xml defined as below under root of swf2's domain. Any clues? Help is greatly appreciated!
<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/c...ain-policy.dtd">
<cross-domain-policy>
<allow-access-from domain="*" secure="false"/>
</cross-domain-policy>