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
  • 915 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
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.

March 21, 2012

i dont' see where you're calling decimalToBinary().


Hi Kglad,

Thanks for your support in this query but I decided to change this conversion as Ive implemented another conversion code into my application using AS 3.0. Thanks for your support again and sorry for any inconvience caused as I will use this forum shortly again for any help needed.

Thanks Again

AIQBAL777