User Tag List

Page 2 of 2 FirstFirst 1 2
Results 11 to 13 of 13

Thread: set global value range

  1. #11
    No Products Registered

    Join Date
    Nov 2006
    Location
    San Francisco, USA
    Posts
    34
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: set global value range

    much clearer now thanks!

    it seems a little backwards though. why is it defining the minimum when its adding (or max when subtracting)? I would assume min for subtracting and max for adding.

  2. #12
    Clicker Multimedia Fusion 2 Developer

    Join Date
    Jun 2006
    Location
    Darlington, UK
    Posts
    3,298
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: set global value range

    You ask it to choose the highest out of 0 and your value, so if your value is above 0 then yours is highest, and if yours is less than 0 then 0 is highest. Like this:
    Code:
    Your value: -2 -1  0  1  2  3
    Zero:        0  0  0  0  0  0
    Max:         0  0  0  1  2  3
    If you do min against 10 then you get this:
    Code:
    Your value:  7  8  9 10 11 12
    Ten:        10 10 10 10 10 10
    Min:         7  8  9 10 10 10
    [size:8pt](Edited by Joshtek for clarity)[/size]

  3. #13
    No Products Registered

    Join Date
    Nov 2006
    Posts
    199
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: set global value range

    Oh, thanks for explaining that Dynasoft. I think that actually makes sense now.

Page 2 of 2 FirstFirst 1 2

Similar Threads

  1. Range of an Alterable Value
    By LB in forum Articles
    Replies: 9
    Last Post: 25th June 2011, 02:07 AM
  2. Range Handler
    By Phi in forum Widgets
    Replies: 1
    Last Post: 12th May 2011, 02:02 AM
  3. Mirror a value within a range
    By Nifflas in forum Multimedia Fusion 2 - Technical Support
    Replies: 5
    Last Post: 21st November 2010, 01:28 PM
  4. Events and Range?
    By ad in forum Multimedia Fusion 2 - Technical Support
    Replies: 3
    Last Post: 21st February 2010, 09:38 PM
  5. Checking if in range
    By MechatheSlag in forum Multimedia Fusion 2 - Technical Support
    Replies: 12
    Last Post: 9th September 2006, 03:10 AM

Posting Permissions

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