Skip to main content
March 20, 2012
Question

Hi I would like to know if you can convert decimal to binary using actionscript 3.0?

  • March 20, 2012
  • 1 reply
  • 916 views

Hi I would like to know if you can convert decimal to binary using actionscript 3.0?

This topic has been closed for replies.

1 reply

kglad
Community Expert
Community Expert
March 20, 2012

use:

function decimalToBinary(n:Number):String{

return n.toString(2);

}

March 20, 2012

Hi Ive used this code but its not worked what I am trying to do is input a decimal value into an input textbox to enter this and return the binary conversion value in another input textbox. Please let me know if you can still help.

kglad
Community Expert
Community Expert
March 20, 2012

there are no issues as long as your treat the binary as a string, not a number.