This is a discussion on How to convert Decimal to Binary in Flash? within the Flash Actionscript Programming forums, part of the Web Development category; Hi , I am new to Flash Action Script Development Can anuone help me How to convert Decimal to Binary in ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| Hi , I am new to Flash Action Script Development Can anuone help me How to convert Decimal to Binary in Flash? |
|
#2
| |||
| |||
| Use this function to convert the values in decimal to binary. function dec2bin(num) { var bin = ""; while (num) { bin = num % 2 + bin; num = Math.floor(num / 2); } return (bin) ? bin : 0; } |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How do I convert a Number into a String with exactly 2 decimal places? | itbarota | HTML, CSS and Javascript Coding Techniques | 2 | 10-26-2007 04:22 AM |
| Development using Binary? | prasannavigneshr | Technology BUZZzzzzz | 12 | 08-06-2007 09:11 AM |
| Decimal to any number system | kbala | Adobe Flex Programming | 3 | 07-30-2007 12:49 AM |
| How to convert hexadecimal value to rgb value in flash? | kingmaker | Flash Actionscript Programming | 1 | 07-24-2007 05:01 AM |
| How can i convert integers to binary or hexadecimal? | prasath | C and C++ Programming | 1 | 07-20-2007 06:31 AM |
Our Partners |