A Flash Developer Resource Site

Results 1 to 5 of 5

Thread: Input text length

Hybrid View

  1. #1
    Senior Member
    Join Date
    Nov 2004
    Location
    nj
    Posts
    176

    Input text length

    How do I control the length of what people are typing into my input box?

  2. #2
    Senior Member
    Join Date
    Aug 2000
    Location
    Montréal
    Posts
    14,141
    yoou mean the number of characters? you have a little box for maximum chars in the properties.

    gparis

  3. #3
    Senior Member
    Join Date
    Nov 2004
    Location
    nj
    Posts
    176
    yeah i just saw that 2 seconds after i posted this. go me!

  4. #4
    Senior Member
    Join Date
    Aug 2000
    Location
    Montréal
    Posts
    14,141


    gparis

  5. #5
    FK'n_dog a_modified_dog's Avatar
    Join Date
    Apr 2003
    Location
    "aaarf"
    Posts
    9,176
    use maxChars -
    PHP Code:
    this.createTextField("age_txt"1010103022);
    age_txt.type "input";
    age_txt.border true;
    age_txt.maxChars 2;
    age_txt.restrict "0-9";

    // or a TextInput component - instance name - my_ti)

    var my_ti:mx.controls.TextInput;
    my_ti.maxChars 2
    hth

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center