I have build a little Twitter AS3 library which handles Twitter OAuth authentication and let’s you update your Twitter status. The lib basically uses the OAuth AS3 lib and should be a good example how to use the actual OAuth lib.
This is still basic functionality but since it’s open source someone may fork and extend [...]
When you develop AIR applications you see repeating tasks which you have in all projects. You need to take care about the update process and online status. I am developing all my applications with the Swiz framework so I tried to come up with some re-usable code which fits nicely into Swiz.
Source and Download
Get source [...]
FGATracker is an AS3 library which wraps gaforflash for Google Analytics and can be easily used in combination with the Swiz framework.
Source and Download
Source on GitHub
Download SWC
API docs
Usage
Add FGATracker to your BeanLoader:
<ga:FGATracker id="fgaTracker"
account="GOOGLE ANALYTICS ID" xmlns:ga="com.soenkerohde.ga.*" />
Dispatch TrackPageEvent or TrackActionEvent:
From a view class (set bubbles=true):
dispatchEvent( new TrackPageEvent( TrackPageEvent.PAGE, "/pagename", true ) );
dispatchEvent( [...]
FlairLoc is an Adobe® AIR™ application to localize Adobe® Flex® applications.
Today I am happy to announce that the public beta of FlairLoc is available.
Features
Change resources in a user interface with search capability
Extract resource keys from source code and synchronizes it with all locale sets
Automatic translation into 42 languages with the Google Translate API
Add new automatic [...]
Today YouTube finally released an ActionScript 3 API. Maybe this was accelerated by the move of Vimeo because they came up with an AS3 API last week.
I have build a little AIR client as an example application. Check my YouTubeAS3 project on github for the source code. The example of course uses the Swiz framework.
The [...]
Lately I have started to use the presentation model approach and I like it a lot. Swiz fellow Ben Clinkinbeard has a wonderful example posted on his blog.
However I disliked that I have to dispatch custom events to make getters bindable. This would normally look like this in an interface:
[Bindable(event="customDataChanged")]
function get someData():Array;
The problem with it [...]
Recent Comments