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

How to have a button only accept if text is entered in a text box.

New Here ,
Aug 17, 2012 Aug 17, 2012

Copy link to clipboard

Copied

Ok so I have a game called "DCGame"  and I need help with the guest login. Like when people type a nickname for the login. I would it not to accept no text entered. Could you help me?

TOPICS
ActionScript

Views

541

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
LEGEND ,
Aug 17, 2012 Aug 17, 2012

Copy link to clipboard

Copied

Assign the textfield an instance name and use a condtional to test if the length property of the textfield is not zero.

  if(yourTextFieldName.length > 0){

        //  do whatever

  }

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 ,
Aug 17, 2012 Aug 17, 2012

Copy link to clipboard

Copied

Should I put that code inside the button code or outside.

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
LEGEND ,
Aug 17, 2012 Aug 17, 2012

Copy link to clipboard

Copied

LATEST

Only you can answer that.  Put it wherever you need to check the textfield.  Ideally, if you are coding in the timeline, all code should be in the main timeline.

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