Archive for June, 2008

Ottawa Flex Camp (Thursday, August 21st, 2008)

June 24th, 2008 | Category: Flex, AIR
The Adobe Flex team invites you to join us at Flex Camp Ottawa, a free one night gathering with food, drinks, and coding covering everything you need to know about Flex 3 and Adobe AIR.   

Agenda
If you’re at the beginner level, we suggest arriving at 4:30 because there will be a “Flex 101″ session for your needs. More advanced developers should come to the event at 5:00 for our Welcome period.
Doors open for Flex Camp at 4:30 PM
4:30 - 5:30 - Flex 101: A beginners’ lesson for those w/ little Flex experience w/ DYLAN DEPASS
5:30 - 6:00 - Welcome: Food, drinks, registration.
6:00 - 6:15 - Flex Camp Introduction w/ MIKE POTTER
6:15 - 6:45 - Presentation by OVERLAY TV
6:45 - 7:00 - Product Demo w/ AXENTRA
7:00 - 7:45 - Presentation by TONY MACDONELL from Teknision
7:45 - 8:00 - BREAK
8:00 - 8:15 - Product Demo w/ TBD
8:15 - 8:45 - Presentation by TBD
8:45 - 9:00 - Product Demo w/ OVERLAY TV
9:00 - 9:30 - Conclusion and Q&A w/ MIKE POTTER

All registrants who come out will receive free Flex training from our friends at totaltraining.com . Hurry, space is limited!

Register for Flex Camp Here

No comments

AIR 1.1 Released Today

June 17th, 2008 | Category: Flex, AIR

With this release, the AIR runtime has gone global:
- The runtime has been translated into ten additional languages: Japanese, French, German, Traditional Chinese, Simplified Chinese, Korean, Spanish, Italian, Russian, and Brazilian Portuguese.
- The AIR APIs and file formats have been updated to enable AIR-based applications to be localized
- International keyboard input is fully supported
- AIR 1.1 is GB18030 certified

Additionally, a new certificate migration feature is available which allows developers to migrate their applications between different digital signing certificates. 

Get your copy of AIR 1.1

In order to use the new functionality there are a few steps that must be followed first. Matt Chotin has written an article outlining these steps.

No comments

Some Flash Fun on Friday!

June 13th, 2008 | Category: Flash

This link was passed around my office today.. I got a good laugh out of it so I thought I would post it.

Beckground: In June of last year, HEMA a Dutch department store, was sold to British investment company Lion Capital. They revised their home page, and obviously have a sense of humor about it (and a great Flash programmer!!) Take a look at  http://producten.hema.nl/. You can’t order anything and it’s in Dutch but just wait a couple of seconds and watch what happens.

No comments

FunFX - An Open-source tool for creating functional testcases for Flex applications

June 12th, 2008 | Category: Flex, Best of Flex

FunFX is an test framework for functional testing of Flex applications. It’s open-source and leverages Ruby for writing testcases. I haven’t given it a try yet but I thought I would blog about it as it looks like a great resource for creating Automated testcases.

The framework is the result of a master thesis at the Norwegian University of Science and Technology.

No comments

New XML based file format coming with Flash CS4!

June 11th, 2008 | Category: Flash

Just found this blog post today from Colin Moock on the new XML based file format (XFL) that will be available with Flash CS4. This is great news and since its XML based and not binary like FLA, I thinking this could make life easier for companies with big projects and lots of developers to manage versioning and merging of source files.

The XFL file is a .zip file which contains an XML file that describes the structure of the document and a folder with the document’s assets. Colin speculates that this separation of structure and assets will in theory allow you to edit the images of an XFL file directly in Photoshop without disturbing the timeline information also contained in that file!

Check out Colin’s Blog post for more info

No comments

New Protocol (RTMFP) in Flash Player 10

June 05th, 2008 | Category: Flex, Flash

Justin Everett-Church recently released some new details about the new RTMFP protocol that can be used with Flash Player 10. RTMFP stands for Real Time Media Flow Protocol and is going to be used to leverage the new peer to peer capabilities of Flash Player 10. The communication between peers is going to be managed by a future Adobe server technology (Flash Media Server 4.0???) which will keep a list of peers that can be connected to. If one peer want to connect to another, the server translates the peer IDs to a network addresses, and also assists in setting up the connection if one or both ends is behind a Network Address Translation (NAT) device. RTMFP is a UDP-based protocol and packets are sent directly from one Flash Player to another!

Some pretty exciting stuff to look forward to! I can think of a couple cool applications that could be built using this technology!

No comments

How to Promote Your Flex & AIR Applications

June 04th, 2008 | Category: Flex, AIR

At the Flex camp in Toronto Last month Mike Potter gave a presentation on How to Promote Your Flex and AIR applications. In the presentation he examines and provides advice on how to promote to Communities, Blogs, at Events and Offical Adobe Programs. This is a great resource if you’ve got a new application that you want the world to know about : )

You can check out the slides from the presentation Here

No comments

Indent issue with Hierarchical Data and DataGrid ItemRenderer

June 03rd, 2008 | Category: Flex

Today I was trying to create a DataGridColumn Item renderer that would set the background color based on the data in the column. Usually this is a simple thing to do, you would just created and ItemRenderer that extends Label and then set the background color to whatever you want.

The problem I ran into was that my data was Hierarchical, and when you create an Item renderer that extends Label for Hierarchical data you lose the “Parent” “Child” indentation for each leaf node. After messing around for a bit I found a solution which I thought I would share.

Inside the ItemRenderer you have access to a item called listData which is of type AdvancedDataGridListData. This object has a property called indent which refers to the actual number of pixels this item should be indented based on its position in the tree. To set the indentation for the text inside the label all you have to do it create a variable which is bound to the paddingLeft property of the Label. Then inside the updateDisplayList method set the variable to the indent property passed in from the AdvancedDataGridListData.

Pretty simple solution. Would love to know if anyone has solved this problem another way!

No comments