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

2006-01-06 Thread charged2885
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 Links * To visit your group

[flexcoders] (1.5) Lingering modal TitleWindow shadow

2006-01-02 Thread charged2885
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 technique. Does anyone know why sometimes

[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

[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??? Dan

[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()

[flexcoders] Re: PreferencesWindow design pattern

2005-12-02 Thread charged2885
Message - From: charged2885 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, December 01, 2005 4:45 PM Subject: [flexcoders] PreferencesWindow design pattern Note, this example is mitigated. there are dozens of preferences i want my users to be able to set. Anyways

[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] Re: Services.mxml flex-config.xml issues

2005-11-08 Thread charged2885
i'm a dummy. In my build.xml, i had: copy file=dd/flex/flex-config.xml todir=${war.dir}/WEB-INF/ which should have been copy file=dd/flex/flex-config.xml todir=${war.dir}/WEB-INF/flex/ thanks anyways, Todd --- In flexcoders@yahoogroups.com, charged2885 [EMAIL PROTECTED] wrote: I'm trying

[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

[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 remote-objectswhitelist: named object name=UserDelegate sourcecom.charged.infuse.delegate.UserDelegate/source typestateless-class/type

[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

[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:

[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
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

[flexcoders] Re: Cairngorm and popup window design question

2005-06-14 Thread charged2885
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, June 14, 2005 10:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Cairngorm

[flexcoders] Re: Cairngorm and popup window design question

2005-06-14 Thread charged2885
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 [mailto:[EMAIL PROTECTED] On Behalf Of charged2885 Sent: Tuesday, June 14, 2005 10:34 PM

[flexcoders] Re: Service Call Timeouts in Cairngorm

2005-06-10 Thread charged2885
into the ServiceLocator rather than up into the Command ... Thoughts ? Glad to see 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

[flexcoders] Re: Service Call Timeouts in Cairngorm

2005-06-09 Thread charged2885
? I'd recommend pushing this functionality down into the ServiceLocator rather than up into the Command ... Thoughts ? Glad to see you thinking on this, Best, Steven -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of charged2885

[flexcoders] Re: Service Call Timeouts in Cairngorm

2005-06-09 Thread charged2885
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 created a ServiceCommand base class which all commands

[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-class. Any