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.

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

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

2008-07-12 Thread Paul Andrews
Have you tried setting the verticalScrollPolicy? If you want to refer to specific containers, give them an id so we can be sure which is being refered to. This might be helpful: http://livedocs.adobe.com/flex/3/html/help.html?content=containers_intro_4.html Paul - Original Message -

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

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

2007-12-03 Thread Tracy Spratt
Just the display is obscured. myTIPassword.text will return a clear string. Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh McDonald Sent: Monday, December 03, 2007 6:31 PM To: flexcoders@yahoogroups.com Subject:

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
Where is the ArrayCollection declared? selectedItem is a property of the dataGrid that has a reference to an item in the dataProvider. If the DG is gone, then so is the selectedItem Property. What exactly do you want to happen? Tracy From:

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

2007-08-29 Thread Alex Harui
The AC will only remain in memory if there is a reference to it from somewhere in the app. If the TW is gone, so should the DG, and therefore its reference to the AC. If the AC was loaded into a var in the main app it will stay around. So, it depends on how you wrote your code. Note that GC

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

2005-10-26 Thread Tracy Spratt
Creationcomplete of what component? Are you aware that the navigator components all use deferred instantiation by default, and the child components do not exist until a user first navigates to the view? If you think this might be the issue, you can, for testing purposes only (

RE: [flexcoders] Stupid Question

2005-04-18 Thread Abdul Qabiz
Hi, Call the initShop() function in creationComplete handler of Application like this... ##changedCode## ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; themeColor=haloSilver backgroundColor=#FF xmlns=* creationComplete=initShop();

Re: [flexcoders] Stupid Question

2005-04-18 Thread [EMAIL PROTECTED]
Hi Abdul, it's very strange i have put creatationComplete as below, but don't work, the TextInput border became bold but if i'm writing the TextInput don't work. Any idea? Devis Abdul Qabiz ha scritto: Hi, Call the initShop() function in creationComplete handler of Application like this...

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