PDA

View Full Version : Input Textbox Problem


vpsedillo
01-21-2005, 01:50 PM
Im using an input text for my search field, character options in UPPERCASE, but everytime i view the output my letter "e" is in lowercase and "F" is in uppercase and "g h" and "i" are in lowercase too and letter "J" is in uppecase but the rest is uppercase.

I tried makin a new document and tested it, same formats and it worked fine. What am i doing wrong here?

Hope to hear a reply. Thank you.

:D

Gibberish
01-21-2005, 04:34 PM
are you embedding fonts? If you are make sure that font has those letters in uppercase.

Other then that can't help ya without some kind of code to trouble shoot.

vpsedillo
01-23-2005, 09:11 AM
ey ive fixed it thru actionscript and with a maximum of 15 characters only
allowed. Below is the code:

mcsearchbox.restrict = "A-Z0-9\\-";
mcsearchbox.maxChars = 15;
The Input text only displays A to Z in uppercase and 0 to 9 and a dash, other than that, it wont display anything else.

:D