[flexcoders] Re: Coercion failed ArrayCollection with Objects inside Object AMFPHP 1.9

2007-03-22 Thread thuijzer
Yes it contains up to 600 items. --- In flexcoders@yahoogroups.com, michael_ramirez44 [EMAIL PROTECTED] wrote: Does your PHP array contain more then one item when your testing? Michael Ramirez --- In flexcoders@yahoogroups.com, thuijzer thuijzer@ wrote: Whoops, I didn't write

[flexcoders] Re: Coercion failed ArrayCollection with Objects inside Object AMFPHP 1.9

2007-03-22 Thread thuijzer
It must be something basic, but I can't find it. I dubbelchecked every class Remote and in Flex. They are all the same. Locations are all the same. Now I checked what is comming from the remote server. Alle Classes are typed correct. But where there should be ArrayCollections, there are Array's,

[flexcoders] Re: Coercion failed ArrayCollection with Objects inside Object AMFPHP 1.9

2007-03-22 Thread thuijzer
Finaly I found a solution for my problem. I created this class in PHP: class ArrayCollection { var $_explicitType; var $source; function ArrayCollection() { $this-_explicitType = flex.messaging.io.ArrayCollection; $this-source = array(); } } When I use

[flexcoders] Re: Coercion failed ArrayCollection with Objects inside Object AMFPHP 1.9

2007-03-21 Thread thuijzer
Kevin, thank you for your response. Unfortunately it doesn't work. It also seems that this META is only used for Array's. So I am not sure it will work in my case. Thomas --- In flexcoders@yahoogroups.com, Kevin [EMAIL PROTECTED] wrote: you may need to use this meta tag to let Flex know what

[flexcoders] Re: Coercion failed ArrayCollection with Objects inside Object AMFPHP 1.9

2007-03-21 Thread thuijzer
@yahoogroups.com, Thomas Huijzer thuijzer@ wrote: Hi All, With AMFPHP 1.9 I am trying to return an Object containing some vars and an ArrayCollection. Inside this ArrayCollection there are other Objects. But I can't get this to work in Flex. For example: Flex

[flexcoders] Re: menubar icon

2007-03-02 Thread thuijzer
Is there a way to do this dynamicly? In my app I don't know what icon's there will be. They are provided by an CMS-system. Thank you!

[flexcoders] Delete Components after RemoveChildAction (Flex2)

2007-01-15 Thread thuijzer
After a RemoveChildAction in a Transition I would like to remove the removed Components from the memory. Can someone tell me how this is done best? I am new to Flex and cannot find anything about this topic. Thank you.