A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: loading external swf files

  1. #1
    Junior Member
    Join Date
    Oct 2000
    Posts
    8

    loading external swf files

    hi all! i would like to learn how to load external swf files to an existing flash animation...i really need help

    thanks!

  2. #2
    Senior Member Reamon's Avatar
    Join Date
    Oct 2002
    Location
    Rotterdam(NL)
    Posts
    186
    You can make a MC and load the .swf on that MC like this:
    loadMovieClip("MySwf.swf","MyMC");
    www.rally-racers.com

  3. #3
    Banned
    Join Date
    Apr 2001
    Location
    Montréal, Québec.
    Posts
    25,397
    Not exactly as above...

    But chech this tutorial, where the loadMovie command is explained.

    http://www.kirupa.com/developer/mx/full_site.asp

  4. #4
    Moderator enpstudios's Avatar
    Join Date
    Jun 2001
    Location
    Tampa, Fl.
    Posts
    11,282
    Code:
    createEmptyMovieClip("holder" , "100");
    loadMovie("your.swf" , "holder");
    holder._x = 100;
    holder._y = 200;

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