Ask a Question related to Macromedia Director Lingo, Design and Development.
-
Shane #1
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
based on the users system info. I am already using the floatPrecision
command to get rid of the decimal values, all I need now is to make sure it
is positive. I briefly tried messing with the integer command, but had no
luck.
Thanks,
Shane
Shane Guest
-
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 ... -
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 -
Spamassassin False positive increase
Recently, The spam I receive has add a Paragraph of non-related. and it keep kicking Those word are legimest and we use everyday. Therefore, the... -
Site and component that turn IP number into www.sitename.com?
Is there a site where I can enter an IP number and get the URL name, for example 123.234.34.55 ->www.google.com Also, I know there are custom... -
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... -
Bobby Tan #2
Re: turn negitive number into positive
how about:
if number < 0 then number = number * -1
"Shane" <shoffa@firstgencom.com> wrote in message
news:bg5vks$ivb$1@forums.macromedia.com...it> 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
> based on the users system info. I am already using the floatPrecision
> command to get rid of the decimal values, all I need now is to make sure> is positive. I briefly tried messing with the integer command, but had no
> luck.
>
> Thanks,
> Shane
>
>
Bobby Tan Guest
-
JPrice #3
Re: turn negitive number into positive
Absolute value:
abs( numeric expression )
"Shane" <shoffa@firstgencom.com> wrote in message
news:bg5vks$ivb$1@forums.macromedia.com...it> 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
> based on the users system info. I am already using the floatPrecision
> command to get rid of the decimal values, all I need now is to make sure> is positive. I briefly tried messing with the integer command, but had no
> luck.
>
> Thanks,
> Shane
>
>
JPrice Guest
-
Shane #4
Re: turn negitive number into positive
Awesome! Thanks. Both suggestions worked. Although I like the ABS command.
Less code.
Thanks,
Shane
"JPrice" <jchanprice@netzero.net> wrote in message
news:bg60vo$lvs$1@forums.macromedia.com...number> Absolute value:
> abs( numeric expression )
>
>
> "Shane" <shoffa@firstgencom.com> wrote in message
> news:bg5vks$ivb$1@forums.macromedia.com...> > 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 serialno> it> > based on the users system info. I am already using the floatPrecision
> > command to get rid of the decimal values, all I need now is to make sure> > is positive. I briefly tried messing with the integer command, but had>> > luck.
> >
> > Thanks,
> > Shane
> >
> >
>
Shane Guest
-
Desmond22 webforumsuser@macromedia.com #5
Re: turn negitive number into positive
if number<0 then number=0-number
Desmond22 webforumsuser@macromedia.com Guest



Reply With Quote

