[flexcoders] Re: Interface Over Public/Dispatch

2010-08-05 Thread Stephen
Can applications still listen for events triggered by their modules using this method, I am having trouble setting up a listner? - Stephen --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: Interfaces create a level of abstraction and define a contract. If properly written

[flexcoders] Educate me on how to build an application

2010-08-05 Thread Wally Kolcz
I've been developing Flex apps for a while now and never had a problem with Flex 3, then when Flex 4 came out I started running into all kinds of problems with developing an application with modules. Whereas it's well documented pertaining problems with loading Modules in Flex 4 regarding

[flexcoders] Re: Rounding the corners of a scroller

2010-08-05 Thread Brand
Thanks a lot. The site looks amazing! I haven't worked with masks before (researching now), but just thinking about playing with the z order of the border gives me all kinds of great ideas. Thanks again! --- In flexcoders@yahoogroups.com, Jeff Gomes jgo...@... wrote: Brand- I started

Re: [flexcoders] Why does Flex 4 hate modules?

2010-08-05 Thread Wally Kolcz
Thanks for your help Alex, so while parsing though the link report xml I SHOULD NOT see any references to the modules? That will help. Also, as far as the size issue which was suggest to me before, I started to add minHeight and minWidth to all the pieces and it didnt seem to help at all. On

Re: [flexcoders] Why does Flex 4 hate modules?

2010-08-05 Thread Wally Kolcz
After looking at the report I see things like (which makes no sense to me): script name=_AdminPortal_Styles.as mod=1281021647964 size=16395 optimizedsize=15325 def id=_AdminPortal_Styles / pre id=Object / dep id=mx.skins.spark:TabSkin / dep id=mx.core:UIComponent / dep

Re: [flexcoders] Why does Flex 4 hate modules?

2010-08-05 Thread Alex Harui
Because I see _AdminPortal_FlexInit and _AdminPortal_mx_core_FlexModuleFactory, I'm guessing this is the link-report for the _AdminPortal module, not the main app. If you just add -link-report to the compiler options, both the main app and module will output the link-report to the same file, and

Re: [flexcoders] Educate me on how to build an application

2010-08-05 Thread Alex Harui
The recommended practice has not changed. Use modules if possible, sub-apps via the Marshall Plan if you are going to have different versions of the SDK in the various pieces. Hopefully we will track down your issue soon. Be aware that the extra sensitivity is a requirement of us solving a

Re: [flexcoders] Why does Flex 4 hate modules?

2010-08-05 Thread dorkie dork from dorktown
Is it possibly some of your components are still using references to StyleManager (mx) and have not been updated to styleManager (spark). http://www.jonathanrowny.com/journal/migrating-flex-4-stylemanager 2010/8/5 Alex Harui aha...@adobe.com Because I see _AdminPortal_FlexInit and

[flexcoders] Problem with adobe call

2010-08-05 Thread Dan Pride
I am taking over an app that has the following wrong call import com.adobe.serialization.json.JSON; Any suggestions on the proper one? All I get is viewsource in the suggestion list Thanks Dan Pride danielpr...@yahoo.com

Re: [flexcoders] Problem with adobe call

2010-08-05 Thread Oleg Sivokon
That's not a call, that's an import. You are missing sources or SWC in your project.