PDA

View Full Version : T9


rameshkpalleri
08-21-2006, 08:01 AM
Hello wonderful people..
has any body wotked in t9 text field in flash lite 2.0..?
would like to here from u..
im looking forwerd to develop an application in lite 2.0. in that i need to include a2 text fields, in that i need to impliment t9 in that..
how do we do this..?
thank you
Ranesh

jjbilly
08-21-2006, 05:38 PM
I've moved this to General Help as a more appropriate board - however, you may want to look elsewhere on the web for a Flash Lite forum, since there isn't a relevant board here - I don't know how much knowledge there is here.

CyanBlue
08-21-2006, 08:42 PM
Here is one by Richard Leggett...
http://richardleggett.co.uk/blog/index.php/2006/02/21/flash_lite_2_0_inline_textfield

I'd love to see FL forum in the AS.org... :)

rameshkpalleri
08-29-2006, 07:19 AM
Thankyou Mr.Cyan blue..;)
I got the solution from Richard, i made some additions and have posted the same here...
http://www.flashmobileforum.org/node/440

mrtwombly
08-20-2007, 03:26 PM
Iīm looking to make a similar T9 text input application but using Flash 8 and clicking on buttons instead of a mobile device. I have figured out how to cycle letters with one button but canīt get any timeout function to work. I have been playing with intervals without great success. Does anyone have any clue on how to solve this.

Here is the basic initial code

txt1 = "a";
txt2 = "b";
txt3 = "c";
num = 1;
text_input.text = txt1;
cycle_btn.onPress = function () {
num++;
if (num > 3){
num = 1;}
text_input.text += _root["txt" + num];
}