turn negitive number into positive

Ask a Question related to Macromedia Director Lingo, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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 ...
    2. 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
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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...
    > 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
    >
    >

    Bobby Tan Guest

  4. #3

    Default 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...
    > 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
    >
    >

    JPrice Guest

  5. #4

    Default 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...
    > 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 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

  6. #5

    Default Re: turn negitive number into positive

    if number<0 then number=0-number


    Desmond22 webforumsuser@macromedia.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139