Here are the materials for my session on introducing E4X at 360Flex 08 San Jose. If you aren’t at 360Flex you are REALLY missing out, Tom and John really know how to put on a fun show. Read the rest of this entry »
360 Flex San Jose 08, E4X
May 21, 2008Just got my confirmation to present at 360 Flex this August in San Jose. The sessions will focus on E4X, starting out fairly basic but hopefully moving very quickly to the more interesting advanced things that E4X lets you do in AS3. I normally run with a fairly fluid agenda so we can get conversations going during the session. So bring questions! We will be working through a ton of code samples as well.
Let me know if there are any specific areas of E4X that you find especially tricky (either to get working or even just remember) and I’ll see what I can do.
See you Tuesday Aug 19th @ 10am
Fun with Canvas and DragDrop
April 28, 2008So what is the issue? Here is the sample app:
Flex Builder Shortcuts
April 26, 2008I’ve found that many developers don’t know some of the coolest time saving features available to them. This can be anything like patterns, frameworks, plugins, even databases. This post is focused on the one thing that most Flex developers use everyday, the IDE. I know some of you out there are using Notepad (or more likely TextMate or VI), but this post is for the rest of us that choose to suffer through the slings and arrows of Flex Builder.
One of the great things about Flex Builder being built on the Eclipse Platform is getting most (unfortunately not all) the features Java (and other) developers have been used to for years. This post focuses on the shortcuts I like to use nearly everyday.
ASyncToken and IResponder
March 31, 2008So here is a weird little problem I ran into while using the generated webservice code in Flex 3. Basically if using the ASyncToken returned by the proxy class with an IResponder, the token never triggered any of the IResponder we never got a response. We tried to use the standard code like:
var service:MyWebService = new MyWebService();
var token:ASyncToken = service.myTestFunction();
token.addResponder(this);
Posted by mbir