User Tag List

Results 1 to 6 of 6

Thread: Milliseconds

  1. #1
    No Products Registered

    Join Date
    Jul 2006
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Milliseconds

    Can anyone tell me how to get seconds/minutes from milliseconds? I should also want to know how get the output not like 100000ms : 100secs 1min, I'd like to know how to get: 100000ms : 40secs 1min.
    Thanks

  2. #2
    No Products Registered

    Join Date
    Jul 2006
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Milliseconds

    Can anyone tell me how to get seconds/minutes from milliseconds? I should also want to know how get the output not like 100000ms : 100secs 1min, I'd like to know how to get: 100000ms : 40secs 1min.
    Thanks

  3. #3
    Clickteam Clickteam
    Anders's Avatar
    Join Date
    Jun 2006
    Location
    Denmark, Århus
    Posts
    3,456
    Mentioned
    5 Post(s)
    Tagged
    1 Thread(s)

    Re: Milliseconds

    Try this:

    Str$((Milliseconds/1000/60) mod 60)+"mins "+Str$((Milliseconds/1000) mod 60)+"secs"

    You can easily expand it to use hours and days (even though MMF2 doesn't seem to be able to calculate with this high values.)

  4. #4
    Clickteam Clickteam
    Anders's Avatar
    Join Date
    Jun 2006
    Location
    Denmark, Århus
    Posts
    3,456
    Mentioned
    5 Post(s)
    Tagged
    1 Thread(s)

    Re: Milliseconds

    Try this:

    Str$((Milliseconds/1000/60) mod 60)+"mins "+Str$((Milliseconds/1000) mod 60)+"secs"

    You can easily expand it to use hours and days (even though MMF2 doesn't seem to be able to calculate with this high values.)

  5. #5
    No Products Registered

    Join Date
    Jul 2006
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Milliseconds

    I've been stuck with that problem for ages.
    BIG THANKS!

  6. #6
    No Products Registered

    Join Date
    Jul 2006
    Posts
    7
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Milliseconds

    I've been stuck with that problem for ages.
    BIG THANKS!

Similar Threads

  1. Calculating milliseconds?
    By mobichan in forum iOS Export Module Version 2.0
    Replies: 8
    Last Post: 5th March 2013, 07:44 PM
  2. time in milliseconds? Is possible
    By daniele in forum Multimedia Fusion 2 - Technical Support
    Replies: 4
    Last Post: 12th February 2009, 10:56 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
  •