|
|
I can't tell you anything about migrating your third-party components. I don't use the ones you've mentioned.
I can tell you, however, that you won't be able to simply load your existing project up into FB4 beta 2, change the SDK to 4.0, and expect it to recompile. A huge number of things have changed in Flex 4, often incompatibly.
Here are the ones I've run into so far:
You now have two parallel component libraries, Spark and Halo. (Technically, it's Spark and MX, since "Halo" is the name of a skin, not the actual component library, but it seems more common to see the old Flex 3 stuff called Halo.)
They do interoperate to some extent. You're allowed to use both in a single app, so you can try to migrate piece by piece to Spark. If you do that, though, you may run into one of the areas where Spark and Halo don't [yet?] interoperate, so you end up having to move that whole set of functionality to Spark. One big area of interop they added in beta 2 is allowing Spark components to be direct children of Halo navigation controls like ViewStack. There are also natural divisions in an application where it's possible to have one side using Spark, the other Halo, with no worry about trouble because they don't interoperate at a GUI level. Dialog boxes are like that, for instance. Bottom line, this is getting better, but being a beta, you can still get bit.
The reason they did all this is to support this new skinning stuff you've been hearing about: Flash Catalyst, FXG, and all that. If you use the stock Halo skin, I don't see that Spark matters to you, other than the fact that it's The Future.
(Aside: What's the Markdown syntax to get the Wizard-of-Oz boomy echo effect?)
Flex product manager Matt Chotin has a valuable article, What's new in Flex 4 beta (updated for beta 2). In it, he wrote that that they do not plan on moving all Halo components to Spark, and that what we're seeing in beta 2 is more or less all they're going to do. My interpretation is that the plan post beta 2 focuses on fixing remaining interop bugs, rather than writing new Spark components to replace exiting Halo ones.
I assume this means some Halo components won't ever be skinnable through Flash Catalyst and FXG. You'll have to use the old Flex 3 skinning method for those, if you use them. Many Halo components that are slated to not have Spark replacements have no visual appearance of their own, like Accordion, so you don't need to be able to skin them anyway.
Speaking of skins, there are several old Halo skins that aren't supported in SDK 4. The Flex 3 default is still supported, plus maybe one other. The more colorful ones? Gone. Doubtless you can recreate them atop Spark, but it's not available out of the box.
Many things have been renamed, and some new Spark components with similar functionality to those in Halo have different names where the components aren't direct replacements. For instance, to move entirely to Spark, you'll have to change your VBoxes to VGroups. There are lots of annoying little differences like that.
Because of the whole dual GUI library thing, Adobe found themselves with a bunch of MXML tags like <Script> and <Style> that aren't actually part of Halo, which work just as well for Spark. Rather than have a duplicate set of tags, they moved these to a new XML namespace. This is a problem for those doing piecewise migration of existing Halo-based apps, because it means you're still using the mx alias for Halo, so these tags that are common to both libraries all have to be renamed. The new XML namespace default for these tags is fx, so every <mx:Script> has to be renamed to <fx:Script>, and so on. The IDE doesn't do this for you on importing the project. You just find them one by one as you try to get your imported project to build.
If you're planning to move entirely to Spark, you can avoid some pain here. Instead of accepting the fx default namespace alias on the non-Halo tags, you can let it continue to use mx, since you won't need that for Halo, and Spark uses s as its default.
Your first task after installing the Flash Builder 4 beta should be to generate a fresh new project so you can study it and copy-paste things like these namespace declarations from it.
Another fallout of the whole Halo vs. Spark and namespace mess is that your CSS might need tweaking. Flex has a non-standard extension to CSS for this, which looks like this:
@namespace mx "library://ns.adobe.com/flex/halo";
mx|Application {
....
The states mechanism is entirely different. This Flex 3 code:
<mx:State name="alternate">
<mx:SetProperty target="{myField}" name="editable" value="false"/>
</mx:State>
....
<mx:Form ...>
<mx:TextInput id="myField"/>
....
</mx:Form>
becomes this in Flex 4:
<mx:State name="alternate"/>
....
<mx:Form ...>
<mx:TextInput id="myField" editable.alternate="false"/>
....
</mx:Form>
The new way makes somewhat more sense to me, since it puts all the individual component states in the component tag itself, instead of way up at the top of the MXML file in a verbose <mx:State> block, but porting to the new mechanism is a bit of a grind. The conversion isn't automated by the IDE, although it really could be.
There are some tags no longer allowed as direct children of the <Application> tag. These fall into several categories: validators, effects, etc. You now have to pack these up into a new <fx:Declarations> tag, like so:
<fx:Declarations>
<mx:Dissolve id="myTransition" duration="100" target="{this}"/>
</fx:Declarations>
In FB4 beta 2, they added a project option that lets you continue using the Flex 3.4 SDK alone, with no Spark at all, for easier migration. That's good for initial tests, but at some point you want to move forward, at which point you have to contend with all the above.
The new compiler doesn't seem all that much faster to me, either. I haven't benchmarked it, just going on feel, which is what really matters to me, since it still makes me feel like pounding my head on my desk. :) It certainly isn't using the other 7 cores in my development box. Grrr.
(Another useful article is Joan Lafferty's Differences between Flex 3 and Flex 4 beta (updated for beta 2). It covers much of the above, plus other things I haven't run into yet, so I haven't included it above.)
|