Jun 24
Ottawa Flex Camp (Thursday, August 21st, 2008)
| 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 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 |
Jun 17
AIR 1.1 Released Today
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.Â
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 commentsJun 13
Some Flash Fun on Friday!
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 commentsJun 12
FunFX - An Open-source tool for creating functional testcases for Flex applications
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 commentsJun 11
New XML based file format coming with Flash CS4!
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 commentsJun 5
New Protocol (RTMFP) in Flash Player 10
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 commentsJun 4
How to Promote Your Flex & AIR Applications
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 commentsJun 3
Indent issue with Hierarchical Data and DataGrid ItemRenderer
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 commentsMay 28
Video Tutorial - Creating content for Flash Player 10 (Astro)
Lee Brimelow has released a video tutorial that shows you how to create content for the Flash Player 10 beta which was released last week. As of right now there is no tools available to author Flash 10 content but you can download the latest command-line MXMLC compiler to get started creating content. In this tutorial he also shows you how to do that as well as some of the new features.
May 27
Using the Flex Builder DB wizard with J2EE and WTP
Recently I tried to set up a Java backend with Tomcat 6.0 to use with Flex. I have to say that I ran into a few problems that caused me a bit of a headache, so I thought I would share my solution to hopefully help anyone else who might have this problem.
If you are looking to create a Java backend with the Database wizard that comes with Flex Builder you will need to install the Web Tool Platform (WTP) plugin for Eclipse. WTP contains various tools for developing Web and J2EE applications.
The problem I ran into was locating this plugin inside the “Find updates” feature of FB. Unfortunetly the WTP plugin is called something else so I was searching around for the words WTP only to realize that it’s not present in the list of addons and features that comes up. What your actually looking for is the “Web and J2EE Development” features which includes the Web Standard Tools (WST) and the Java Standard Tools (JST) which from my understanding are two of the main components of the WTP.
Here are the steps to install WTP in Flex Builder
1. Select Help > Software Updates > Find and Install > Search for new features to install
2. Check the Europa and Eclipse Project depots
3. Under Europa Discovery Site select the “Web and J2EE Development”
4. Click the Select required button to include all the dependent features for the install
Hope this helps someone!
No comments