Re: [flexcoders] Invalidate Question

2005-09-10 Thread Manish Jethani
On 9/10/05, kreddington1 [EMAIL PROTECTED] wrote: How can I get the validators to turn off until the users starts to fill out the form again? I'm not sure, but I think you have to use Validator.disable

Re: [flexcoders] pausing for given time

2005-09-10 Thread Manish Jethani
On 9/10/05, Krzysztof Szlapinski [EMAIL PROTECTED] wrote: i've got this - probably simple - problem, I want to pause my application for some time, and I cant find neither pause nor wait nor halt or whatever function that can perform this task. here are the details: I've got a label and a

RE: [flexcoders] pausing for given time

2005-09-10 Thread Carson Hager
I believe what he's looking for is a way to suspend the executing thread as in Java's Thread.sleep(), etc. Unfortunately, given the asynch nature of the Flash player's engine, this is not possible. Carson Carson Hager Cynergy Systems, Inc.

[flexcoders] Installation Problem with Flex 1.5

2005-09-10 Thread manish
Hi Everyone, I am very new to flex and installed the trial version of flex 1.5. when i tried to install it. its installed completely but gave these error as below: Install Uninstaller: Macromedia Flex 1.5

[flexcoders] about synchronization in retrieving data by using a httpservice

2005-09-10 Thread xiankevin2005
hi all, in my app,i need to retrieve data from different tables in the database and i have to divide the process into several steps.i send each request till the result of the previous step is received.but i think there're some problem due to synchronization all the same... i traced the

Re: [flexcoders] cellRenderer

2005-09-10 Thread Manish Jethani
On 9/8/05, Philippe Maegerman [EMAIL PROTECTED] wrote: Something I have discovered, in the mx:DataGrid tag, if you add initialize=event.target.getColumnAt(1).cellRenderer = boldRenderer the cellRenderer is taken, but not if you use the creationComplete event. I noticed that, if you add a

Re: [flexcoders] Checkbox cellRenderer

2005-09-10 Thread alberto
I have run into the same problem. When using the livedocs checkbox cellrenderer, when I check one, others get checked too. Is there any explanation to this? Yahoo! Groups Sponsor ~-- Fair play? Video games influencing politics. Click and talk back!

[flexcoders] Re: Gotchas with mod-proxy/mod_jk Flex

2005-09-10 Thread Eric Raymond
Check out your jkmount and alias declarations in your apache configuration. --- In flexcoders@yahoogroups.com, charlespaz1 [EMAIL PROTECTED] wrote: I've also noticed when using mod_jk instead of mod_proxy that document errors are handled exclusively by Apache, and relative URLs are searched in

[flexcoders] I wish there was a good tutorial on the preloader

2005-09-10 Thread face7hill
It seems like a lot of people have asked a ton of preloader questions and few get answered. I'm a noob and so I read through the archives on google and yahoo groups, still few answers. I also read the section on preloaders in Developing Rich Clients with Macromedia Flex--the example there

RE: [flexcoders] Flex Sample Application

2005-09-10 Thread Matt Chotin
Make sure your flex-config.xml has the appropriate entries (did you take samples.war or did you copy to another war?). FormatSourceService should be in there I think (I havent gone back and looked to refresh my memory though). Matt From: flexcoders@yahoogroups.com

Re: [flexcoders] Tomcat and Apache through mod_jk on Linux-HOWTO

2005-09-10 Thread Steve Ocean
Just wanted to say thanks and good job! You've saved lots of people hours and hours of time.On 9/9/05, charlespaz1 [EMAIL PROTECTED] wrote: Finally figured out where I was going wrong with mod_jk. Tested with 5 servers and I feel I have it.

Re: [flexcoders] Installation Problem with Flex 1.5

2005-09-10 Thread Steve Ocean
I get errors too, but everything as seems to work fine anyway, I assumed they had something to do with it being a trial version.. especially the license file error. Am I wrong? On 9/9/05, manish [EMAIL PROTECTED] wrote: Hi Everyone, I am very new to flex and installed the trial version of

[flexcoders] Timeline component

2005-09-10 Thread Steve Ocean
We want to arrange events on layered timelines, something like the timeline editor in Flash. Does anyone have any thoughts about how to best build a Flex component(s) to do this? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search

[flexcoders] main app build on the fly

2005-09-10 Thread Ghislain Simard
Hi, I am trying to get a navigation tree build on the fly based on the content in the database. My problem is when and where I should put the code to get the tree build before the app is initialize. Thanks Yahoo! Groups Sponsor ~-- Fair play?

RE: [flexcoders] HeaderRenderer Tooltips

2005-09-10 Thread Matt Chotin
The setValue method of the headerRenderer is going to be passed the text it wants to display for the column. You can use that to set the toolTip property as well. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of thisdudenamedjon Sent:

RE: [flexcoders] RowRenderer for DataGrid: is this possible?

2005-09-10 Thread Matt Chotin
Writing a custom row renderer is pretty hard in Flex 1.5, its something were hoping to improve in the next version. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of P Trisnadi Sent: Wednesday, September 07, 2005 5:30 PM To:

RE: [flexcoders] setting focus back to component that fails validation?

2005-09-10 Thread Matt Chotin
You could use the focusOut event instead. The valueCommitted handler is going to fire before the component attempts to change focus, so after it has executed (and youve called setFocus) THEN the component will switch focus. So you need to switch focus back later in the process. Matt

RE: [flexcoders] Tween classes

2005-09-10 Thread Matt Chotin
Try not using _level0, go through Application.application. And see if you should be using Delegates too J Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Philippe Maegerman Sent: Friday, September 09, 2005 9:56 AM To:

RE: [flexcoders] setting value to datefield text..

2005-09-10 Thread Matt Chotin
Try change or valueCommitted maybe? Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Greg Morphis Sent: Friday, September 09, 2005 10:49 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] setting value to datefield text.. As

RE: [flexcoders] Flash Remoting.

2005-09-10 Thread Matt Chotin
Look for ASSetPropFlags. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Omar Ramos Sent: Friday, September 09, 2005 2:20 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flash Remoting. Hi list, I know there

RE: [flexcoders] Checkbox Cell Renderer

2005-09-10 Thread Matt Chotin
Title: Checkbox Cell Renderer Im guessing that you accidentally have a reference to something that is not being cleared in your renderer. Remember that the renderer is re-used for many items and as you scroll up and down it changes position. So maybe theres an instance variable in your

RE: [flexcoders] about synchronization in retrieving data by using a httpservice

2005-09-10 Thread Matt Chotin
Not sure exactly what youre running into here. Youre calling the next httpservice in the result handler of the previous one right? Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of xiankevin2005 Sent: Friday, September 09, 2005 9:51 PM