Home » Archive

Articles in the Flash AS 3 Category

AIR, AIR for Android, Adobe, Flash AS 3, Flex 4 »

[11 May 2011 | 5 Comments | ]
Open Source Media Framework (OSMF) on Android with Adobe Flex 4.5

Open Source Media Framework (OSMF) is an interesting product released from Adobe that allows content providers and developers to easly create rich media players in ActionScript 3.0, also providing a lot of tools to create web-based video monetization applications.

AIR, AIR for Android, Adobe, Flash AS 3 »

[24 Nov 2010 | 4 Comments | ]
“Fabio Biondi Lab” application available for FREE on Android Market

“Fabio Biondi Lab” is a free application for Android smartphones and tablets to read my blog articles, watch my prototype videos and provide info about my services.

AIR, AIR for Android, Adobe, Flash AS 3, _Featured »

[23 Nov 2010 | 13 Comments | ]
P2P - Share real-time data across Android and desktop AIR applications to build multiuser games and collaborative RIA

Using native IP-only multicast feature available with Adobe AIR 2.0 and Flash Player 10.1 you can easly establish a connection and share real-time data between two or more clients over the same network (LAN).
The immediate advantage you can get from this tecnique is that you won’t need to use a dedicated server (like Flash Media Server, AFCS, and so on) to share real-time data across multiple clients.
Another cool stuff is that you can use P2P to share data between mobile Air for Android apps and desktop AIR applications, and …

AIR, AIR for Android, Adobe, Flash AS 3 »

[21 Oct 2010 | 4 Comments | ]
Geolocation (GPS) and Google Map using Air for Android

Air for Android and AIR 2.0 supports the location sensor, so it’s now possible using the Geolocation class to obtain the current geographical location of a mobile device (latitudine and longitude).
When I have tested this new feature on my device (Google Nexus One), the first thought in my mind has been how to display this location using Google Map and update the map every time my position changes (for example using my car).

So I have created a new Air for Android file in Flash CS5 (but it should works in …

AIR, AIR for Android, Flash AS 3, Flex 4, IPhone, _Favourites »

[18 Oct 2010 | One Comment | ]
Is Adobe Flash really multi-platform? (video)

…..finally yes!!
I have published on my YouTube Channel a new video where i show how the same ActionScript 3.0 code (a photogallery IPhone style) can works on multiple devices: Apple, Android, desktop and web.

AIR for Android, Flash AS 3, IPhone »

[11 Oct 2010 | 12 Comments | ]
Flash and Box2d on Apple and Android devices - comparative

I have done a simple comparative launching the same AIR application on an Android phone (Google Nexus One) and the last an IPod Touch (iOS4) without any mobile optimization.
So I have simply compiled and published a Box2d sample on both devices at the same resolution.
Android phone seems to work really fast and can move tens of boxes, while the IPod slows after 8-9 objects.

AIR, AIR for Android, Adobe, Flash AS 3, _Favourites »

[29 Sep 2010 | 6 Comments | ]
Air for Android: UI performance test (video)

This month I spent a lot of time to test the new interesting features of Air for Android but I didn’t really pay attention about performance.
So, last weeks, when one of my friends finally got the Apple certificate and he told me that IPhone/Air performance really sucks I decided to spent a day to understand how really Adobe Air for Android is fast.

AIR, AIR for Android, Adobe, Flash AS 3 »

[27 Aug 2010 | 2 Comments | ]
Air for Android and Flash CS5: remote xml requests and the uses-permission tag

In my last Air for Android article I have explained how to load a local XML file in a Flash CS5 Android application.
Anyway, if you need to load a REMOTE xml file, you can use the same AS3 code, making a little change to your xml-descriptor file, otherwise you won’t be able to load a remote file.

AIR, AIR for Android, Adobe, Flash AS 3 »

[25 Aug 2010 | 5 Comments | ]
Air for Android (Flash Cs5): read XML files and use standard flash components

When you’re working with Air for Android, you could often need to load application settings (or something else) from a local XML file.

AIR, AIR for Android, Adobe, Flash AS 3 »

[25 Aug 2010 | No Comment | ]
Air for Android and Flash CS5: animate movieclips in according with the phone orientation

Another new feature in AIR for Android is the way to manage the orientation event.
To accomplish this task you can now use the orientationChange event that is dispatched every time the user changes its phone orientation.
However, in the current beta release I got some problems to use this event because I wasn’t able to get the right stage size.
So I have decided to use the standard Event.RESIZE event and the new deviceOrientation property.
In other words, when the user changes the phone orientation, the Event.RESIZE will be dispatched and inside the …