Another viewstack question... bug?

2005-02-13 Thread temporal_illusion
I have some code like this: mx:LinkBar dataProvider=screens / mx:ViewStack id=screens width=750 height=480 changeEffect=Fade mx:Repeater id=list dataProvider={ws.fnc.result} CustomControl data={list.currentItem} / /mx:Repeater mx:Panel label=Test / /mx:ViewStack In IE it seems to come up

RE: [flexcoders] Effects and and a ViewStack

2005-02-13 Thread Matt Chotin
You need to embed your fonts, the system fonts wont fade for you. http://livedocs.macromedia.com/flex/15/flex_docs_en/0567.htm Youll probably want a local font. As for having the current item fade out and the next fade in I would specify hide and show effects, but for the show

RE: [flexcoders] Another viewstack question... bug?

2005-02-13 Thread Matt Chotin
Its possible there are some bugs in the Firefox player. If you can create a full test-case we can try to verify it here. Matt From: temporal_illusion [mailto:[EMAIL PROTECTED] Sent: Saturday, February 12,2005 5:42 PM To: [EMAIL PROTECTED] Subject: [flexcoders] Another

RemoteObject : source property

2005-02-13 Thread Thijs Triemstra
Can I use a variabele for the 'source' property with RemoteObject? The code below doesn't seem to work :( function initApp() { path = vcs/Applications/Test; } mx:RemoteObject id=applicationService source={path} endpoint=http://localhost/amf.php; showBusyCursor=true mx:method

RE: [flexcoders] RemoteObject : source property

2005-02-13 Thread Matt Chotin
No, sorry. In 1.5 the source value must be available at compile-time. Matt From: Thijs Triemstra [mailto:[EMAIL PROTECTED] Sent: Saturday, February 12,2005 6:23 PM To: [EMAIL PROTECTED] Subject: [flexcoders] RemoteObject : source property Can I use a variabele for the

RE: [flexcoders] Re: RemoteObject : source property

2005-02-13 Thread Matt Chotin
Well, check out the Cairngorm architecture and ServiceLocator pattern. You may still be able to accomplish what you want. Matt From: Thijs Triemstra [mailto:[EMAIL PROTECTED] Sent: Saturday, February 12,2005 6:47 PM To: [EMAIL PROTECTED] Subject: [flexcoders] Re:

Question about arrays

2005-02-13 Thread nostra72
Is making arrays with Flex similar to making arrays with Visual basic meaning is it possible to make an array of objects like say an array of buttons or labels?