User Tag List

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

Thread: Every 100th

  1. #11
    No Products Registered

    Join Date
    Jun 2006
    Posts
    323
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Every 100th

    I suck at math. I do not understand the uses for bit-wise jumbotronics.

  2. #12
    No Products Registered

    Join Date
    Jun 2006
    Posts
    150
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Every 100th

    []I suck at math. I do not understand the uses for bit-wise jumbotronics. [/]
    You can use it to for example split a global value into different flags using the bits that it consists of.

    Code:
    -Global Value A = Global Value A OR 2 pow Flag
    would set the bit to 1, ie enable the flag.

    And this disables a flag
    Code:
    -Global Value A = Global Value A XOR 2 pow Flag
    Code:
    +Global Value A OR 2 pow Flag == 1
    will return true if the bit is set, ie the flag is enabled.

    Flag is the number of the flag you want to use.

    It may seem too complicated to use in MMF and it probably is, but it's an application <img src="/center/images/graemlins/wink.gif" alt="" />

  3. #13
    No Products Registered

    Join Date
    Aug 2006
    Location
    The Woodlands, TX
    Posts
    29
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Every 100th

    I am sure I am going to show my, well you know what, but here it goes. Turboferret, your statements here are very interesting and you have already reminded me of mod so please take this as intened, to point out just how stupid a programmer (me) can be! hehe
    Can't you get the same thing just by using the "is flag on" condition?

    thanks,

  4. #14
    No Products Registered

    Join Date
    Jun 2006
    Posts
    150
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Every 100th

    Yeah you could do that if you want to use an object. There are no global flags though <img src="/center/images/graemlins/smile.gif" alt="" />

Page 2 of 2 FirstFirst 1 2

Similar Threads

  1. Rounding to the nearest 10th, 100th
    By ffomega in forum Multimedia Fusion 2 - Technical Support
    Replies: 2
    Last Post: 21st February 2013, 02:48 PM

Posting Permissions

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