views:

47

answers:

1

I'm getting started on a new project at I'm trying to get an Parsley example to work. Here is the demo url: http://files.152.org/flex_examples/parsley/ View source is enabled

I have parsley registered in the app and can get the albums in the left column loaded. The part I'm stuck at is trying to get a message to PictureTile.as so images will load in the TileList.

Can anyone that has Parsley experience lend a hand?

A: 

i see you've working with http://code.google.com/p/parsley/

but I didn't get what exactly you want to do with it. Explain please.

Eugene
When the application loads WindowLayout.creationCompleteHandler loads the list of albums and WindowLayout.loadAlbumsHandler dispatches an event that is picked up with Parsley by AlbumList.populateList. When an album is selected AlbumList.albumSelected dispatches an event that WindowLayout.loadAlbum processes. When that is finished WindowLayout.loadAlbumHandler dispatches an event that PictureTile.populateTileList should process but it never receives the event.I'm stuck at the part where PictureTIle.populateTileList should receive the event.
metric152
can you show your code please, e.g. pastebin.com
Eugene
I enabled the app example with view sourcehttp://files.152.org/flex_examples/parsley/
metric152
hey, why you not using skining, but using instead extending AlbumList with AlbumListView in mxml format, you should use Skins instead. like in Flex 4 with SkinPart Metatags, because your child objectcomponents are not connected there. I'm talking about albumsComboBox object.
Eugene
it was a code behind technique i picked up from looking at some other code that allowed me to remove logic from the view. i haven't researched using spark in flex4 just yet. the project is built for flex 3.5.
metric152
so, u used others code with removed logic, can I see that source?
Eugene
i formatted my example with a code behind technique. there is no other code for the project. everything i used is available from view source on the example.
metric152
okay, let me check it more detailed)
Eugene