MovieClip Buttons won't work

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

  1. #1

    Default MovieClip Buttons won't work

    I have a very simple movie clip - one frame which contains several buttons
    (it's a sub-menu). When this clip is placed on the stage, it works perfectly.
    When I use ActionScript to make the movie clip visible with the rollOver of a
    seperate button, the clip appears, but it's buttons don't work. This code is on
    the first frame of my fla file

    stop()

    subServices._visible = false

    subServices.onRollOver = btnServices.onRollOver = function()
    subServices._visible = true


    subServices.onRollOut = btnServices.onRollOut = function()
    subServices._visible = false


    Any ideas as to what I'm doing wrong

    Thanks

    bojamels Guest

  2. Similar Questions and Discussions

    1. Form does not work when it?s laying in a movieclip
      I have isolated the problem and it?s seems to be concentrated to the path ?mcForm.skickat eq "yes" below: (the serverside script is done in Php) ...
    2. buttons in mc buttons don't work ?
      I'd like to make a menu that is off the page. The only part showing would be a tab that says "menu". So I made an MC that is off the page and has...
    3. Button inside movieclip ... don?t work
      Ok, that?s the case I have a button that changes the _alpha with the RollOver/RollOut event, it works fine when I put it alone in the movie ...
    4. Buttons on Movieclip
      Hi. I am a Flash MX newbie. I work on a number of projects where I try to create a complete menu in a movieclip. The usual idea is to include an...
    5. trying to get a button to work within a movieclip
      Hi There -- I am trying to do something that I do not think is that complex, but I am frustrated! So, let's see if anyone can help me here! I...
  3. #2

    Default Re: MovieClip Buttons won't work

    from what i understand, in the first case, the submenu is placed in _root and
    in the second case in _root.moviecli
    maybe that's your problem. you should check any other ascionscripts you used
    in your movi

    ovydiu Guest

  4. #3

    Default Re: MovieClip Buttons won't work

    Okay, you have a button that, when rolled over, causes your submenu to appear.
    Now, if you rollOut of the button, your submenu should disappear, yeah? So how
    can you test your submenu? The second you leave the button, the submenu's
    gone? Do you have an invisible button or something on top of your first button
    and maybe the submenu? If so, then you're clicking the invisible button, not a
    submenu item....and if the only action on that button is the rollOver, then
    nothing will happen when you click it, eh

    pazzoboy 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