A Flash Developer Resource Site

Results 1 to 4 of 4

Thread: how to hide password field?

  1. #1
    Senior Member Wisnuadi's Avatar
    Join Date
    Feb 2001
    Location
    Jakarta, Indonesia
    Posts
    147
    hi guys,
    is there any way to hide a password field input?
    currently I just make the input character have the same color as the background ..lol..

    thanks,

  2. #2
    Senior Member
    Join Date
    May 2002
    Posts
    266
    Flash MX

    TextField.password = true;

    Flash 5 you can use LPFlashEx's input box

    Cut and paste form our web site
    --------------------------------------------
    Input Box - Pop up a input box for text input
    Action : inputBox

    Syntex :
    LP.exec("inputBox", Caption, Text, DefaultValue, InputSize, Options);

    Example :
    LP.exec("inputBox", "Test Input Box", "Please enter text below", "Default Text", "600|500", "RMVCR");

    Parameters :
    Caption : Title text
    Text : Prompt text
    DefaultValue : The default value of the input
    InputSize : [Optional] Input Field Size
    Options : [NUM/PW/RMVCR]Options

    Return Values :
    Input : The Inputed text
    Caption : Identification

    Detail Description :
    Pop up a dialog box with an input field for user to enter data

    If input size is not specified, it is a single line input field. If size is specified, it become multiline and change to your specified size.

    Options is a string. If the below wording appear in the string, the option is on or else it is off.
    NUM Only accept numbers as input
    PW display password chareter (e.g. *) instead of the real chareter
    RMVCR [PRO] As inputbox use standard PC format, it use standard PC CR (Chr(13) + Chr(10)). It may become double line feed when the text is read into flash. You can specify this to convert the PC CR to flash line feed (Chr(10)).
    -------------------------------------------------------

    See the option part for password option.

  3. #3
    Senior Member Wisnuadi's Avatar
    Join Date
    Feb 2001
    Location
    Jakarta, Indonesia
    Posts
    147
    cool,
    but it seems that I cannot access your website,
    is your server down or something?
    I've tried many times

    thanks,

  4. #4
    Senior Member
    Join Date
    May 2002
    Posts
    266
    Strange...

    I just confirmed with a few friends / customer and they all can access the site...

    maybe some DNS problem ??

    try http://61.10.126.49

    Thanks for telling me that.

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