Jump to content
Search Community

Flash Builder 4 support?

expeditioncirkus test
Moderator Tag

Recommended Posts

Hi,

 

I'm currently working on a project in Flash Builder 4 for which we recently purchased a TransformManager license.

Is there any way to get TransformManager working in FB4? If not, when do you think you can release a version which supports it?

 

The obvious problem, as far as I can tell, is the replacement of child functions with element functions in FB4.

 

Best regards,

ExpeditionCirkus (Fredrik at Toxic Interactive, Sweden)

Link to comment
Share on other sites

Found the solution for making transformmanager work in Flash Builder 4:

 

In your mxml-code you use the TM-component as usual:



 

Then you simply package the displayobject in a UIComponent like this (i'm including it in my loadComplete handler):

 

private function onLoadedSWF (evt:Event):void {
var tLoadedContent:DisplayObject = evt.target.content as DisplayObject;
var temp_UIComponent:UIComponent = new UIComponent();
temp_UIComponent.addChild(tLoadedContent);
pp_transformManager.addElement (temp_UIComponent);
}

 

That's it! This way everything works, including TM's layer handling (bring to front, etc..)

 

/Fredrik

Link to comment
Share on other sites

Thanks so much for posting the solution you found. Frankly, I haven't dug into FB4 yet (recently tried another beta product from Adobe and was shocked by how many horrible bugs were present, so I'd rather wait until the product is fully formed before making any alterations to my stuff to accommodate it). Great to hear it was so easy to work around in your case.

 

Cheers!

Link to comment
Share on other sites

Using TransformManager will not work if you are using a Spark container as a parent. You have to use an MX container such as the canvas, which FlexTransformManager extends btw, in order to make it work.

 

Since Flash Builder 4 allows the usage of MX-containers for backwards compatibility, it will work. But TransformManager does not support transforming direct children to any of the new spark containers.

 

I hope support for this will be added soon, since Spark offers several advantages over the old MX components.

Link to comment
Share on other sites

  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...