Need help in basic flash as2

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Gerard Reyes
    New Member
    • Dec 2010
    • 1

    Need help in basic flash as2

    I'm working with Flash as2 movieclips however id on't know what to write next on my script if the frame that I want to be headed is within two movieclips. here's my script:

    on (release) {
    _root.productco ntent.gotoAndPl ay("glugoat");
    }

    but the frame glugoat is inside productcontent, which is again inside another movieclip named "productspa ge"

    any suggestion on the correct script?
  • AutumnsDecay
    New Member
    • Mar 2008
    • 170

    #2
    If I understand correctly, than this should work:
    Code:
    on (release) {
    _root.productspage.productcontent.gotoAndPlay("glugoat");
    }

    Comment

    Working...