RE: [flexcoders] Re: How to show the Hand Cursor on the Close Button?

2008-08-05 Thread nirav . gosalia
Use This, btn.mouseChildren = false; btn.useHandCursor= true; btn.buttonMode = true; Regards, Nirav Gosalia From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Claudiu Ursica Sent: Tuesday, August 05, 2008 5:05 PM To: flexcoders@yahoogroups

[flexcoders] Re: How to show the Hand Cursor on the Close Button?

2008-08-05 Thread Claudiu Ursica
var btn:Button = this.mx_internal::closeButton; btn.useHandCursor = true; However the mx:internal might change in the future so this is not bullet proof. --- In flexcoders@yahoogroups.com, "flexawesome" <[EMAIL PROTECTED]> wrote: > > Hey there, > > In the titlewindow component, I set showCloseB

Re: [flexcoders] Opening path with Finder/Explorer in AIR

2008-08-05 Thread Berkay Unal
Well the file is the DB file. And the Machines has no internet connection.That DB file needs to upload to a CF server which will parse the data and process. The DB file is located in Users folder. When you use NavigateToURL in a windows box it is no problem. But the client machines are all Mac. T

Re: [flexcoders] Opening path with Finder/Explorer in AIR

2008-08-05 Thread Tom Chiverton
On Tuesday 05 Aug 2008, Berkay Unal wrote: > I am able to do it with browser but could not find a way to open the path > with finder/explorer What the users computer chooses to do when you navigateToUrl() with a URL that starts 'file://' is probably beyond your control. I happen to like the way K

[flexcoders] Opening path with Finder/Explorer in AIR

2008-08-05 Thread Berkay Unal
Hi Coders, I have an application that store data in users folder. Does any one know how to open that folder with Finder/Explorer so user can take those files attach to its email, do anthing else. I am able to do it with browser but could not find a way to open the path with finder/explorer

Re: [flexcoders] Re: modifying a function at runtime

2008-08-05 Thread Laurent Cozic
I wouldn't recommend it, but you can do it using a dynamic class: package { public dynamic class YourClass { // Define the function this way: this.yourFunction = function() { return "abcd"; } } } // Then to change the function: var test = new YourClass() trace(test.yourFun

[flexcoders] Re: modifying a function at runtime

2008-08-05 Thread arieljake
ehem...was a little sleepy when I wrote that. I meant... Is it possible to modify the method of a class at runtime? The only way I can think of is to encapsulate the function into a Function property that gets called by a wrapper class method.

[flexcoders] modifying a function at runtime

2008-08-05 Thread arieljake
Is it possible to modify a function at runtime? Like set it to a new value?

Re: [flexcoders] Can see series[0].seriesRenderData in debug - cannot code to it?

2008-08-05 Thread Tom Chiverton
On Thursday 31 Jul 2008, chigwell23 wrote: > to find that any reference to .seriesRenderData creates an error. Which one ? -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited liability partn

[flexcoders] Turning off SWF messages

2008-08-05 Thread Laurent Cozic
Each time a SWF file is loaded, Flash display a message in the console window such as: [SWF] /myfile.swf - 6,303 bytes after decompression This clutters the window for no real usefulness, especially when many files are loaded at the same time. Is it possible to turn this feature off and, if so,

Re: [SPAM]Re: [flexcoders] Delay before text is updated

2008-08-05 Thread Ralf Bokelberg
Exactly. And please have a look at Josh's very good explanation of why it is that "long winded". You have the same thing in other programming systems as well. Eg. last time i looked at Java client programming, you need to establish a second thread for beeing able to update the UI and receive user i

[flexcoders] Re: Custom Context Menu in flex app

2008-08-05 Thread vipinck
Adam, That was the problem. I changed the menu name to 'Save This' and it started working. But I was expecting an error message from Flex if I use something which was not supposed to be used. -Vipin

Re: [SPAM]Re: [flexcoders] Delay before text is updated

2008-08-05 Thread Josh McDonald
Disclaimer: This is from memory, and details will be wrong :) I have documentation in the works for this, but it'll turn up in a blog post in a couple weeks when it's launched! I've also left out the sizing etc. When you set fields of most properly written components, you're usually not setting a

[flexcoders] disable type-ahead look-ups in AdvancedDataGrid..

2008-08-05 Thread Dennis van Nooij
currently the AdvancedDataGrid use type-ahead look-ups on the first column, so if you enter any character it will search for that an item that matches it and focus that item. Problem is that I have defined a list of shortcut keys (like CTR+I) to do actions on those items on the list, so every time

Re: [SPAM]Re: [flexcoders] Delay before text is updated

2008-08-05 Thread Laurent Cozic
Try savingMessage.validateNow() - it should force an update of the text area. -- Laurent Cozic Flash, Flex and Web Application development http://pogopixels.com - Original Message From: Paul Steven <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, August 5, 2008 9:33

[flexcoders] Join QAGuild Network on Linkedin

2008-08-05 Thread p_shedikare
You are on your way to further take advantage of QAGuild.com offerings. Visit your website at http://www.QAGuild.com The QAGuild Network on LinkedIn is an alternative means to jump start your awareness about QAGuild.com website. The official website is the portal for you expand your knowledge

RE: [SPAM]Re: [flexcoders] Delay before text is updated

2008-08-05 Thread Paul Steven
When you say delay the call to the method, do you mean set a timer to a small time period (say 500 milliseconds) after which it will call the "createStudentDataXMLFile" function? I definitely must be missing something fundamental here as seems a really long winded way to get some text to update

RE: [SPAM]Re: [flexcoders] Delay before text is updated

2008-08-05 Thread Paul Steven
Thanks for the replies. My method basically creates a fairly large string and then writes this string to disk as an xml file. So are you saying, if my function takes say 10 seconds to complete, there will be no ENTER_FRAME dispatched during this time? If so then is there any function I can

Re: [flexcoders] apply stroke color to a column chart from external css file

2008-08-05 Thread Tom Chiverton
On Monday 04 Aug 2008, [EMAIL PROTECTED] wrote: > I wanted to apply stroke color to a column chart not using the stroke > tag but from external css file to avoid hardcoding Check the archives. -- Tom Chiverton This email is sent for and

Re: [flexcoders] Delay before text is updated

2008-08-05 Thread Ralf Bokelberg
Another option is to delay the call to the method, which does the main work. Cheers Ralf. On Tue, Aug 5, 2008 at 9:56 AM, Josh McDonald <[EMAIL PROTECTED]> wrote: > What does your method do? > > Most changes made to most components (such as changing the text property) > won't be reflected on-scre

Re: [flexcoders] Delay before text is updated

2008-08-05 Thread Josh McDonald
What does your method do? Most changes made to most components (such as changing the text property) won't be reflected on-screen until the next ENTER_FRAME is dispatched by the player due to the way Flex works internally. If your method is simply some gigantic or slow loop, you won't see anything

[flexcoders] Delay before text is updated

2008-08-05 Thread Paul Steven
Probably something really basic, but I am having trouble with delays updating some text on screen. Basically I want to display a message on screen to tell the user to wait whilst a save operation takes place and after the save operation change the text message back to blank. However I am not se

<    1   2