Ask a Question related to Adobe Flash, Flex & Director, Design and Development.
-
Richard Atkins #1
Turning a negative number into a positive
Hi, how can I turn a number such as -5 into +5
e.g. I have a variable:
myVar = -5
how can I turn that into:
myVar = +5
I'm sure there's an easy way to turn a negative into a positive
Cheers
----------------------------------------------
[url]www.crazyrichie.net[/url]
Richard Atkins Guest
-
#39610 [NEW]: Number of return Modular_arithmetic is negative..
From: ocracy at msn dot com Operating system: windows PHP version: 4.4.4 PHP Bug Type: *General Issues Bug description: ... -
WebService Proxy Error: Positive number required
We are attempting to utilize a J2EE\IBM WSA webservice and on the oneway method call I get the following exception ... -
Negative image to positive (color) ????
I've scanned a color negative. On page 186 of the manual, it explains the INVERT feature, but states it only works for B&W negatives. Is it not... -
Converting a color negative .jpg to a color positive image .jpg in Photoshop Elements 2.0
My scanner will convert color photo negatives to a positive image which I can then adjust using Photoshop Elements. However, it is much faster to... -
turn negitive number into positive
I have a number being returned to me. What ever the number is, I need to transform it into a positive number. I'm trying to create a serial number... -
Jack #2
Re: Turning a negative number into a positive
aVar = -5;
trace(aVar);
bVar = Math.abs(aVar);
trace(bVar);
hth
"Richard Atkins" <richatkins88@yahoo.co.uk> wrote in message
news:c0ak3r$6nh$1@forums.macromedia.com...> Hi, how can I turn a number such as -5 into +5
>
> e.g. I have a variable:
>
> myVar = -5
>
> how can I turn that into:
>
> myVar = +5
>
> I'm sure there's an easy way to turn a negative into a positive
>
> Cheers
>
> ----------------------------------------------
>
> [url]www.crazyrichie.net[/url]
>
>
>
Jack Guest
-
Richard Atkins #3
Re: Turning a negative number into a positive
cheers jack,
I actually found if I do this it's even simpler:
myVar = -5
myVar = myVar*-1
myVar would then = +5
Rich
"Jack" <jackleaman@hotmail.com> wrote in message
news:c0aktj$7s8$1@forums.macromedia.com...> aVar = -5;
> trace(aVar);
> bVar = Math.abs(aVar);
> trace(bVar);
>
> hth
>
> "Richard Atkins" <richatkins88@yahoo.co.uk> wrote in message
> news:c0ak3r$6nh$1@forums.macromedia.com...>> > Hi, how can I turn a number such as -5 into +5
> >
> > e.g. I have a variable:
> >
> > myVar = -5
> >
> > how can I turn that into:
> >
> > myVar = +5
> >
> > I'm sure there's an easy way to turn a negative into a positive
> >
> > Cheers
> >
> > ----------------------------------------------
> >
> > [url]www.crazyrichie.net[/url]
> >
> >
> >
>
Richard Atkins Guest
-
Jack #4
Re: Turning a negative number into a positive
"Richard Atkins" <richatkins88@yahoo.co.uk> wrote in message
news:c0aujn$nm6$1@forums.macromedia.com...even simpler :-)> cheers jack,
>
> I actually found if I do this it's even simpler:
>
> myVar = -5
>
> myVar = myVar*-1
>
> myVar would then = +5
>
> Rich
>
aVar = Math.abs(-5); trace(aVar);
Math.abs is a built-in Math function that computes
and returns an absolute value for the number specified
hth
Jack Guest
-
Richard Atkins #5
Re: Turning a negative number into a positive
nice one, cheers
"Jack" <jackleaman@hotmail.com> wrote in message
news:c0b1g0$s9e$1@forums.macromedia.com...>
> "Richard Atkins" <richatkins88@yahoo.co.uk> wrote in message
> news:c0aujn$nm6$1@forums.macromedia.com...>> > cheers jack,
> >
> > I actually found if I do this it's even simpler:
> >
> > myVar = -5
> >
> > myVar = myVar*-1
> >
> > myVar would then = +5
> >
> > Rich
> >
> even simpler :-)
> aVar = Math.abs(-5); trace(aVar);
>
> Math.abs is a built-in Math function that computes
> and returns an absolute value for the number specified
>
> hth
>
>
Richard Atkins Guest



Reply With Quote

