Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
1

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

New Here ,
Jul 10, 2020 Jul 10, 2020

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 🙂

TOPICS
Code , How to
364
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jul 10, 2020 Jul 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

Translate
Community Expert ,
Jul 10, 2020 Jul 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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 10, 2020 Jul 10, 2020
LATEST

Wow, you are amazing JoaoCesar!

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

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines