ecreate / fabrication

Automatically exported from code.google.com/p/fabrication
0 stars 0 forks source link

FlexModule contents do not show up in Flex Builder 3.0.2 design view #2

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Create a module component that inherits from FlexModule
2. Add a few visual components
3. Switch to design view

What is the expected output? What do you see instead? I expect to see a
visual representation of the component in design view but instead see
nothing.  When I convert the component back to a mx:Module, then I can see
a visual representation of the component as expected.

What version of the product are you using? On what operating system? Flex
Builder 3.0.2 plugin with Eclipse 3.4

Please provide any additional information below.

I don't believe this is a Fabrication issue.  I see nothing in the source
code that should cause any problems.  I do believe it is a Flex Builder
problem but wanted to see if anyone has the same problem and more
importantly, how did they fix it? :-)  Thanks.

Jim

Original issue reported on code.google.com by boone....@gmail.com on 29 Dec 2008 at 3:44

GoogleCodeExporter commented 9 years ago
This looks like a bug with Flex Builders library dependency checking. It 
performs 
checking before the entire list of libraries is loaded in. One simple fix is to 
name 
your swcs in order of their dependencies.

So instead of puremvc.swc and puremvc-dependencies.swc. Use 0_puremvc.swc and 
1_puremvc_dependencies or any other alphabetic ordering.

That fixes the issue, and you can use design mode of FlexBuilder.

Original comment by darshan....@gmail.com on 8 Jan 2009 at 2:44