[env]Flex1.5 w/JBoss on Windows

My flex application is a web catalog.
Imagine catalog site built on HTML(JSP).
There should be bunch of image files on web server, and HTML or JSP
request them according to user requests( ie:click a link ).
I need to actualize it with Flex.
Because the web catalog may have several 'catalog books' on the
application, so i thought i should utilize nested ViewStack components
and those will be created dynamically using any backend
services(ie:RemoteObject).

<mx:ViewStack id="catalog">
  <mx:ViewStack id="book1" >
    <local:CatalogPage >
      ...
    </local:CatalogPage>
    <local:CatalogPage >
      ...
    </local:CatalogPage>
    ......
  </mx:ViewStack>

  <mx:ViewStack id="book2" >
    <local:CatalogPage >
      ...
    </local:CatalogPage>
    <local:CatalogPage >
      ...
    </local:CatalogPage>
    ......
  </mx:ViewStack>

  ......

</mx:ViewStack>

Of course, main flex application shouldn't embed all of images into it
at initial loading time, because there are thousand of image files.
I want to embed minimum assets into main application at initial time,
and load remained assets as a background process, while user play with
the application.

Does anybody have any experience on development such kind of flex
application?
Or any recommendation or warning are also welcomed.


Thanks,
Keishichi





------------------------ Yahoo! Groups Sponsor --------------------~--> 
Fair play? Video games influencing politics. Click and talk back!
http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM
--------------------------------------------------------------------~-> 

--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to