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.

Flash for IOS devices, Indeed a joke by Adobe.

I have worked on AS1,AS3 and using the Flash IDE for the past 9 years, and I love Flash for that rich internet experience. Recently after Steve jobs had banned flash on IOS devices, Adobe did want to give some help for flash developers. That is much appreciated, but there is huge gap on what… Continue reading Flash for IOS devices, Indeed a joke by Adobe.

flash as3 JPG Encoder – Caution

Looking from the image, the white area is the flash swf canvas aka “stage”, blue area aka “_graphics_container” is the movie clip contents which you want to export as jpg even if it is larger than the mask – the green area aka “_graphics_mask” While trying to export the contents of a movie clip as… Continue reading flash as3 JPG Encoder – Caution

FusionCharts Free – Open-source Animated Flash Charts and Graphs for ASP, PHP, ASP.NET, JSP, RoR and other web applications

FusionCharts Free FusionCharts Free is a completely free and open-source Flash charting component. It empowers you to create animated and interactive Flash charts for your web applications, desktop applications and presentations. Who can use FusionCharts Free? Developers No matter which script or database you are using, even if it is simple HTML, you can take… Continue reading FusionCharts Free – Open-source Animated Flash Charts and Graphs for ASP, PHP, ASP.NET, JSP, RoR and other web applications

Using Flash swf + Flash / JavaScript Integration Kit over HTTPS – IE issue fix

My product works over HTTPS and I had to serve a flash application, but there was one weird behavior in IE, the security Dialog box stated an Error “This page contains both secure and non secure items. Do you want to display the nonsecure items?” YES, NO I was using Flash / JavaScript Integration Kit… Continue reading Using Flash swf + Flash / JavaScript Integration Kit over HTTPS – IE issue fix