Buttons dont work when loading movie

Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default Buttons dont work when loading movie

    Hi Support Team,

    I am trying to make a website in flash that displays some research i've done.
    I have some buttons that load different swf files using loadmovie. One of the
    swf files that I want to load is a simple slide show. (I also tried using the
    load_image.fla flash file that came as a sample when I got flash). When I load
    the movie into my target, the buttons on the slide show don't seem to function
    at all. In fact none of the pictures load. However, when I run the swf file by
    itself the images load perfectly and the buttons are fully functional. Is there
    something special that I need to do in order to get the buttons to work? I have
    my loadmovie command below. Thanks so much.

    loadMovie("load_image.swf", "targetmc");
    loadMovie("welcome.swf", "targetmc2");

    -Deva

    Xiajain Guest

  2. Similar Questions and Discussions

    1. why dont it work
      errr hi i can get to work on my internet but if i playsumin local to my pc it keeps using flash player 7
    2. it just dont work
      please, some body can help me a box in my site should conect to a weather forecast, but it never conects.... what should I do?
    3. Dont work! Please help!
      Hello! First of all I wanna say thanks for all who will answer my dumm question! PS: Sorry about my English :) Im a begginer in Flash Media...
    4. Buttons dont work in Scrollpane
      If any one could help it would be awsome, I have a navbar movie clip which inside has buttons that go to frames inside of this movieclip, these...
    5. My PHP Sessions dont work
      Please can someone help me with this. I have a nice simple test for a php session to see if my setup is ok, but it does not pass vars correctly. ...
  3. #2

    Default Re: Buttons dont work when loading movie

    hi Xiajain,

    it sounds like problem with the paths.
    do u have the external files next to the html file you are using to load
    your main movie?

    your main swf movie when is getting loaded in a html page then leaves also
    in there, that means if you have your external files somewhere else and not
    next to the html page, you will not be able to load them.

    give us some more info about the structure ofy our files (.html and .swf) to
    see where they are!

    thanks
    steliso


    "Xiajain" <webforumsuser@macromedia.com> wrote in message
    news:c21b3m$550$1@forums.macromedia.com...
    > Hi Support Team,
    >
    > I am trying to make a website in flash that displays some research i've
    done.
    > I have some buttons that load different swf files using loadmovie. One of
    the
    > swf files that I want to load is a simple slide show. (I also tried using
    the
    > load_image.fla flash file that came as a sample when I got flash). When I
    load
    > the movie into my target, the buttons on the slide show don't seem to
    function
    > at all. In fact none of the pictures load. However, when I run the swf
    file by
    > itself the images load perfectly and the buttons are fully functional. Is
    there
    > something special that I need to do in order to get the buttons to work? I
    have
    > my loadmovie command below. Thanks so much.
    >
    > loadMovie("load_image.swf", "targetmc");
    > loadMovie("welcome.swf", "targetmc2");
    >
    > -Deva
    >

    Stelios Jijikakis Guest

  4. #3

    Default Re: Buttons dont work when loading movie

    Seems a problem with code. For instance, have you absolute references like
    '_root ...' in the
    movie you are loading? If yes pay attention because, once loaded in another
    movie, those references
    point to the _root of the movie in which you load your swf.

    In FlashMX 2004 you can lock the root. In MX you should use relative
    references e,g,

    on(release) {
    this,_parent.playSlideShow();
    }

    HTH,

    -c.

    CesareRocchi Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139