[flexcoders] Stupid question: Adding dollars

2009-09-17 Thread Wally Kolcz
I must be having a moron-moment. I have dollar amounts in the database (45.32, 34.23, 50.25) and I want to look them and assign them to a Number variable. But it keeps coming up as NaN or empty. What am I missing here? [Bindable] public var medTotal:Number = 0; public function

Re: [flexcoders] Stupid question: Adding dollars

2009-09-17 Thread Howard Fore
In the debugger, does it show the values in the ArrayCollection members before you try to use the function? In other words can you trace the value assignment back to when the ArrayCollection is populated? -- Howard Fore, howard.f...@hofo.com The worthwhile problems are the ones you can really

re: [flexcoders] Stupid question: Adding dollars

2009-09-17 Thread Wally Kolcz
Figured it out. Forgot to wrap the cost in a Number() From: Wally Kolcz wko...@isavepets.com Sent: Thursday, September 17, 2009 8:10 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Stupid question: Adding dollars I must be having a moron-moment

[flexcoders] Stupid Question - Flex width and height

2009-01-12 Thread Wally Kolcz
This is probably a dumb question but... I am trying to do a Flex app primarily in AS. In the constuctor I am trying to create an ApplicationControlBar that is the same as this: mx:ApplicationControlBar right=5 left=5 top=55 id=mainACB / I am having a problem with trying to

Re: [flexcoders] Stupid Question - Flex width and height

2009-01-12 Thread Alan K
It would seem to me that Application.application.stage.width only exists when using the Flex framework. Without Flex your just dealing with the 'default' Flash display list. Alan On Jan 12, 2009, at 3:48 PM, Wally Kolcz wrote: Application.application.stage.width

Re: [flexcoders] Stupid Question - Flex width and height

2009-01-12 Thread Wesley Acheson
On Mon, Jan 12, 2009 at 9:48 PM, Wally Kolcz wko...@isavepets.com wrote: This is probably a dumb question but... I am trying to do a Flex app primarily in AS. In the constuctor I am trying to create an ApplicationControlBar that is the same as this: mx:ApplicationControlBar right=5 left=5

Re: [flexcoders] Stupid Question - Flex width and height

2009-01-12 Thread Wally Kolcz
Thanks, didn't know that! From: Wesley Acheson wesley.ache...@gmail.com Sent: Monday, January 12, 2009 2:08 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Stupid Question - Flex width and height On Mon, Jan 12, 2009 at 9:48 PM, Wally Kolcz

[flexcoders] Stupid question regarding sizing of mxml components

2008-07-12 Thread aduston1976
Hi, here is an easy one: mx:VBox width=200 height=300 mx:VBox minHeight=0 ... lots of stuff ... /mx:VBox mx:VBox ... lots of stuff ... /mx:VBox /mx:VBox When lots of

Re: [flexcoders] Stupid question regarding sizing of mxml components

2008-07-12 Thread Paul Andrews
- From: aduston1976 [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Sunday, July 13, 2008 12:17 AM Subject: [flexcoders] Stupid question regarding sizing of mxml components Hi, here is an easy one: mx:VBox width=200 height=300 mx:VBox minHeight=0 ... lots of stuff ... /mx:VBox mx:VBox

[flexcoders] Stupid question? Can I paint to RGB instead of RGBA?

2008-04-02 Thread Josh McDonald
Is there an easy way to paint to only the colour channels of a rendered UIComponent? As in, I don't want to change its shape, just the colour of a part of it. I'm picturing some sort of intermediate buffer and some sort of composition function perhaps? If there's no easy way, how does one get

[flexcoders] Stupid question regarding Alex Harui's Modules PPT

2008-03-04 Thread aduston1976
In Alex Harui's Modules powerpoint (http://blogs.adobe.com/aharui/360Flex2007/Modules.ppt/Modules.ppt) he explains the problem that can result when classes are defined in a module and then accessed from another module. In Slide 20 he shows one solution for shared code between modules: load the

RE: [flexcoders] Stupid question regarding Alex Harui's Modules PPT

2008-03-04 Thread Alex Harui
A module loaded into the main application domain cannot be unloaded. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of aduston1976 Sent: Tuesday, March 04, 2008 7:17 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Stupid question

RE: [flexcoders] Stupid question regarding Alex Harui's Modules PPT

2008-03-04 Thread Rick Winscot
] On Behalf Of Alex Harui Sent: Tuesday, March 04, 2008 1:10 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Stupid question regarding Alex Harui's Modules PPT A module loaded into the main application domain cannot be unloaded. _ From: flexcoders@yahoogroups.com [mailto

RE: [flexcoders] Stupid question regarding Alex Harui's Modules PPT

2008-03-04 Thread Alex Harui
PROTECTED] On Behalf Of Rick Winscot Sent: Tuesday, March 04, 2008 9:13 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Stupid question regarding Alex Harui's Modules PPT This is partially true. If the module is essentially a graphical component and is loaded manually (sans module loader

[flexcoders] Stupid question - get value of a textInput displayaspassword=true?

2007-12-03 Thread Josh McDonald
Ok, this is a stupid question I'm sure. But how the bejeesus do I get the value of a password textInput? -Josh -- This is crazy! Why are we talking about going to bed with Wilma Flintstone... She'll never leave Fred and we know it. :: Josh 'G-Funk' McDonald :: 0437 221 380 :: [EMAIL

RE: [flexcoders] Stupid question - get value of a textInput displayaspassword=true?

2007-12-03 Thread Tracy Spratt
: [flexcoders] Stupid question - get value of a textInput displayaspassword=true? Ok, this is a stupid question I'm sure. But how the bejeesus do I get the value of a password textInput? -Josh -- This is crazy! Why are we talking about going to bed with Wilma Flintstone... She'll never leave Fred and we

[flexcoders] Stupid question - get ready to throw fruit.

2007-08-29 Thread candysmate
I use a titleWindow popup with a datagrid from which the user makes a selection from a large database. When closed, does the selection datagrid ArrayCollection sit around in memory? If so, what is the best practice way of dealing with this please? Ok, take aim and

Re: [flexcoders] Stupid question - get ready to throw fruit.

2007-08-29 Thread Roman Protsiuk
Your popup can dispatch some event which will bring you the selection or you can store this info in the array collection values you are working with or... else. R. On 8/29/07, candysmate [EMAIL PROTECTED] wrote: I use a titleWindow popup with a datagrid from which the user makes a selection

Re: [flexcoders] Stupid question - get ready to throw fruit.

2007-08-29 Thread Peter Connolly
Have you tried defining the DataGrid dataProvider in the parent document and then refer to it as: myDataGrid.dataProvider=parentDocument.groovyArrayInParentDoc; That way the visual component is in the titleWindow and its dataProvider is in the parent (and therefore survives after the titleWindow

RE: [flexcoders] Stupid question - get ready to throw fruit.

2007-08-29 Thread Tracy Spratt
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of candysmate Sent: Wednesday, August 29, 2007 10:45 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Stupid question - get ready to throw fruit. I use a titleWindow popup with a datagrid from which the user makes a selection from

RE: [flexcoders] Stupid question - get ready to throw fruit.

2007-08-29 Thread Alex Harui
To: flexcoders@yahoogroups.com Subject: [flexcoders] Stupid question - get ready to throw fruit. I use a titleWindow popup with a datagrid from which the user makes a selection from a large database. When closed, does the selection datagrid ArrayCollection sit around in memory? If so, what is the best

[flexcoders] stupid question, CSS and XML

2006-06-09 Thread tonyx_788
Hi,anyone knows how i can make a specific text (in a textarea) boldhere is part of theXML*datosnombre dato="A orillas de una laguna."desc B353/B Libro de Edmundo Batres Ledón, B353/BRoque Ballinas Ballinas, B353/BFrancisco Fonz Chan, consta de 75 pp. La edición fue de 1,000

[flexcoders] Stupid Question, but driving me mad - TabBars

2005-10-26 Thread Steve Cox
Guys + Girls, Ive a tabbar on 3 separate forms inside a Tab Nav. Now the dataprovider for these is populated from a webservice, the issue Im having is setting the selectedIndex on the tabbars initially. Once the tabbar is created, the selectedindex works perfect. Setting the

RE: [flexcoders] Stupid Question, but driving me mad - TabBars

2005-10-26 Thread Tracy Spratt
@yahoogroups.com] On Behalf Of Steve Cox Sent: Wednesday, October 26, 2005 5:01 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Stupid Question, but driving me mad - TabBars Guys + Girls, Ive a tabbar on 3 separate forms inside a Tab Nav. Now the dataprovider for these is populated from

[flexcoders] Stupid Question

2005-04-18 Thread [EMAIL PROTECTED]
Sorry, can you help me? how i can do that my tx_bar have the focus when application will be init? Devis ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; themeColor=haloSilver backgroundColor=#FF xmlns=* initialize=initShop();

RE: [flexcoders] Stupid Question

2005-04-18 Thread Abdul Qabiz
/mx:HBox /mx:Application -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Sent: Monday, April 18, 2005 8:34 PM To: Flex Coders Subject: [flexcoders] Stupid Question Sorry, can you help me? how i can do that my tx_bar have the focus when

Re: [flexcoders] Stupid Question

2005-04-18 Thread [EMAIL PROTECTED]
@yahoogroups.com [mailto:[EMAIL PROTECTED] Sent: Monday, April 18, 2005 8:34 PM To: Flex Coders Subject: [flexcoders] Stupid Question Sorry, can you help me? how i can do that my tx_bar have the focus when application will be init? Devis ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx

RE: [flexcoders] Stupid Question

2005-04-18 Thread Abdul Qabiz
-Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Sent: Monday, April 18, 2005 9:39 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Stupid Question Hi Abdul, it's very strange i have put creatationComplete as below, but don't work