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

[flexcoders] Alert launched from popup component replaces component?

2006-07-06 Thread stacey
? Also each time I launch the component - it retains the items from the last time i launched and used it ( like populated text fields ), and you see this visibly redraw. Anyways to get rid of that? Thanks- Stacey Yahoo! Groups Sponsor ~-- Great

Re: [flexcoders] Re: Flex2 release version - PopUp mangager ..sizing popups

2006-07-04 Thread stacey
I've used the PopupManager to show custom items - and i've never had to set the size (w, or h) in previous version of flex2, with the new release, i cant confirm, but can confirm the previous versions. thanks for the input. The example in the help files titled Using the PopUpManager to create

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: Cairngorm createPopUp in a command

2006-06-11 Thread stacey
Also just in case you want to set props on the window or whatever, you can just cast it to the SearchingPanelView - if you need something that flexible. IN terms of how this integrates into the C framework i dunno, is it really necessary to filter everythign through the front controller when not

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
: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tim Hoff Sent: Tuesday, June 06, 2006 1:40 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Cairngorm Bindings etc Hi Stacey, Here's couple of debugging thoughts. But, it's hard to tell without seeing some

[flexcoders] DateChooser DND?

2006-06-05 Thread stacey
Anyone had any luck working a dnd behaviour into the datechooser? This is one component since it was introduced in flash , that seems to always work differently than the rest. BOOO. I am hoping I can find some way to detect the rollOverItem - but so far I have had no luck.

Re: [flexcoders] ComboBox default label.

2006-06-05 Thread stacey
Reformat the result? function formatResult(p_array:Object):ArrayCollection{ var ac:ArrayCollection=new ArrayCollection(p_array); ac.addItemAt({label:Select one },0); return(ac); } mx:ComboBox dataProvider={formatResult(service.result)}/ Hi All, Any idea how I can add the

Re: [flexcoders] DateChooser DND?

2006-06-05 Thread stacey
I basically want to dnd onto a date on the datechooser. - for example dragOver - if you catch the event the currentTarget it brings back the dateChooser but i have no way of referencing the date it dragged over onto. Part of this is because the innards of the datechooser, from what I saw, is

[flexcoders] Cairngorm Bindings etc

2006-06-05 Thread stacey
Using Carigngorm , which i love. I have never had a problem up until now, but i can't bind to my fricking model regardless of going creating a private var to hold a model refernece or going straight to ModelLocator.getInstance().dataArray; Its driving me nuts, the bindings are definitely not

[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,

Re: [flexcoders] diferent color for each day on datachooser

2006-05-28 Thread stacey
Check the archives. I kinda shouted about a bug in terms of this earlier... Hi, Is there a way to style each day of a datechooser indepent of all the other? i.e. day 1: background red day 2: blue day 3: green and so on... thanks. -- Flexcoders Mailing List FAQ:

[flexcoders] File DateChooser styling bug

2006-05-27 Thread stacey
Just a bug to note, bg of datechooser cannot be changed - visiting the flex style example illustrates this and no matter what I do I can't get rid of the white bg. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[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] Re: set node selected on a tree

2006-05-22 Thread stacey
I hacked a example from the docs. Looks like it works. ?xml version=1.0 encoding=utf-8? !-- Tree control example. -- mx:Application xmlns:mx=http://www.adobe.com/2006/mxml mx:Script ![CDATA[ import mx.controls.List; import mx.collections.ICollectionView; import mx.collections.*;

Re: [flexcoders] Tree inside of Datagrid

2006-05-22 Thread stacey
have you tried making a custom listRenderer and have that be a component that extends hbox and put the tree in that? Hi Everyone, Wondering if anyone has been able to put a tree control inside of a datagrid control.nbsp; I'm working with Beta3. Any ideas on this is greatly

RE: [flexcoders] DataGrid cell edit and Row color problem

2006-05-22 Thread stacey
I think you need to have your renderer implement one of the interfaces like mx.controls.listClasses.IDropInListItemRenderer but not 100 percent sure. it might give you somewhere to look.. I assume you are not using Flex 2 as I am pretty sure setPropertiesAt is no longer supported. But

Re: [flexcoders] [BETA3] I am still having a problem.

2006-05-22 Thread stacey
Use the dataDescriptor for the tree- here is an example from some base code i posted earlier about selecting a tree node item - but the jist of it is : var xm:ITreeDataDescriptor=myTree.dataDescriptor; xm.addChildAt(treeData.node.node[0], node label='BitchWhoCodes'/,0); FULL CODE FOLLOWS :)

[flexcoders] Changing the date on my system screwed up my Flex beta

2006-05-14 Thread stacey
I was looking at dates via my date and time properties and I must have applied a new date at some point because now when I go to start my flex beta 3 it starts up , asks for a serial number ( like they all do ) but totally cacks out. Anyone from abobe tell me how to fix this ( seeing that

Re: [flexcoders] Flex 2: Context Menu ... How To?

2006-03-26 Thread stacey
There are good examples in the docs for this. I haven't tested this code but generally you can do something like --- myItem.contextMenu=generateContextMenu();// set the context menu // generate the context menu public function generateContextMenu():ContextMenu{ var menu:ContextMenu=new

Re: [flexcoders] Yahoo! Maps API

2006-03-25 Thread stacey
didn't see any code posted,however that error suggests that it can't find the class. clean the project and try again. Hello All, I'm trying to the Yahoo Maps API sample application up and running but all I get is an empty pane and two error messages: The error messages are identical:

Re: [flexcoders] Positioning Alert

2006-02-19 Thread stacey
Isn't centerPopUp a method of the PopUpManager? such as : PopUpManager.centerPopUp(myAlert); FYI, using myAlert.centerPopUp( blabla ) doesn't do the work either. alert! something's wrong with alert On 2/16/06, Daniel Cascais lt;[EMAIL PROTECTED]gt; wrote: gt; I'm trying to position an

RE: [flexcoders]Combobox feature?

2006-02-17 Thread Stacey Mulcahy
@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Stanislav Zayarsky Sent: Friday, February 17, 2006 2:31 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders]Combobox feature? Stacey, I mean empty that label dissapears. I haven't checked if selectedIndex returns -1. Ok, thanks

Re: [flexcoders] Datagrid questions...

2006-02-16 Thread stacey
2. You should be able to go something like var dgCol:DataGridColumn=new DataGridColumn(); myDG.addColumn(dgCol); I think you can pass the name of the column through the constructor - but just a wild guess - You can set the propes on the dgCol like editable and so forth.. HTH. I have two

RE: [flexcoders]Combobox feature?

2006-02-16 Thread stacey
Do you mean empty as in the label disappears? Or empty as in the selectedIndex returns -1? This is a feature. The List-based components, of which ComboBox is one, allow de-selection by Ctrl+click on a selected item. There are a few ways to workaround this (subclass the component,

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
in the beta which is coming soon. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stacey Mulcahy Sent: Wednesday, January 25, 2006 11:29 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Perhaps I'm challenged. Question

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] DragManager events as3

2006-01-23 Thread stacey
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 as3 class and not using MXML persay in combo with script

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