August 20, 2008

First Application for Adobe® AIR™ ( Caliper )

Filed under: ActionScript, Air, Applications, Flex — Anthony @ 11:51 am

Finding a good Caliper or measuring tool that is both cross-platform and FREE seems to be quite difficult. PixelPerfect is a good starting point but not really as useful as a real caliper. So I decided to create myself a CALIPER application for Adobe® AIR™ Project Page or directly from the Adobe MarketPlace

August 19, 2008

Creating Easy Application Icons

Filed under: ActionScript, Air — Anthony @ 10:14 pm

Just a quick post mostly as a reminder to myself on how to easily create Icons for your Adobe AIR applications.
Once the application has finished Initializing i add a button to the main view. that calls a method called takeSnapShot( e : MouseEvent ); that writes the application out to the desktop as a PNG file. (more...)

August 13, 2008

RedBull Racing goes live

Filed under: Flex — Anthony @ 1:35 pm

Forgot to post about this but redbullracing went live last month and i was in charge of creating the flash homepage. It was a simple but interesting project, most notably the distortion effects that are applied to it. Apparently they have caused a lot of people to think their monitors were broken! I blogged about some of these effects here I also made a little countdown timer that lets you know how much time is left until the next race. Which was kind of neat as it had to be localized to the users current location.

August 5, 2008

Flash Player Malware

Filed under: Flex — Anthony @ 9:17 am

They have just posted a security alert over at Adobe Product Security Incident Response Team Website regarding false links on social networking sites that tell you to download un-official versions of the flash player that have malware installed on them..

So be careful

July 31, 2008

Password Strength Indicator in ActionScript 3

Filed under: Flex — Anthony @ 2:33 am

I needed to build a simple Password Strength indicator much like the ones you find on google registration pages. Using some simple RegExp ( Regualar Expressions ) it wasn't that hard.
Below is a simple example that uses the class to display the security level as well as updating a HBox to show a visual indication of the quality of your password.
The crieteria for the regular expressions are to check Capital letters, standard letters, numbers and none word characters to build up the quality level Right click to view source

(more...)

July 29, 2008

Free Flex Video Training.

Filed under: Flex — Anthony @ 11:02 am

The guys over at adobe have put together some good free video's on getting started in Flex, Currently 3 whole days worth of stuff!

http://www.adobe.com/devnet/flex/videotraining/

July 20, 2008

Sound Experiments and distortion effects

Filed under: Flex — Anthony @ 4:32 pm

Ok so I was given the challenge of creating a TV style distortion effect for a project im working on. The obvious solution for this was to use a sound wave and create a distortion effect based on the SoundMixer.computeSpectrum( ); method in combination with a DisplacementMapFilter to build a distortion effect for any Sprite in an Application or indeed the application itself. (more...)

June 24, 2008

Application Version Control in AS3

Filed under: ActionScript, Bug Fixes, Flex, Japanese — Anthony @ 2:23 am

I thought that I would just write a quick note on how I know which version of an application I am looking at when it has been published to the web. It's all well and good saying its revision 87 from svn but how do you know? Well a simple way is to add it to the Flashplayers custom context menu. Right click to see the custom menu and to view the source

(more...)

Custom Color Picker Source

Filed under: ActionScript, Components, Flex — Anthony @ 12:56 am

Some time ago now I decided as a self improvement mechanism to re-write one of the Flex components from scratch so that I could get my head around the Flex Component Framework. So I set my eyes on the ColorPicker Brave or stupid you decide as this was going to be one of my first components ever, I should have probably started somewhere a bit smaller.. But hey.. It works and I learnt a hell of a lot. and now it's time to share. (more...)

June 19, 2008

*.CSS files are Whitespaces Sensitive

Filed under: Bug Fixes — Anthony @ 2:28 pm

Just a quick note to say that if your stylesheets don't seem to be applied correctly
Styles in a .css file are white space sensitive so if you place text-align: left it works but if you place text-align : left it breaks the css as it thinks that the tags name is text-align : ( inclusive of the final space between the last letter and the : ) !!