RE: [flexcoders] DateChooser Scrool Events

2006-07-17 Thread Stacey Mulcahy
mx:DateChooser scroll=getItems();/ From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of grant.straker Sent: Monday, July 17, 2006 5:52 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] DateChooser Scrool Events I'm trying to

RE: [flexcoders] Handle result/fault from webservice call in Cairngorm 2

2006-07-04 Thread Stacey Mulcahy
With Cairngorm, have your commands implement the Command and the Responder, then you have the onResult and onFault calls to handle as you will. You pass the reference of the command to the delegate, and you should be good to go. The delegate does the real work of hitting up the

RE: [flexcoders] Re: ItemRenderer and Events

2006-06-09 Thread Stacey Mulcahy
I think you need to look at IDropinItemRenderer or something like that From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jpwarmer Sent: Friday, June 09, 2006 1:25 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: ItemRenderer and Events

RE: [flexcoders] Datagrid Help

2006-06-08 Thread Stacey Mulcahy
Can you do that with a db? Wouldnt you be better to look at charts or a horizontal tile list ? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of s_hernandez01 Sent: Thursday, June 08, 2006 12:19 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Limiting number of items a control displays

2006-06-07 Thread Stacey Mulcahy
Is there a way to limit the number of items that a control displays of a dp or do you have to modify the array/arraycollection prior to setting it in order to do so? For example I have a list control thats gets a result that has 10 items, but I only want to show 3 and let the user

RE: [flexcoders] Re: Cairngorm Bindings etc

2006-06-06 Thread Stacey Mulcahy
Tim thanks for the reply only one I didnt cover is 4. Everything else is as it should be. Typically Id post code too ( probably one of the rare occasions I didnt) but I was looking for what you replied with some high level check these first items. Ceheers! From:

[flexcoders] TileList with selectable text scrollBug?

2006-06-04 Thread Stacey Mulcahy
I have a tile list that scrolls and its populated with 42 items ( like a big calendar) and it uses and item render that has a label and text that is not selectable. If I scroll the tilelist down and then back up the text in the 1-3 rows disappears, sometimes just the first row,

[flexcoders] Image scale 9 having fun

2006-05-25 Thread Stacey Mulcahy
Alrighty, I'll take one for the team and post the stupidest question of the day, in fact its Stacey++ since I accidentally posted this to the Flashcoders list. - I have the following (flex 2b3) [Embed(source='assets/header.png',scaleGridTop='20', scaleGridLeft='10',

RE: [flexcoders] Re: Image scale 9 having fun

2006-05-25 Thread Stacey Mulcahy
you'll need to add maintainAspectRatio=false to your mx:Image tag. --- In flexcoders@yahoogroups.com, Stacey Mulcahy [EMAIL PROTECTED] wrote: Alrighty, I'll take one for the team and post the stupidest question of the day, in fact its Stacey++ since I accidentally posted

RE: [flexcoders] TabNavigator Events

2006-05-25 Thread Stacey Mulcahy
childIndexChange From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ashish Goyal Sent: Thursday, May 25, 2006 4:22 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] TabNavigator Events Try show event. You still need to use creationComplete

[flexcoders] DateChooser change background color

2006-05-25 Thread Stacey Mulcahy
Anyone been able to change the dateChooser bg color? When I have rounded corners , I see white on the corners and I can manage to get the bg where you see the day items, to be anything besides white. DateChooser{ header-colors:#33, #00; roll-over-color:#ff0099;

RE: [flexcoders]Combobox feature?

2006-02-17 Thread Stacey Mulcahy
Yes that happens to me. I totally wrote that off to be a bug. Personally, I dont consider that much of a feature Since when do selections and de-selections change the visualization of the label to make it invisible? Shouldnt that be best left to the work of a renderer? Unless

RE: [flexcoders] Tree dataprovider refresh

2006-02-07 Thread Stacey Mulcahy
Could you try perhaps setting a bindable prop for the labels? I assume youre done dataProvider.refresh() and its closes the nodes Or you could look into the XMLListCollection classes and do a notifyItemUpdate to the dataprovider if you are just changing a prop on the existing DP rather

[flexcoders] CF connectivity?

2006-02-03 Thread Stacey Mulcahy
I do I need to install the CF connectivity bit if I am consuming services and not using remoting? My app that was working dandy in the previous version( the alpha) is no longer working. B. -- Flexcoders Mailing List FAQ:

RE: [flexcoders] How to set the icon of an Alert via ActionScript? (Flex 2 beta 1)

2006-02-03 Thread Stacey Mulcahy
From the docs ?xml version=1.0? mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml mx:Script ![CDATA[ import mx.controls.Alert; import mx.events.CloseEvent; [Embed(source=alertIcon.jpg)] [Bindable] public var iconSymbol:Class; private function

[flexcoders] IE Refresh Issues

2006-02-01 Thread Stacey Mulcahy
Ive created an application that interfaces with CF remoting and uses sharedobjects to retain certain information about states in the application, so that the user can return to the application and see the last state they were at in using it so to speak. This works fine. (yayJ ) Now in

RE: [flexcoders] IE Refresh Issues

2006-02-01 Thread Stacey Mulcahy
I should add that closing the browser and opening it again, works fine as well. Just IE on the refresh is the problem. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stacey Mulcahy Sent: Wednesday, February 01, 2006 11:33 AM To: flexcoders

RE: [flexcoders] TabNavigator and Flex2 Beta

2006-02-01 Thread Stacey Mulcahy
Force the label to autosize on click? I had something similar with a cell renderer. I had to autosize it and set its width to 100 % From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Miranda Sent: Wednesday, February 01, 2006 1:25 PM To:

[flexcoders] TabNavigator in Popwindow issue ?

2006-02-01 Thread Stacey Mulcahy
I seem to be having an issue getting the click event from the Tab Navigator when its in a popup window- can someone confirm if they have a chance? Main file to lauch popup: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml xmlns=*

RE: [flexcoders] TabNavigator and Flex2 Beta

2006-02-01 Thread Stacey Mulcahy
Got an example of this? _ Jonathan Miranda Flexible Master of the Web In the game of chess, it's important to never let your opponent see your pieces. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stacey Mulcahy Sent

RE: [flexcoders] TabNavigator and Flex2 Beta

2006-02-01 Thread Stacey Mulcahy
={dataObject.name} fontSize=8 fontFamily=Standard autoSize=left width=100% id=label_txt/mx:Label /mx:HBox From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stacey Mulcahy Sent: Wednesday, February 01, 2006 2:59 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders

RE: [flexcoders] Re: TabNavigator in Popwindow issue ?

2006-02-01 Thread Stacey Mulcahy
, Stacey Mulcahy [EMAIL PROTECTED] wrote: I seem to be having an issue getting the click event from the Tab Navigator when its in a popup window- can someone confirm if they have a chance? Main file to lauch popup: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http

RE: [flexcoders] DataGrid Bug?

2006-02-01 Thread Stacey Mulcahy
Dude I got the same kinda rendering of the labels issue with the list component and even more funky stuff with the tree component as well. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sreejith Unnikrishnan Sent: Wednesday, February 01, 2006 3:34 PM

RE: [flexcoders] Perhaps I'm challenged.

2006-01-26 Thread Stacey Mulcahy
] On Behalf Of Stacey Mulcahy Sent: Wednesday, January 25, 2006 11:29 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Perhaps I'm challenged. Question - Flex 2 Cell Renderer I have a cell renderer that overrides the set dataObject to determine what to render based on the info

RE: [flexcoders] access DataGrid Row

2006-01-26 Thread Stacey Mulcahy
Technically if you go to the model, change the data in there ( the dataprovider), call a refresh, you can handle that in your cell renderer. You should also be able to get at it something like columnIndex,itemIndex like for focusedcell From: flexcoders@yahoogroups.com

RE: [flexcoders] Perhaps I'm challenged.

2006-01-26 Thread Stacey Mulcahy
will be more consistent. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacey Mulcahy Sent: Thursday, January 26, 2006 9:52 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Perhaps I'm challenged. Yah, J did that too and it didnt

RE: [flexcoders] access DataGrid Row

2006-01-26 Thread Stacey Mulcahy
Subject: Re: [flexcoders] access DataGrid Row Thanks for the reply Stacey. I dont have the state of the checkBox in my dataProvider right now. If I do manage to stick it in there, what is this refresh method that you are referring to ? On 1/26/06, Stacey Mulcahy [EMAIL

RE: [flexcoders] ChangeEvent

2006-01-26 Thread Stacey Mulcahy
Do you have to declare the dispatchEvent as a var ( private var dispatchEvent:Function) like usual for mixins? Or have to extend the dispatcher Class? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Carolyn Cole Sent: Thursday, January

RE: [flexcoders] Unable to Dynamically Changing BG image

2006-01-25 Thread Stacey Mulcahy
Are any of the images showing up as there are no embed calls. ? What about just setting the styles in a css file externally and changing the styleName on the fly by binding the bgimage to a variable? Someone can correct me here, but isnt setStyles one of the most intensive

[flexcoders] Perhaps I'm challenged.

2006-01-25 Thread Stacey Mulcahy
Question Flex 2 Cell Renderer I have a cell renderer that overrides the set dataObject to determine what to render based on the info. Originally I was setting a plain ole array to the dataGrid as a DP and I could easily do something like Override public function set

RE: [flexcoders] DragManager events as3

2006-01-24 Thread Stacey Mulcahy
for the class? On 1/23/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: The events fail to fire. I pared it down to just tracing and they don't seem to be firing. Work like a charm for me. What's the problem? On 1/23/06, Stacey Mulcahy [EMAIL PROTECTED] wrote: Alrighty, I'm creating everything via

[flexcoders] Event inconsistency

2006-01-24 Thread Stacey Mulcahy
Is there a reason, out of curiosity, that the event implementation is different between lets say: MouseEventType.MOUSE_DOWN DragEvent.MOUSE_DOWN Was there a reason that the DragEvent doesnt follow the same format as MouseEventType its seems oddly inconsistent and just wondering

RE: [flexcoders] Flex2 Debugging

2006-01-23 Thread Stacey Mulcahy
Ive had probs with cell renderers in DGs where the label doesnt resize properly cutting off the label until you refresh its length in the override set dataObject bit. My last couple of messages have been bouncing come to think of it. From: flexcoders@yahoogroups.com

[flexcoders] DragManager events as3

2006-01-22 Thread Stacey Mulcahy
Alrighty, Im creating everything via as3 class and not using MXML persay in combo with script How can I tap into the DragManager class I thought it would be via adding listeners. I thought this would work: Var dg:DataGrid=new DataGrid(); // populate the columns and such

RE: [flexcoders] how to change the appearance of a custom button

2006-01-17 Thread Stacey Mulcahy
What version of flex? If youre extending the flex framework you should be able to skin it by substituting your own images via the props: selectedDisabledIcon=No default. selectedDisabled=buttonSkin selectedDownIcon=No default. selectedDown=buttonSkin selectedOverIcon=No default.

[flexcoders]Install charting components with new Flex 2.0 build?

2006-01-06 Thread Stacey Mulcahy
A couple of issues in using the new build versus the previous alpha Where do I install the charting components? The directions no longer apply as directory names have changed. My tree component which previous worked, no longer does its bound to variable.

RE: [flexcoders]Install charting components with new Flex 2.0 build?

2006-01-06 Thread Stacey Mulcahy
Im retarded ( just publically admitted that J ) Reinstalled both 1.5 and 2 and components worked just dandy. Still wish they were better documented on the alpha of 2 but oh well . From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stacey

RE: [flexcoders] Problem with binding from webservice

2005-11-25 Thread Stacey Mulcahy
I havent used the new xml bit in as3 but , maybe you need to so something like result[0].Login.User_Name Also you can trace out what you are getting returned that might help you a bit with something like trace(ObjectUtil.toString(this.service.logonXML1.result)) Wish I could be

RE: [flexcoders] Re: Handling dataObject within a CellRenderer

2005-11-24 Thread Stacey Mulcahy
No- something like this. ?xml version=1.0? !renderer.mxml -- mx:VBox xmlns:mx=http://www.macromedia.com/2005/mxml backgroundAlpha=0 borderThickness=0 mx:Script ![CDATA[ import flash.util.*; // Override the setter method. override public function set