Jim Tann wrote:
Hello all,

I am building a trade stand presentation for use with a touch screen &
no keyboard but the client wants registration details. This means an on
screen keyboard. Does anyone have one they can share / know about one I
can use.

Cheers
Jim
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
I've made a bunch of them, always needing different rules and such so i never really standardized it. Basically what i do is make an array, and have buttons push letters into that array, and simply join the array together whenever i need a final output. This also lets me automatically alter case, check for length fast, etc. Arrays are your friend.

There's no real quicker way to do something that's so quick to implement.

//declare this first
output = [];
//have your buttons call this function
function enterKey(key:String):Void{
   output.push(key);
}
//alternatively if it's name input and you don't want shift key action
function fixCase(){
   output[0]=output[0].toUpperCase();
}
//finally call this to get a final output
function getOutput():String{
   var final = output.join("");
   return final;
}


For instance you could have
on(press){
   enterKey("a");
   outputField.text = getOutput();
}

It's not exactly a huge problem overall :)

- A
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to