• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
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

Copy link to clipboard

Copied

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

Views

225

Translate

Translate

Report

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

Votes

Translate

Translate
Community Expert ,
Jul 10, 2020 Jul 10, 2020

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

LATEST

Wow, you are amazing JoaoCesar!

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

Votes

Translate

Translate

Report

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