User Tag List

Results 1 to 6 of 6

Thread: Get Duration in Minutes; Seconds?

  1. #1
    Clicker Fusion 2.5 Developer

    Join Date
    Aug 2006
    Location
    Colorado
    Posts
    79
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Get Duration in Minutes; Seconds?

    Hey all,

    I started working on a simple music player sometime at the end of 2006, but I never really got too far. Now, I plan to finish it, but I have a couple of questions.

    First off, is there anyway to have a timer that actually goes off the duration of the song in question? It seems to go my milliseconds, and I can get it to show each second pass by using:

    Always
    -Set Counter: Set Counter to ( "Direct Show" ) / 1000

    Thing is, once it passes 60, it keeps going. I want it to make it look like a minute once it hits 60.

    Secondly, is there any way of showing ID3 tag info as a text string?

    Finally, any way to make a good progress bar?

    Thanks in advance guys.

    Jesse~

  2. #2
    Clicker Fusion 2.5 (Steam)Fusion 2.5 Developer (Steam)Universal Windows Platform Export Module (Steam)

    Join Date
    Jul 2006
    Posts
    2,023
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Get Duration in Minutes; Seconds?

    progress bar object ?
    Or if you mean a slider progress bar, custom scroll bar object

  3. #3
    No Products Registered

    Join Date
    Oct 2006
    Location
    Sweden
    Posts
    1,141
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Get Duration in Minutes; Seconds?

    Make a string instead of a counter and set it to:
    str$(timer / 3600000) + ":" + left$("00",2-len(str$((timer / 60000) mod 60))) + str$((timer / 60000) mod 60) + ":" + left$("00",2-len(str$((timer / 1000) mod 60))) + str$((timer / 1000) mod 60)
    (looks kinda complex :P)
    Replace timer with whatever expression you use to get the song time

  4. #4
    Clicker Fusion 2.5 Developer

    Join Date
    Aug 2006
    Location
    Colorado
    Posts
    79
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Get Duration in Minutes; Seconds?

    Thanks Werbad.

    neat_Kliker2, guess I should have been more specific, but I typed it up in a rush because I was lacking sleep.

    I mean like a seek marker. Anyway to get that done? if so, that'd be pretty awesome.

    Also, it seems that ID3 tag info can't be gathered, correct?

    Jesse~

  5. #5
    No Products Registered

    Join Date
    Oct 2006
    Location
    Sweden
    Posts
    1,141
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Get Duration in Minutes; Seconds?


  6. #6
    Clicker Fusion 2.5 Developer

    Join Date
    Aug 2006
    Location
    Colorado
    Posts
    79
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: Get Duration in Minutes; Seconds?

    Quote Originally Posted by Werbad
    Didn't know one existed, thanks! 8D

    Well, this should be MUCH easier. :]

    Jesse~

Similar Threads

  1. Flash duration
    By timcclayton in forum Multimedia Fusion 2 - Technical Support
    Replies: 5
    Last Post: 1st November 2010, 12:56 AM
  2. Recording minutes and seconds
    By AndyCapple123 in forum Multimedia Fusion 2 - Technical Support
    Replies: 6
    Last Post: 13th August 2010, 09:59 AM
  3. Mili seconds = seconds ?
    By Johnny in forum Multimedia Fusion 2 - Technical Support
    Replies: 3
    Last Post: 16th November 2009, 07:30 PM
  4. Seconds to Days, Hours, Minutes and seconds
    By dingdong in forum Multimedia Fusion 2 - Technical Support
    Replies: 1
    Last Post: 1st April 2007, 07:30 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
  •