Article

Home » Design and Layout » Flash Tutorials » Flash Script - Form Validation in Flash

About the Author

SitePoint

View all articles by SitePoint...

Flash Script - Form Validation in Flash

By SitePoint

July 24th, 2003

Reader Rating: 4

If you create a form for your site, you should, of course, check for errors in user input before the form can be successsfully submitted.

This simple tutorial will show you how to check whether a user-entered number is actually a number, not some other character. Download the sample files here.

1. Create an empty text box, and give it the variable name "txt".

2. Create a button of your choice, right click the button, and select "actions". Insert this action:

on (release)
{
if(int(txt)==0)
{
txt="Not Number";
}
else
{
txt="Is Number";
}
}

3. That's it! Now, take it for a spin! Enter a letter or number into your form, and see it function.

Here's how it works. If any letter appears in text box, int() returns 0, otherwise, int returns the entered number. Simple!

If you liked this article, share the love:
Print-Friendly Version Suggest an Article

Rate This Article

  • 1
    Poor
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
    Great

Comment on This Article

Have something to say?

Post A Comment

You need to be a member of the SitePoint Forums to comment on this post. Sign Up

Already a member? Post using your SitePoint Forums account: