Skip to main content
Participant
February 23, 2017
Answered

Get symbol

  • February 23, 2017
  • 1 reply
  • 606 views

On Edge we use sym.getSymbol("Symbol");

On Flash we use getChild("Symbol");

Now what I do to get the symbol Symbol and change his Frame position to frame 1 (the second frame)?

Also how I work to get to Stage from inside a symbol (Edge we used sym.getComposition().getStage() )??

    This topic has been closed for replies.
    Correct answer ClayUUID

    this.Symbol.gotoAndStop(1);

    stage

    1 reply

    ClayUUIDCorrect answer
    Legend
    February 23, 2017

    this.Symbol.gotoAndStop(1);

    stage

    erlingg27797165
    Known Participant
    July 27, 2017

    what if you are in a symbol S1 and want a timeline action to get symbol S2 (which is on the stage) to stop on frame 1?

    Colin Holgate
    Inspiring
    July 27, 2017

    this.parent.S2.gotoAndStop(0);