RE: [flexcoders] Why are is the Component loader no longer caching objects?

2006-09-20 Thread Dan Diodati
Does anyone know how to fix this? I noticed that someone else had the problem too. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Antoine MalpelSent: Thursday, August 24, 2006 7:20 AMTo: Mailing List FlexCodersSubject: [flexcoders] 1.5 : components can't be

[flexcoders] Why are is the Component loader no longer caching objects?

2006-09-19 Thread Dan Diodati
All of a sudden our flex objects are not getting cached when the swf is loaded: 13:46:41,519 INFO [STDOUT] 09/19 13:46:41 INFO Cached Component Loader: component com.sf.sfv4.view.sharkfin.form.SelectReview cannot be cached.13:46:41,597 INFO [STDOUT] 09/19 13:46:41 INFO Cached Component

[flexcoders] company branding in flex??

2006-06-20 Thread Dan Diodati
I need to dynamically change the loaded external css script in withina flex application. It appears that the mx:Style tag imports the css and it gets compiled into the swf. There appears to be ways to change specific styles of classes or types using the StyleManager, but not to change

[flexcoders] can not have separate flex war apps?!?!?

2006-01-16 Thread Dan Diodati
I'm having a wierd problem when trying to have different J2EE web application that have the flex configurations. The code will fail to compile Error /com/sf/sfv4/view/sharkfin/AddGoal.mxml:74 Expected object definition or binding _expression_ inside mx.controls.Label This does not

[flexcoders] repeater does not update when object in array for dataprovider changes

2005-12-07 Thread Dan Diodati
Hi I am using a repeater to render multiple sections on a screen. The dataprovider is an array of VO objects that each have a comments property. When new sections are added dynamically I have to update the entire dataprovider(assign the array to the dataprovider again)to get the

RE: [flexcoders] repeater does not update when object in array for dataprovider changes

2005-12-07 Thread Dan Diodati
OK I figured out that modifying the array associated with the dataprovider for a repeater does not always trigger a change event. So I had to use the replaceItemAt method of the dataprovider to get it to update that section correctly. Dan From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] Effects on a modal box?

2005-11-29 Thread Dan Diodati
endBackgroundProcessing = true; resize.playEffect(); Booyah!!! You'll have to elaborate on the implode... - Original Message - From: Dan Diodati To: flexcoders@yahoogroups.com Sent: Monday, November 28, 2005 8:46 PM Subject: RE: [flexcoders] Effects on a modal box? Just to be clear I want to have

[flexcoders] Effects on a modal box?

2005-11-28 Thread Dan Diodati
Hi when doing special effects can they be applied when opening a modal titlewindow via the PopUpManager? Dan -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

RE: [flexcoders] Effects on a modal box?

2005-11-28 Thread Dan Diodati
: Dan Diodati To: flexcoders@yahoogroups.com Sent: Monday, November 28, 2005 6:04 PM Subject: [flexcoders] Effects on a modal box? Hi when doing special effects can they be applied when opening a modal titlewindow via the PopUpManager? Dan -- Flexcoders Mailing List FAQ: http

RE: [flexcoders] Re: setFocus is evil

2005-11-14 Thread Dan Diodati
of the Flash Player ActiveX control, and the browser has focus, not the ActiveX control, you need to have _javascript_ set focus to it. - Original Message - From: Dan Diodati To: flexcoders@yahoogroups.com Sent: Friday, November 11, 2005 3:18 PM Subject: RE: [flexcoders] Re: setFocus

RE: [flexcoders] Re: setFocus is evil

2005-11-11 Thread Dan Diodati
What onLoad tag are you talking about? There is no onLoad event in flex? And what are you referring to with 'theFlashControl'? Can you give more detail please, since I am pretty new to flex, and I do not really know flash yet. Thanks, Dan From: flexcoders@yahoogroups.com

RE: [flexcoders] How to prevent events from passing through upper components

2005-11-07 Thread Dan Diodati
Is this normal behavior? Since I am handling mousedown events on the TitleWindow, I figured that no mousedown events should make it to any components below my Container. If a MovieClip is the only way is there some good online references that describe how to work with MovieClips? I am new