A Flash Developer Resource Site

Results 1 to 3 of 3

Thread: Actionscript 2.0 and Link problems

Threaded View

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

    your first button has this as the code

    Actionscript Code:
    on (press, release)
    {
        loadMovieNum("history. inner.swf", 0);
    }

    i'm sure it should be

    Actionscript Code:
    on (press, release)
    {
        loadMovieNum("history/inner.swf", 0);
    }

    or

    Actionscript Code:
    on (press, release)
    {
        loadMovieNum("myfoldername/history.inner.swf", 0);
    }
    the other buttons have this sort of thing too

    but maybe you need to remove the spaces on your swf names and put the folder name they are located in before the swf name

    example "folder/my.swf" they need the folder name as they are embedded in the outer html page

    also perhaps use loadMovie() instead of loadMovieNum()

    toodles
    Last edited by fruitbeard; 01-22-2012 at 10:56 AM.

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