Re: [flexcoders] Adding several NumericSteppers = Total

2008-01-13 Thread Paul Kukiel
oogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of JRBower > Sent: Friday, January 11, 2008 7:28 PM > To: flexcoders@yahoogroups.com > Subject: Re: [flexcoders] Adding several NumericSteppers = Total > > > > > Can someone help? > > I have 5 numericsteppers and

RE: [flexcoders] Adding several NumericSteppers = Total

2008-01-12 Thread Alex Harui
s.com Subject: RE: [flexcoders] Adding several NumericSteppers = Total Here's the code I have for returning the total to display in a Label. private function stepperSumFun( val1:int, val2:int, val3:int, val4:int, val5:int):String { return (val1+val2+val3+val4+val5).toString(); What I

Re: [flexcoders] Adding several NumericSteppers = Total

2008-01-12 Thread leds usop
Here's an updated version of that code that allows you to set the maximum value during runtime and automatically compensates if the current total is greater that the maximum allowable total set. Also, this compensates for instances that a number bigger than than the maximum allowable total is enter

Re: [flexcoders] Adding several NumericSteppers = Total

2008-01-11 Thread leds usop
you could use repeater component with numericsteppers as children and a text box for the sum instead. But i guess what you need is something more straightforward and simple like this: http://www.adobe.com/2006/mxml"; layout="absolute">

RE: [flexcoders] Adding several NumericSteppers = Total

2008-01-11 Thread Alex Harui
Did you try From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JRBower Sent: Friday, January 11, 2008 10:25 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Adding several NumericSteppers = Total Here's the code I

RE: [flexcoders] Adding several NumericSteppers = Total

2008-01-11 Thread JRBower
Friday, January 11, 2008 7:28 PM > To: flexcoders@yahoogroups.com > Subject: Re: [flexcoders] Adding several NumericSteppers = Total > > > > > Can someone help? > > I have 5 numericsteppers and I would like to be able to display their > total > in a sixth Numeric

RE: [flexcoders] Adding several NumericSteppers = Total

2008-01-11 Thread Alex Harui
: [flexcoders] Adding several NumericSteppers = Total Can someone help? I have 5 numericsteppers and I would like to be able to display their total in a sixth NumericStepper. ns01 + ns02 + ns03 + ns04 + ns05 = nsTotal06 How can I do this? Thanks, James -- View this message in context: http

Re: [flexcoders] Adding several NumericSteppers = Total

2008-01-11 Thread JRBower
Can someone help? I have 5 numericsteppers and I would like to be able to display their total in a sixth NumericStepper. ns01 + ns02 + ns03 + ns04 + ns05 = nsTotal06 How can I do this? Thanks, James -- View this message in context: http://www.nabble.com/Adding-several-NumericSteppers-%3D-