[flexcoders] default Image dimensions

2008-02-04 Thread Devin Holloway
Normally, when using the Image class, if you omit the dimensions, Flex will default the image to its real width/height. However, I'm running into a situation in that Flex is defaulting the dimensions to 0,0 (if omitting explicit dimensions). Has anyone else ever encounted this issue? As for

[flexcoders] pass extra data to event listener

2007-01-20 Thread Devin Holloway
Currently i'm using this code: . private var _contactConfirmRemove:Contact; private function removeContact_listener(event:ContactEvent):void { var contact:Contact = event.contact; this._contactConfirmRemove =

[flexcoders] ComboBox ItemEditor

2007-01-12 Thread Devin Holloway
I'm using combobox as a dropin item editor in a datagrid. I don't like how many steps it takes to edit a cell... 1: click the cell (renderer turns into editor) 2: click the editor (combobox drops down) 3: click the desired selection (combobox closes) 4: click outside or tab-out to convert the

[flexcoders] Re: Minimized Panel

2007-01-12 Thread Devin Holloway
The Flex2:Training From the Source book has you develop an application that has panels with minimize/maximize buttons. --- In flexcoders@yahoogroups.com, Pavel Zabelin [EMAIL PROTECTED] wrote: Hi all! People have you any idea how to develop Panel that have minimize functionality?

[flexcoders] ComboBox itemEditor

2007-01-12 Thread Devin Holloway
I'm using a combobox as a drop-in itemeditor in a datagrid. Whenever they make a selection, I don't like how the user has to click outside or tab-out to get the renderer to replace the editor and dispatch the itemEditEnd event. I'd prefer that once they make a selection in the combobox, it closes

[flexcoders] Skin MenuBar

2007-01-09 Thread Devin Holloway
I have a menubar with just one item that I'm trying to skin with a small .gif image. The skin image has a size of 10w X 9h. I used the css backgroundSkin selector to apply the image and then resized the menubar component to 10w X 9h. The skin looks perfect, except when I try to click the menubar

[flexcoders] Re: titlewindow reveals too early

2007-01-09 Thread Devin Holloway
maybe pop open the title window in the result event of the data loading? --- In flexcoders@yahoogroups.com, bghoward3 [EMAIL PROTECTED] wrote: is there a way i can stall the tile window opening until the items in it have full drawn? my title window contains a combobox component populated

[flexcoders] Customized NumericStepper

2007-01-05 Thread Devin Holloway
I want to make a few changes to how the numericstepper works. For instance, when they click the up button and reach the maximum, I want it to flip down to the minium, and vice versa. There's just a small bit of code in the checkValidValue() function that I need to change. However, if I try to

[flexcoders] ButtonBar labelPlacement

2006-08-28 Thread Devin Holloway
I've noticed that when using the ButtonBar, that in the dataProvider, specifying normal Button attributes (such as labelPlacement, overIcon, etc.) have no effect. Is it possible to easily control these properties of the individual buttons? Or must one resort to a bunch of buttons in an HBox?

[flexcoders] passing data to CF and back

2006-08-04 Thread Devin Holloway
I have an ArrayCollection used as the dataProvider for a datagrid. Submitting a form adds an item to the ArrayCollection (and therefore the grid). I'm also detecting changes to the ArrayCollection using the CollectionEvent.COLLECTION_CHANGE event listener. When detecting an ADD, for example, I

[flexcoders] tree resize to content

2006-07-31 Thread Devin Holloway
I've noticed that the default behavior of the tree is to show a vertical scroll bar once you open enough nodes that it becomes taller then tree dimensions (even if you do not specify a height). Is it possible to have the tree resize it's height to never show a vert scroll bar... without just

[flexcoders] Re: Panel padding

2006-07-29 Thread Devin Holloway
that works well with width=100% --- In flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com , Devin Holloway devin@ wrote: that doesn't work either. it widens the conents inside, but clips them so that the same left/right padding amount exists. the weird thing

[flexcoders] Panel padding

2006-07-28 Thread Devin Holloway
I have a panel with a datagrid in it. I don't want any space around the datagrid and the panel sides, but can't seem to get rid of it. I set all the padding option on the panel to 0, and it does nothing -- Flexcoders Mailing List FAQ:

[flexcoders] Re: Panel padding

2006-07-28 Thread Devin Holloway
/mx:Panel /mx:Canvas --- In flexcoders@yahoogroups.com, Tim Hoff [EMAIL PROTECTED] wrote: Hi Devin, Try setting the Panel's borderThickness to 0. -TH --- In flexcoders@yahoogroups.com, Devin Holloway devin@ wrote: I have a panel with a datagrid in it. I don't want any

[flexcoders] Re: Panel padding

2006-07-28 Thread Devin Holloway
@yahoogroups.com, Devin Holloway devin@ wrote: I have a panel with a datagrid in it. I don't want any space around the datagrid and the panel sides, but can't seem to get rid of it. I set all the padding option on the panel to 0, and it does nothing -- Flexcoders Mailing List FAQ

[flexcoders] Re: Panel padding

2006-07-28 Thread Devin Holloway
% --- In flexcoders@yahoogroups.com, Devin Holloway devin@ wrote: that doesn't work either. it widens the conents inside, but clips them so that the same left/right padding amount exists. the weird thing is that the paddingTop behaves as it should, it's just the left/right padding that's

[flexcoders] Re: panel header colors alpha

2006-07-22 Thread Devin Holloway
xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute mx:Panel x=10 y=10 headerColors=[#ff,#ff] width=386 height=299 borderAlpha=1 /mx:Panel /mx:Application - Original Message - From: Devin Holloway [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday

[flexcoders] Re: Icons in menu - not working

2006-07-20 Thread Devin Holloway
I don't quite understand this solution. Mind showing a more complete code example? thanks --- In flexcoders@yahoogroups.com, Kelly Birr [EMAIL PROTECTED] wrote: I found my problem. It appears that the menu cannot bind to static vars for images. I solved the problem by specifying { public

[flexcoders] Re: Icons in menu - not working

2006-07-20 Thread Devin Holloway
, but I gather this is not natively built-in and would require some sort of workaround? --- In flexcoders@yahoogroups.com, Devin Holloway [EMAIL PROTECTED] wrote: I don't quite understand this solution. Mind showing a more complete code example? thanks --- In flexcoders@yahoogroups.com, Kelly

[flexcoders] Re: Where to go to get flex builder 2 assistance?

2006-03-24 Thread Devin Holloway
I'm having the same problem. no matter what directory I try to browse to, I get the, Server root is invalid error --- In flexcoders@yahoogroups.com, Doug Hughes [EMAIL PROTECTED] wrote: Hi all, Does this list's topic encompass questions related to the Flex Builder 2 and CF/Flex

[flexcoders] no more then one icon per menu

2005-07-23 Thread Devin Holloway
I was adding icons to the menus in the MenuBar. mx:Script ![CDATA[ [Embed(source=icons/printpreview.gif)] var printpreview:String; [Embed(source=icons/print.gif)] var print:String; ]] /mx:Script mx:MenuBar mx:dataProvider mx:XML menuitem label=File menuitem label=Print Preview

[flexcoders] Re: Odd behaviors with List controls

2005-07-22 Thread Devin Holloway
appropriately. Sorry to not be of more help, Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Devin Holloway Sent: Thursday, July 21, 2005 3:45 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Odd

[flexcoders] Re: Button toggle clarification

2005-07-22 Thread Devin Holloway
around the toggled button when you click. Its same as the halo you see in mouseover state. -Ashish From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Devin Holloway Sent: Friday, July 22, 2005 1:28 PM To: flexcoders

[flexcoders] Re: Button toggle clarification

2005-07-22 Thread Devin Holloway
. -Ashish From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Devin Holloway Sent: Friday, July 22, 2005 2:28 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Button

[flexcoders] reskinning a list control

2005-07-22 Thread Devin Holloway
I'd like to change a few visual aspects of the list control. In the normal state I'd like the rows to have a gradient background. In the highlighted and selected state I'd like to change the solid background colors. I've never done this, and I've very little experience with flash/actionscript

[flexcoders] Re: Odd behaviors with List controls

2005-07-21 Thread Devin Holloway
. 4) Since you've added more content since your post I can't reproduce this. Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Devin Holloway Sent: Friday, July 15, 2005 9:07 AM To: flexcoders@yahoogroups.com

[flexcoders] How much do you charge for Flex development?

2005-07-20 Thread Devin Holloway
As a CF developer, I've been recently been putting more serious thought into becoming a Flex developer. It would be a long time before the company I work for could move into this direction, if ever. So I'd have to become a contractor or find a Flex position at another company. But I'm

[flexcoders] Re: NumericStepper change event executes on startup

2005-07-15 Thread Devin Holloway
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Devin Holloway Sent: Thursday, July 14, 2005 10:47 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] NumericStepper change event executes on startup I have a web service that executes

[flexcoders] Odd behaviors with List controls

2005-07-15 Thread Devin Holloway
I've been noticing a lot of odd behavior with the List and TileList controls. The application I'm working on is located at: http://default.devinholloway.com/flex/capoeira/ You should see the list of titles on the left hand side. If you scroll the product list all the way down, you'll see an

[flexcoders] NumericStepper change event executes on startup

2005-07-14 Thread Devin Holloway
I have a web service that executes on application initilization. When using the Network Service monitor in FlexBuilder, I noticed that both the send and result filters for the web service showed up twice. At first I assumed this was a bug with the Network Service monitor. But sometimes the web

[flexcoders] Display a list of item attributes

2005-07-06 Thread Devin Holloway
I'm using the Amazon.com web service to display a list of products. The products returned populate a TileList. The selection of a product (the selection of a TileList cell) is bound to a model holding the currently selected product. mx:Model