User Tag List

Results 1 to 2 of 2

Thread: Displaying Large Numbers With Symbols

  1. #1
    Clicker Fusion 2.5

    Join Date
    Nov 2017
    Posts
    3
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Displaying Large Numbers With Symbols

    I'm trying to display large numbers with symbols/letters. After my counter goes from 9,999 to 10,000 I would like to display as 10k. Any help is greatly appreciated. Thank you!

  2. #2
    Clicker Fusion 2.5 DeveloperAndroid Export ModuleHTML5 Export ModuleiOS Export Module
    Fusion 2.5 (Steam)
    schrodinger's Avatar
    Join Date
    Nov 2014
    Posts
    3,159
    Mentioned
    28 Post(s)
    Tagged
    1 Thread(s)
    you could use a string object to display the counter,
    and force its output with custom rules basing on your needs

    i.e.:

    always
    >>> set string to str$(counter)

    counter >= 10000
    >>> set string to str$(counter/1000) + "k"

    etc. etc.

Similar Threads

  1. Android wont calculate large numbers?
    By diefox in forum Android Export Module 2.5
    Replies: 2
    Last Post: 7th July 2016, 08:21 PM
  2. How can i deal with large numbers?
    By jn2002dk in forum Fusion 2.5
    Replies: 19
    Last Post: 21st November 2014, 11:53 AM
  3. Replies: 1
    Last Post: 8th October 2013, 06:15 AM
  4. Optimization Tips for Large Numbers of Objects
    By redpandagames in forum SWF/Flash Export Module Version 2.0
    Replies: 3
    Last Post: 20th May 2012, 09:48 AM
  5. Display of large numbers in MMF...
    By bockert in forum Multimedia Fusion 2 - Technical Support
    Replies: 0
    Last Post: 28th February 2012, 05:58 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
  •