Welcome, Guest
  • Author Topic: pop-up menu inside movieclip  (Read 948 times)

    koko2

    • Server what's that
    • *
    • Posts: 21
      • View Profile
      • Email
    pop-up menu inside movieclip
    « on: 11/19/06, 13:05 »
    Hi,

    I created a pop-up menu inside a movieclip. But now I can't link the button to another frame on the main timeline, nothing happens when I click on the button. I can only link it to another frame inside the movieclip.

    Does anyone know if this is possible or how to do it?


    Jorge Solis

    • Global Moderator
    • Systems Administrator
    • *****
    • Posts: 14616
      • View Profile
    Re: pop-up menu inside movieclip
    « Reply #1 on: 11/19/06, 14:13 »
    To go to the timeline that contains your clip use:

    _parent.gotoAndStop(2)

    or absolute path:

    _root.gotoAndStop(2)

    Jorge

    koko2

    • Server what's that
    • *
    • Posts: 21
      • View Profile
      • Email
    Re: pop-up menu inside movieclip
    « Reply #2 on: 11/19/06, 14:40 »
    Thanks Jorge