Native VS HTML5 – IOS Why? Future…

It just happened this morning, I wanted a heavy breakfast, hungry “stomach growling”. Just that the cafeteria was not yet open. When inquired they said, it would be open in 20 minutes. Fine, I started walking around the campus, took mini statement from the ATM machines, smoked a cigarette, Climbed up the floor in lift,… Continue reading Native VS HTML5 – IOS Why? Future…

Flash listener for IOS keyboard “done” – snippet

import flash.ui.Keyboard; stage.addEventListener(KeyboardEvent.KEY_DOWN, KeyListener); private function KeyListener(evt:KeyboardEvent):void { if(evt.keyCode == Keyboard.ENTER) { //evaluate done key code } } Once you set the keyboard listener for stage, you can crack the “done” button for a textField input. Hope this snippet helps.