A Flash Developer Resource Site

Results 1 to 5 of 5

Thread: How to load an swf in an swf

  1. #1
    Client Software Programmer AS3.0's Avatar
    Join Date
    Apr 2011
    Posts
    1,404

    How to load an swf in an swf

    Hi, does anyone know how to load and swf in a parent swf, it works fine for me but the child swf can not use any stage. functions for some reason which causes me to only be able to scale the child swf by using a movieclip as a stage and stretching everything based on the mc stage.

  2. #2
    . fruitbeard's Avatar
    Join Date
    Oct 2011
    Posts
    1,780
    Hi

    Without seeing any example or code or fla regarding your issue, have you tried referencing the class

  3. #3
    Client Software Programmer AS3.0's Avatar
    Join Date
    Apr 2011
    Posts
    1,404
    The swf loader:
    PHP Code:
    var new_swf:Loader = new Loader();

    var 
    loader:Loader = new Loader();
    var 
    loaderInfoStuff:LoaderContext = new LoaderContext(falseApplicationDomain.currentDomainnull);
    loader.contentLoaderInfo.addEventListener(Event.COMPLETEcache_load);

    loaderInfoStuff.allowCodeImport true;

    function 
    load_init_swf(a){
    new_swf.contentLoaderInfo.addEventListener(Event.COMPLETEinit_swf_loaded);
    new_swf.load(new URLRequest(a));
    }
    function 
    init_swf_loaded(e:Event):void{
    var 
    myBytes=e.target.bytes;
    loader.loadBytes(myBytesloaderInfoStuff);
    new_swf.contentLoaderInfo.removeEventListener(Event.COMPLETEinit_swf_loaded);
    }

    function 
    cache_load(e:Event):void{
    var 
    loaded_mc e.target.content as MovieClip;
    addChild(loaded_mc)
    }
    load_init_swf("swf_client.swf"); 
    For the child swf just use any stage.addEventlistener functions and they wont run but addEventlistener alone will, I'll treat your paypal to fix this.

  4. #4
    Lifetime Friend of Site Staff Northcode's Avatar
    Join Date
    Dec 2000
    Location
    Whitehorse YT
    Posts
    3,766
    When your swf2exe tool just HAS to work
    there's only one choice... SWF Studio

  5. #5
    Client Software Programmer AS3.0's Avatar
    Join Date
    Apr 2011
    Posts
    1,404
    Wow I tried a few from online and none worked, well that link worked thanks northcode, let me get your paypal email or else.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center