RE: [flexcoders] How to clear date field

2006-04-13 Thread Carolyn Cole
I posted a question earlier to this list and the response that I got for 1.5 at least was to add a clear button next to the date field. When the clear was clicked you can set the text field like Peter suggested. It would be nice if there was an integrated way. Maybe 2.0 has a different way. At

[flexcoders] Filled Polygon

2007-04-02 Thread Carolyn Cole
Hello, For some reason I can not seem to get my polygon created by lineto to fill. The polygon gets drawn, but the fill never happens. Does anyone have any suggestions? The code I am using is bellow: recColor = 0xFF; transp=0.5;

Re: [flexcoders] Filled Polygon

2007-04-02 Thread Carolyn Cole
it should be graphics.lineTo Change your logic so that you do this (pseudo-code): clear lineStyle moveTo - (starting point) beginFill loop { lineTo - (each point) } moveTo - (optional end point) endFill Hope this helps. Cheers, Adam - Original Message - From: Carolyn Cole To: mailto:flexcoders

RE: [flexcoders] rowRenderer

2005-12-15 Thread Carolyn Cole
). Matt -Original Message- From: flexcoders@yahoogroups.com [ mailto:flexcoders@yahoogroups.com] On Behalf Of Carolyn Cole Sent: Wednesday, December 14, 2005 7:05 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] rowRenderer Hello, I am currently trying to implement the CheckRowRenderer

[flexcoders] ChangeEvent

2006-01-23 Thread Carolyn Cole
Hello! I am trying to get a change event working on a value object, but I just can not seem to get a change to occur. Does anyone have a working example using Chnage Event? Here is the code I have so far import mx.events.*; // ActionScript Document [ChangeEvent(configNameChanged)] class

[flexcoders] Clear DateField

2006-01-24 Thread Carolyn Cole
Hello, I was wondering if there was a standard way to let a user clear a DateField once it has been set. If thought about just adding a clear button, but that seems a bit contrived. Thanks! -- Carolyn -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Event Handling with CreateChild() / addEventListener

2006-01-25 Thread Carolyn Cole
Hello, I Believe it should be something like ourGroup.addEventListener(click, this); with a function defined as: function click() { } that does what you want to do. --Carolyn At 11:10 AM 1/25/2006, you wrote: Hi folks, I am creating a set of radio buttons and a radio button group in a

RE: [flexcoders] ChangeEvent

2006-01-26 Thread Carolyn Cole
the dispatcher.dispatchEvent, just leave it as dispatchEvent. You don't need a dispatcher property at all. Matt -Original Message- From: flexcoders@yahoogroups.com [ mailto:flexcoders@yahoogroups.com] On Behalf Of Carolyn Cole Sent: Monday, January 23, 2006 6:59 AM To: flexcoders@yahoogroups.com Subject

[flexcoders] Re: Problem with CheckRowRenderer

2006-02-01 Thread Carolyn Cole
Hello, It is NEVER a good idea to send an E-mail directly to a person on a group list... The point of the list is to allow people to help if and when they have time. If you send it to a person directly they are not likely to have time immediately and/or have the expertise to help. That

Re: [flexcoders] Binding refresh

2006-02-16 Thread Carolyn Cole
You can try calling executeBindings() on the chart after you create the new dates. At 11:11 AM 2/16/2006, you wrote: Alright, I am sending a custom mxml component an array using: “theDates={myDateArray}” theDates are the displayNames for a chart and yet I can have them update. myDateArray

Re: [flexcoders] Mozilla Load Issue

2006-02-22 Thread Carolyn Cole
Hello, I found the answer to this. You need to set the width and height of the application tag to a fixed size. -- Carolyn At 08:48 AM 2/22/2006, Carolyn Cole wrote: Hello, I am currently trying to deploy my flex software on a Red Hat Linux machine. The code seems to deploy file, but when I

[flexcoders] Webservice wsdl

2006-02-22 Thread Carolyn Cole
Hello, I would like to use a variable to point the wsdl location of my web service, but I can not seem to get it to work. I have the following variable set in my action script section of my mxml: var wsdlLocation: String = https://arl3469.arl.psu.edu:8443/uaim-webService/UAIMService.wsdl ; I

Re: [flexcoders] Runtime Error #1068: void and * cannot be reconciled

2006-02-24 Thread Carolyn Cole
Just a guess here... You defined the function as void. When you call the return statement with no value it probably gets the * type. You could define your function to have a return type you do not use, or drop the void return type. At 01:04 PM 2/24/2006, you wrote: Hi João, Isn't missing a {

Re: [flexcoders] Re: Repeater and Web Services (Flex 2b1)

2006-03-08 Thread Carolyn Cole
Hi! I know this may not be the right way, but you can call myCategories.executeBindings() or I found if I made a new Object added the data to that and then set the bound object to that: var tmpArray = new ArrayCollection(); var lResults : ArrayCollection = new

Re: [flexcoders] Re: Repeater and Web Services (Flex 2b1)

2006-03-08 Thread Carolyn Cole
++) { tabsDataProvider.addItem(lResults.getItemAt(lIndex)); } } which I think is the same as your other suggestion. This gives me a null error. Any more ideas appreciated, or is this a bug? ta, Tim. --- In flexcoders@yahoogroups.com, Carolyn Cole [EMAIL PROTECTED] wrote: Hi! I know this may not be the right