[flexcoders] (1.5) modal TitleWindow shadow problems... again!

2006-01-06 Thread charged2885
ow up. Does anyone know why? Here's a screenshot: http://www.itodd.org/~charged2885/tw2.gif Todd -- 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

[flexcoders] (1.5) Lingering modal TitleWindow shadow

2006-01-02 Thread charged2885
s. What's going on here? http://www.itodd.org/~charged2885/titlewindow.gif I've ran into this before (multiple times) and I've used workarounds like destroying the TitleWindow. I've also successfully fully hidden a modal TitleWindow (and it's shadow) using the same te

[flexcoders] Toggle a child of a DividedBox?

2005-12-13 Thread charged2885
I have a console which displays debugging messages as a child of a VDividedBox. I want my user to be able to toggle the visibility of the console. When they set it to off, it should disappear including the little drag gripper. My idea is to create a ViewStack with 2 children. One of the childr

[flexcoders] Re: User login and logout

2005-12-06 Thread charged2885
I'm interested in this as well. --- In flexcoders@yahoogroups.com, "Dan" <[EMAIL PROTECTED]> wrote: > > hi all, > > I am trying to build an application that will kick out the first usr > when another user using the same id login. Does anyone has any idea > which area i should look into??? >

[flexcoders] my applicationViewHelper smells.

2005-12-05 Thread charged2885
I have several windows in my applicaiton: PreferencesWindow, LoginWindow, ConsoleWindow, etc... Since I can't seem to create these windows using their view helpers, I've been adding methods to my applicationViewHelper like: createLoginWIndow() destroyLoginWindow() showPreferencesWindow() hideP

[flexcoders] Re: PreferencesWindow design pattern

2005-12-02 Thread charged2885
ject > { > return formData; > } > > Then, in your main class, just replace your VO on the ModelLocator with the > formData. For avoiding references, see the earlier threads today about > Object.copy. > > > - Original Message - > From: "charge

[flexcoders] PreferencesWindow design pattern

2005-12-01 Thread charged2885
Note, this example is mitigated. there are dozens of preferences i want my users to be able to set. Anyways I have a simple preference i want my users to be able to set: showConsoleWindow. I have created a simple PreferencesWindow with a CheckBox on it. This checkbox's selected property

[flexcoders] Resizing a TitleWindow to size of contents?

2005-11-08 Thread charged2885
I have a title window with a viewstack with 2 states. The initial state is a simple form, the second state is a simple indeterminate progressbar. I'd like my TitleWindow to resize smoothly to the size of my ViewStack. Sadly, TitleWindow has no resizeToContents property. what is the reccomende

[flexcoders] Re: Services.mxml & flex-config.xml issues

2005-11-08 Thread charged2885
i'm a dummy. In my build.xml, i had: which should have been thanks anyways, Todd --- In flexcoders@yahoogroups.com, "charged2885" <[EMAIL PROTECTED]> wrote: > > I'm trying to access a RemoteObject. In flex-config.xm

[flexcoders] Services.mxml & flex-config.xml issues

2005-11-07 Thread charged2885
I'm trying to access a RemoteObject. In flex-config.xml, I have the following under : com.charged.infuse.delegate.UserDelegate stateless-class true User And my Services.

[flexcoders] Java 1.5 Security Annotations w/Flex 1.5

2005-10-27 Thread charged2885
Has anyone tried to get method-level authentication to work using 1.5 security annotations and flex 1.5? If so, could you describe your implementation? Thanks, Todd Boland Charged Software Yahoo! Groups Sponsor ~--> Get Bzzzy! (real tools to he

[flexcoders] extra 2-cpu license

2005-07-19 Thread charged2885
Our company has obtained an extra 2-CPU flex license from an aquisition. With the recent changes in flex's pricing, we thought there may be a market to sell it. If you are interested, please contact me. 2 CPU license + 5 flex builder licenses. Todd -- Flexcoders Mailing List FAQ: http://gr

[flexcoders] Shortcuts in caingorm

2005-06-21 Thread charged2885
One requirement I have to implement is shortcuts. In my implementation, I introduced a few new classes and add logic which handles onKeyDown into my application's FrontController. I also introduced an empty Shortcut marker interface. Any command that can be invoked via a shortcut must extend

[flexcoders] Re: Cairngorm and popup window design question

2005-06-14 Thread charged2885
the ModelLocator since it is extremely convenient. Otherwise (if you're editing someone else's UserVO), I would pass it to the controller. -- Todd Boland Charged Software > > > thanks > > Shlomi > > _ > > From: flexcoders@yahoogroups.com

[flexcoders] Re: Cairngorm and popup window design question

2005-06-14 Thread charged2885
uld most likely want to define a validator on some of its properties. Todd Boland Charged Software > > > thanks > > Shlomi > > _ > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of charged2885 > Sent: Tuesday, Ju

[flexcoders] Re: Cairngorm and popup window design question

2005-06-14 Thread charged2885
disclaimer: i'm new to actionscript and caingorm so i could be mistaken. >From what I understand, you should not be accessing any services from the >viewhelper. Broadcast a FrontController.SAVE_USER event with the UserVO as data inside the viewhelper instead. this should invoke the SaveUserComm

[flexcoders] Re: Service Call Timeouts in Cairngorm

2005-06-13 Thread charged2885
Steven, I agree with you 100%. Sadly though, my lack of experience in actionscript is preventing me from finding a perfect implementation. One hacky idea I had would be to somehow override the function that is called by (). from what i understand about actionscript, very object has a call() met

[flexcoders] Re: Service Call Timeouts in Cairngorm

2005-06-10 Thread charged2885
but if you implement this scheme > in the ServiceLocator, I'd be keen for you to share your implementation with > us ? > > I'd recommend pushing this functionality down into the ServiceLocator rather > than up into the Command ... Thoughts ? > > Glad to see you thinking

[flexcoders] Re: Service Call Timeouts in Cairngorm

2005-06-09 Thread charged2885
find any documentation on this. Todd --- In flexcoders@yahoogroups.com, "charged2885" <[EMAIL PROTECTED]> wrote: > Steven, > > After attempting to implement this, I agree with you. > > My working implementation right now is different from what I posted. I > crea

[flexcoders] Re: Service Call Timeouts in Cairngorm

2005-06-09 Thread charged2885
you thinking on this, > > Best, > > Steven > > -Original Message- > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of charged2885 > Sent: 08 June 2005 18:04 > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Service Call Timeou

[flexcoders] Service Call Timeouts in Cairngorm

2005-06-08 Thread charged2885
I'm seeking opinions on implementing service timeouts into a caingorm-based application. here's what i'm thinking: I will create a new interface called Timeout which defines a single method: onTimeout. The Commands which implement the Responder interface must also implement the Timeout inter

[flexcoders] Re: cairngorm and custom authentication

2005-05-26 Thread charged2885
--- In flexcoders@yahoogroups.com, "Steven Webster" <[EMAIL PROTECTED]> wrote: > Todd, > > > > > I added an abstract SecureCommand class which implements Responder. > > > > I like it; neat implementation, and definitely agree with you > putting this functionality into the SecureCommand base-clas

[flexcoders] cairngorm and custom authentication

2005-05-25 Thread charged2885
I'm honestly very surprised that this hasn't been brought up before (or maybe it has and i need to practice my searching skills). I am attempting to implement custom authentication into my flex applicaiton which is based on cairngorm. I would like to hear what others have to say about my idea for a