as question!

Out of context: Reply #48

  • Started
  • Last post
  • 70 Responses
  • joyride0

    ok, this is for the hundreds:

    if (hundreds. toString().length==1) {
    var newHundreds:String = hundreds. toString().concat("", "00");
    trace(newHundreds);
    hundreds = newHundreds
    }else if (hundreds.toString().length==2){
    var newHundreds:String = hundreds.toString().concat("", "0");
    trace(newHundreds);
    hundreds = newHundreds
    }

    kinda ghetto but it gets the 00 in and the 0 in case its .02 you might need to do it for the thousands too

View thread