Skip to main content
Participant
July 10, 2020
Answered

Get the user name from input text in scene 1 and make it appears on scene 2

  • July 10, 2020
  • 1 reply
  • 371 views

Hi, I'm totally had no idea how to retrieve the user name from scene 1 and display it on the other pages in animate CC. I work with scenes, pls help me with the coding. Thanks in advance 🙂

This topic has been closed for replies.
Correct answer JoãoCésar17023019

Hi.

 

If you're using scenes, I'm gonna assume you're using an AS3 document.

 

A possible solution could be:

 

AS3 (Scene 1)

import flash.events.MouseEvent;

var userText:String = "";

function clickHandler(e:MouseEvent):void
{
	userText = yourInputTextField.text;
	nextScene();
}

stop();
yourNavButton.addEventListener(MouseEvent.CLICK, clickHandler);

 

AS3 (Scene 2)

stop();
yourResultTextField.text = userText;

 

I hope this helps.

 

 

Regards,

JC

1 reply

JoãoCésar17023019
Community Expert
JoãoCésar17023019Community ExpertCorrect answer
Community Expert
July 10, 2020

Hi.

 

If you're using scenes, I'm gonna assume you're using an AS3 document.

 

A possible solution could be:

 

AS3 (Scene 1)

import flash.events.MouseEvent;

var userText:String = "";

function clickHandler(e:MouseEvent):void
{
	userText = yourInputTextField.text;
	nextScene();
}

stop();
yourNavButton.addEventListener(MouseEvent.CLICK, clickHandler);

 

AS3 (Scene 2)

stop();
yourResultTextField.text = userText;

 

I hope this helps.

 

 

Regards,

JC

Participant
July 10, 2020

Wow, you are amazing JoaoCesar!

It worked perfectly on my project. Thanks for your help, really aprreciate it 🙂