I have an application that I’m migrating from flex 3 to flex 4.5. In this application, there is some mx Image components that load a simple swf file (image). Spark image doesn’t load swf files, so I was wondering, should I keep the mx Image, or should I change it to SWFLoader? Is there any advantages to using one or the other?
Share
Reading Adobe documentation about Image control:
As it states and recommends, it’s better to use the spark architecture, instead the mx one (whenever it’s possible. It’s not a good idead to mix spark and mx components, but Adobe has not migrated every single component to spark yet). I’ll go for
<s:SWFLoader />(which is already a new nomenclature for<mx:SWFLoader />.)