15 Things to look in to during 2008

January 31st, 2008 by Adrian Parr

Here is a list of things I want to look in to during 2008. If there is anything you think I should check out but have missed off this list then let me know.

  1. Papervision3D
  2. Tweener
  3. TweenLite
  4. Go (Go ActionScript Animation Platform)
  5. KitchenSync
  6. Xray (The AdminTool)
  7. AS3 Bulk Loader Library
  8. SWX: SWF Data Format
  9. Adobe Flex 2 & 3
  10. Adobe AIR
  11. Eclipse and FDT 3.0
  12. Cairngorm
  13. PureMVC
  14. ActionScript 3.0
  15. SWFAddress

Not necessarily in that order. Wish me luck!

Posted in AIR, ActionScript 3.0, Adobe, Flash, Flex, Papervision 3D | 2 Comments »

Location of Flash Shared Object (SOL) files

January 30th, 2008 by Adrian Parr

If you are anything like me, then when you need to find your Flash Shared Object (SOL) files, you can never find them on your computer. Well, just as a reminder, they can be found here on a PC …

C:\Documents and Settings\<username>\Application Data\Macromedia\
Flash Player\#SharedObjects\<random string>\<domain>\
<path from webserver>\<filename>.sol

and on a Mac they can be found here …

Macintosh HD:Users:<username>:Library:Preferences:Macromedia:
Flash Player:#SharedObjects:<random string>:<domain>:
<path from webserver>\<filename>.sol

I also recently noticed that the path to data saved from Adobe AIR apps is stored here on a PC …

C:\Documents and Settings\<username>\Application Data\
<AIR App Reverse Domain Name>\Local Store\#SharedObjects\
<flashname>.swf\<filename>.sol

and on a Mac they can be found here …

Macintosh HD:Users:<username>:Library:Preferences:
<AIR App Reverse Domain Name>:Local Store:#SharedObjects:
<flashname>.swf\<filename>.sol

Hope this is of some help, and will save you a bit of time trying to find them.

There are also a few useful tools out there that will allow you to check (and modify) the contents of SOL files. Try ASV SOL Viewer and Editor, SolVE: Local Shared Object Viewer/Editor or SOLReader.

Posted in AIR, Flash | No Comments »

Simple intro to addEventListener in AS3.0

January 29th, 2008 by Adrian Parr

Here is some example code for using and enterFrame loop in ActionScript 3.0

this.addEventListener("enterFrame",fLoop);

function fLoop(event:Event):void {
    trace("event.type: "+event.type);
    trace("event.bubbles: "+event.bubbles);
    trace("event.cancelable: "+event.cancelable);
    trace("event.eventPhase: "+event.eventPhase);
    trace("-");
}

In the Output window you should see the following …

event.type: enterFrame
event.bubbles: false
event.cancelable: false
event.eventPhase: 2
-

Posted in ActionScript 3.0, Sample Code | No Comments »

O’Reilly’s InsideRIA launched

January 29th, 2008 by Adrian Parr

InsideRIA

Last week O’Reilly launched the InsideRIA website, a portal/blog for Rich Internet Application developers around the world. It looks like it is going to be a great resource and it currently has articles written by respected people such as Colin Moock, Rich TretolaTony Hillerson, David Tucker, Tony MacDonellAndrew TriceAndre Charland, Jonathan Snook and Raymond Camden.

The also have an InsideRIA Atom feed (which I have added to my Google homepage).

Posted in AIR, ActionScript 3.0, Adobe, Flash, Flex | No Comments »

QR Code

January 28th, 2008 by Adrian Parr

QR Code

I’ve just been having a play around with QR Codes. The code you see above is a code for the URL of this website (www.adrianparr.com). They are basically two-dimentional barcodes. Try making your own here. Kaywa have a free QR Code Reader that works on many mobile phones. I’ve just tried it on my Nokia N73 and worked like a dream.

UPDATE 15/07/2009: I have just purchased and installed the QuickMark iPhone application and it worked really well. You can buy it from the iTunes Store for £1.19.

Posted in Mobile | No Comments »

London Flash Platform User Group (LFPUG) meeting

January 28th, 2008 by Adrian Parr

London Flash Platform User Group

This Thursday (31st January) there is a London Flash Platform User Group meeting. The speakers lined up are Paddy Keane talking about PureMVC and Rob Bateman talking about 3D in Flash (Away3D, Papervision3D and Sandy). It should be very interesting.

As always, a big ‘thank you’ to Tink for organising the event.

Time: 19:00 - 23:00 (doors open at 18:30)
Venue: CosmoBar, 50-54 Clerkenwell Road, EC1M 5PS (click for map)

Posted in Conferences and Events, Flash, Papervision 3D | No Comments »

Adobe on AIR Bus Tour is heading to Europe

January 28th, 2008 by Adrian Parr

on AIR

The Adobe on AIR Bus Tour is coming to Europe (minus the bus) this summer. At the time of writing the details (locations and dates) are still being finalised. Keep up-to-date by checking the Bus Tour Weblog and the on AIR Weblog. You can also follow the tour via video, Twitter and Flickr.

Posted in AIR, Adobe, Conferences and Events | No Comments »

Colin Moock’s ActionScript 3.0: From The Ground Up Tour

January 28th, 2008 by Adrian Parr

Colin Moock

Hooray! I managed to get a ticket to the Colin Moock ActionScript 3.0 training day being ran by Adobe. I’ll be attending the London event on Monday 3rd March 2008. The event is being held at Vinopolis, the famous wine tasting venue (map here). I hope we get some free wine to help us get our heads around the nitty-gritty of AS3. See you there, if you are going as well.

Posted in ActionScript 3.0, Adobe, Conferences and Events, Flash | No Comments »

Flex London User Group (FLUG) - January Meetup

January 28th, 2008 by Adrian Parr

Flex London User Group logo

On Thursday 24th January I went along to the Flex London User Group meeting at Shoreditch Town Hall. This month’s meeting coincided with an official Adobe event, and therefore there was a huge turnout. Normally we get around 30 people turning up, this month there was approx. 250 people (requiring a change of venue). The speakers were Serge Jespers and James Ward.

Here is a summary of what they covered …

Serge Jespers

James Ward

  • Flex 3 Charting Components - ILOG Elixir
  • Flex 3 SDK is Open Source (stlab.adobe.com)
  • Open Source BlazeDS
    • Remoting and HTTP-based messaging technology
    • Opened up the AMF format (Action Message Format - AMF3)
    • Demo of BlazeBench
      • Comparison between AMF, Dojo, SOAP, JSON (JavaScript Object Notation)
      • AMF is quicker
      • Parsing of data is very, very quick
      • AMF has compression built in to the protocol (no need to use GZip)
    • BlazeDS comes from Adobe LiveCycle
      • LiveCcycle Data Services ES uses RTMP to stream data to the client (this is not available in BlazeDS).
      • Check out Flex MXML Producer and Consumer
  • Flex-AJAX Bridge

Posted in Adobe, Conferences and Events, Flex, LFPUG | No Comments »

Flash On The Beach ‘07 - Visited Seminars

January 28th, 2008 by Adrian Parr

Flash On The Beach logo

Back in November 2007 I went down to Brighton for the Flash On The Beach conference. It was a fantastic event (as it was in 2006) and John Davey did a great job of organising the event and getting a wish list of speakers from around the world. Here is a list of the speakers that I managed to catch across the three auditoriums.

Monday 5th November

Tuesday 6th November

Wednesday 7th November

All of these presenters are doing some amazing work and I came away from Brighton really inspired and eager to learn more. Here’s looking forward to Flash On The Beach 2008!

Posted in AIR, Adobe, Conferences and Events, Flash, FlashLite, Flex, Papervision 3D | No Comments »

Test post using Deepest Sender

January 24th, 2008 by Adrian Parr

This is a test blog post using Deepest Sender (Firefox extension).

Posted in WordPress | No Comments »

Adobe Developer Connection

January 23rd, 2008 by Adrian Parr

Adobe Developer Connection logo

Here is a link to the Adobe Developer Connection website. It always worth checking here regularly to see what new information there is. There is a lot of content on there. Personally, I quite like the new(-ish) design.

Posted in AIR, Adobe, Flash, Flex | No Comments »

Hello World

January 23rd, 2008 by Adrian Parr

This is my first test post to my new WordPress blog. Hooray!!

Posted in WordPress | No Comments »