vote up 0 vote down star

First off, thank you very much for your time and any help that you can offer.

My question is as follows,

  • I have two swf's: MovieA.swf, MovieB.swf

  • MovieA is hosted off of a web server at WebsiteA.com
  • MovieB is hosted off of a web server at WebsiteB.com

  • WebsiteB contains a crossdomain.xml file, which allows access from WebsiteA,
  • and to be extra thorough, we will also add a crossdomain.xml file to WebsiteA

  • MovieA and MovieB both have System.security.allowInsecureDomain, which should allow them to access each others classes variables and functions.

  • MovieA has the ability to load MovieB,



    ---now on to the problem,

    Lets say MovieA has a text field in the _root, and MovieB has code pointing at this text field (the path may look like, _root.txtfld.text), it is unable to edit the variable associated with the text field in the _root.

    also, movieclips in MovieB can not have clip events applied to them, for instance:

    //MovieA
    _root.LoadedMovieB.MC_Button1.onPress=function(){
        //anything - or showcase the first problem,
        _root.txtfld.text="Hello World";
    }
    

    again this issue appears that objects in the different "domain sandboxes" are unable to be edited.
    and also, note that this problem only occurs when hosted on the internet, when the swf "sandbox mode" is remote. It works fine when run off of my development box, when the "sandbox mode" is local-trusted.


    The reason I wish to figure this out, is that I want to call functions defined in MovieA, from the loaded MovieB. My hopes are that MovieB can be simple, without defining functions per SWF movie that I wish to import, so that I have a centralized place I can update all of the functions (MovieA). A good example of what I am trying to accomplish is like CSS, where you have interpreted code, which relies from a central location, and when you want to make minor changes, you just change the central css file.

    it is proving to be a pain... but I hope it will save me trouble in the long run.
    THANKS!!

  • flag

    Your Answer

    Get an OpenID
    or

    Browse other questions tagged or ask your own question.