Pixel Bender Logo Doppelgänger

July 21st, 2010 by Adrian Parr

Pixel Bender and Miro Video Convertor Logos

I recently heard about Miro Video Convertor (a super simple way to convert almost any video to MP4, WebM (vp8), Ogg Theora, or for Android, iPhone, and more) and went to download it this morning, at which point I couldn’t help but notice the similarities between its logo and the Adobe Pixel Bender logo. Uncanny huh?

Posted in Pixel Bender | No Comments »

Video: Michael Plank’s FDT4 Presentation at Flash Camp Manchester

July 12th, 2010 by Adrian Parr

Michael Plank's FDT4 Presentation at Flash Camp Manchester

Last Thursday I went to Flash Camp Manchester and recorded Michael Plank’s FDT4 presentation.

He does some speed coding and then demonstrates all the shortcuts used.

I have used the pre-release version of Adobe’s Strobe Media Playback to play the video.

Watch it here! (Duration 43 minutes)

Note: It’s progressive download, not streamed.

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

Flash Camp Manchester - Tomorrow (8th July 2010)

July 7th, 2010 by Adrian Parr

Flash Camp Manchester

Flash Camp Manchester is tomorrow!

It is a FREE event, but you need to register online before you go.

Here is the schedule …

12:00 | Registration opens

13:00 | KEYNOTE - Adobe Systems

13:45 | Break

14:00 | INTRODUCING THE OPEN SOURCE MEDIA FRAMEWORK, Edwin van Rijkom (Adobe Systems OSMF Team)

14:45 | Break

15:00 | DEVELOPING WITH YOUR INNER DESIGNER, Mike Jones (Adobe Systems)

15:45 | Break

16:00 | SET YOUR CODE ON FIRE, Michael Plank (PowerFlasher Solutions)

16:45 | Break

17:00 | THE CURRENT STATE OF MOBILE UX, Anthony & Jerome Ribot (Ribot)

17:45 | Break

18:00 | MOBILE FLASH & AIR 2 FOR ANDROID, Mark Doherty (Adobe Systems)

18:45 | Break

19:00 | SPACE INVADING, Seb Lee-Delisle (Plug-in Media)

19:45 | PRIZE DRAW

20:00 | EVENT MOVES TO PUB!

See you there!

Visit the website for more details.

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

Setting the Tab Order of TLFTextFields

July 7th, 2010 by Adrian Parr

I have just spent ages trying to set the tabIndex order of a bunch of TLFTextFields in Flash CS5. With the old Classic TextFields you would have done something along the lines of …

holder_mc.tf1.tabIndex = 1;
holder_mc.tf2.tabIndex = 2;
holder_mc.tf3.tabIndex = 3;
holder_mc.tf4.tabIndex = 4;
holder_mc.tf5.tabIndex = 5;

But with the new TLFTextFields this doesn’t work. You can’t just set the tabIndex property of the TLFTextField directly. When you do, it just doesn’t work.

Then I stumbled across this little bit of info in the docs

tabIndex Documentation

So, for my simple example above to work with TLFTextFields instead of Classic TextFields I ended up writing …

InteractiveObject(holder_mc.tlf1.getChildAt(1)).tabIndex = 1;
InteractiveObject(holder_mc.tlf2.getChildAt(1)).tabIndex = 2;
InteractiveObject(holder_mc.tlf3.getChildAt(1)).tabIndex = 3;
InteractiveObject(holder_mc.tlf4.getChildAt(1)).tabIndex = 4;
InteractiveObject(holder_mc.tlf5.getChildAt(1)).tabIndex = 5;

I hope this helps and that you get it to work quicker than I did!

NOTE 1: I’ve noticed that when the user tabs to a Classic TextField the text is selected, but when you tab to a TLFTextField the caret is positioned at the beginning and no text is automatically selected.

NOTE 2: I’ve also noticed that the selection colour for a Classic TextField is black, but the selection colour for a TLFTextField is light blue. This can look a bit strange when you have a mixture textfields on screen near each other.

Posted in ActionScript 3.0, Sample Code | No Comments »