[flexcoders] Re: Initial order column for DataGrid - Flex2

2006-11-25 Thread kredding.geo
You should try to sort the ArrayCollection that is bound to the dataGrid's dataProvider. Once the collection or the source array is sorted, your data grid will be sorted. Kim --- In flexcoders@yahoogroups.com, kehlpeter [EMAIL PROTECTED] wrote: Hi, is there any way to set a

[flexcoders] loading a flash component

2005-04-21 Thread kredding.geo
If you use mx:Image to load a swf file, should the swf file work exactly the same as it does in flash, or does the actionScript in the Flash file take on new meaning once it is embedded into the Flex application? I am asking because I have the following script in my flash file. It works

[flexcoders] Re: EventListener for canvas

2005-04-23 Thread kredding.geo
Abdul, Thank you so much for your code changes. After taking what you wrote and modifying it slightly, I was able to get my application to work exactly the way I would like it to. --- In flexcoders@yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote: Hi, Since you are listening to a

[flexcoders] EventListener for canvas

2005-04-22 Thread kredding.geo
I have successfully set up some code that contains an event listener if I mouse down anywhere on a canvas. From the handler, I can modify a text area and move it. The code for this is shown below. But what I would like to do is access the xy coordinates of the mouse and move the text area

[flexcoders] Trying to grab handle to a child in a canvas

2005-04-27 Thread kredding.geo
I am having trouble grabbing a handle to a child inside a canvase. All children are created by using createChild myCanvas.createChild(mx.controls.TextArea,newTxtFld+i, {x:xLoc, y:yLoc}); I have a button that when pressed, I am trying to grab a handle to the last

[flexcoders] DateChooser

2007-05-04 Thread kredding.geo
Is there any way to modify the text color and size of the selectedRanges in the DateChooser? Thanks, Kim

[flexcoders] Re: DateChooser

2007-05-07 Thread kredding.geo
[EMAIL PROTECTED] wrote: On 5/4/07, kredding.geo [EMAIL PROTECTED] wrote: Is there any way to modify the text color and size of the selectedRanges in the DateChooser? You have the selectionColor and selectionIndicatorSkin styles. I think you're looking for the latter (custom skin in which

[flexcoders] Re: DateChooser

2007-05-07 Thread kredding.geo
How do I access the CalendarLayout object? --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 5/7/07, kredding.geo [EMAIL PROTECTED] wrote: Both of those seem like they only work for the background square that gets highlighted when selected. I need

[flexcoders] Re: DateChooser

2007-05-07 Thread kredding.geo
I read the source code and am trying to understand it. That's why I asked the question. Thanks for your words of wisdom. --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 5/7/07, kredding.geo [EMAIL PROTECTED] wrote: How do I access the CalendarLayout object

ViewStack change using separate mxml file

2005-03-03 Thread kredding.geo
I created a simple mxml applicationthat contains a viewStack. The stack defaults to the first canvas. This canvas contains a button that when pushed, changes the stack to the second canvas. I can get this to work, but what I really want is to put the first canvas into a second mxml file. The

Re: ViewStack change using separate mxml file

2005-03-03 Thread kredding.geo
Perfect. Thank you. --- In flexcoders@yahoogroups.com, Gordon Smith [EMAIL PROTECTED] wrote: Try parentDocument.headerStack.selectedChild = secondCanvas; - Gordon -Original Message- From: kredding.geo [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 02, 2005 5:13 PM

Re: ViewStack change using separate mxml file

2005-03-03 Thread kredding.geo
Now I have a parent document with 2 children mxml docs using viewStack. I would like to take the value of a textInput from one child and place that value into a text control of the second child. Is this possible? Thank you --- In flexcoders@yahoogroups.com, kredding.geo [EMAIL PROTECTED

Re: ViewStack change using separate mxml file

2005-03-04 Thread kredding.geo
I will save explaining the difference between writing Application.application and just application for another day. (Hint: They can be different when you have an app which loads another app.) - Gordon -Original Message- From: kredding.geo [mailto:[EMAIL PROTECTED

Re: Can Flex do this?

2005-02-17 Thread kredding.geo
Would I be able to take a drawing tool similar to that that was written in Flash and embed it into a Flex app as a SWC or SWF? Thanks --- In flexcoders@yahoogroups.com, Michael van Leest [EMAIL PROTECTED] wrote: Hi, You'll need Flash to create this kind of application. Flex is more an

Re: Can Flex do this?

2005-02-18 Thread kredding.geo
I think I am getting a better handle on how to create the application in Flex and using Flash to develop the specific components of the drawing tool, but how would the users drawings get saved and sent back to the Flex app? For example, we have an image that will be chosen in the Flex app,

[flexcoders] Getting a listener to work in Flex

2005-04-06 Thread kredding.geo
I am trying to use an example from the Flex Help to setup listeners for buttons. I cannot figure out how to get this code to work. If I just use the AS code, I get cannot find this method errors. If I add the buttons to the MXML, then the script runs, but I get two buttons. Plus the

[flexcoders] RemoteObject frustration

2005-04-17 Thread kredding.geo
I have been looking at this forever and can't figure out what I am missing. I am trying to access a class called search. I am passing in some text and would like to receive data based on my text. Right now the classes are very basic for testing the RemoteObject. I am receiving the error

[flexcoders] Re: RemoteObject frustration

2005-04-17 Thread kredding.geo
What do you mean by an endpoint reference? --- In flexcoders@yahoogroups.com, Dan R Blackman [EMAIL PROTECTED] wrote: I don't see an Endpoint reference to your remoting gatewaycould that be it? kredding.geo [EMAIL PROTECTED] wrote: I have been looking at this forever and can't figure