recent flex posts

 

With the introduction of the iPhone and Android Mobile devices a new medium was created. Touch-screens and smart mobile devices have created an historic technological revolution. These new devices are in the hands of millions of people all the time. With the mobile revolution, a new and unique opportunity has been created that companies can leverage to put their content into the hands of the masses.

 

However, the introduction of these new devices brought with it the creation of many new frameworks for creating content. Each mobile platform has it's own development and design techniques. With all these choices, companies have to choose carefully when picking what approach to take. The most important decision is picking between native development for each device or using one of the many open source options that use a write once deploy to many approach.

 

dov 30/01/2012 - 15:14

vladislavm 24/01/2012 - 23:11

This coming Flex Group Meeting will include two separate one hours sessions:

 

  • "Introduction to Smart phones UX" by Yoav Moran: Yoav will introduce the basics of UX for mobile phones development. 

 

liorb 08/01/2012 - 21:57

PLZ PROVIDE BEST OPEN SOURCE TOOL FOR LOAD TESTING IN FLEX..........

CURRENTLY, MYSELF TRY WITH APACHE JMETER.......I CAN ABLE TO ENTER DATA WITH HTTP PROXY SERVER IN JMETER ...... IS THERE ANY POSSIBLE TO ENTER DATA IN APPLICATION THROUGH JMETER WHILE PLAYBACK THE RECORDING PART....... .PLZ LET ME KNOW IF ANY INFORMATION ABOUT APACHE JMETER.......

team65 16/12/2011 - 10:20

In this meeting I'll demonstrate some of Catalyst's abilities, and how it can be used for fast prototyping and better integration between designer and developer.

ilan 14/12/2011 - 12:14

Google Maps API for Flash has been officially deprecated

 

http://code.google.com/apis/maps/documentation/flash/

 

looking for another map? recommendations?

oren 07/12/2011 - 15:04

Hi,

 

This meeting will be dedicated to developing mobile apps, while drinking beer :)

we will meet at Leo Bloom's pub, in Raul Valenberg 24, Tel Aviv. 16:00.

We'll start with an "idea to dev" process overview, which will take you through the stages required for bringing your idea up to developement stage.

Next, I'll share my experience developing Flex mobile apps - some best practices, tips, links etc.

We are currently working on a new Flex mobile course, and I'll introduce its outline and go into selected chapters.

Non-Tikal developers are more than welcome ! 

 

see you,

 

-ilan 

 

p.s - all rights to "Flex on the beer" title are reserved to liorB :)

ilan 23/10/2011 - 11:06

When writing mobile applications over Flex 4.5.1, your application may be running in the background, even when pressing the back or home buttons on your device. This may become a problem if your application is doing things using timers, making server calls etc.

 

You can listen for Event.DEACTIVATE and Event.Activate events and stop or restart whatever is running in the background if you need to.

You do this over the NativeApplication, like:

NativeApplication.nativeApplication.addEventListener(Event.DEACTIVATE, appExitingHandler, false, 0, true);
NativeApplication.nativeApplication.addEventListener(Event.ACTIVATE, appinvokeHandler, false, 0, true);
NativeApplication.nativeApplication.addEventListener(KeyboardEvent.KEY_DOWN, handleKeys, false, 0, true);

 In the handleKeys function you can check if the keyCode == Keyboard.BACK.

sefi 18/10/2011 - 11:33

When developing mobile applications with Flex 4.5.1 you are always going to have a short time until the application loads.

It is very recommended to add a splash screen to your application to ease the wait and improve the User Experience.

 

This can be done by adding the following to the main application tag:

splashScreenImage="@Embed('assets/images/splash.jpg')"
splashScreenScaleMode="letterbox"

 

the scale mode can get the values: "letterbox", "zoom", "stretch" and "none", each affects the splash image a bit differently.

sefi 18/10/2011 - 11:25

While trying to use Google Analytics Tracking for Adobe Flash it turned out that it does not support Flex 4.5.

ilan 15/09/2011 - 16:09