Convert numeric literals to uint objects and output the string representations in base-16 (hexadecimal) format. : Uint : Data Type Flash / Flex / ActionScript examples


Flash / Flex / ActionScript examples » Data Type » Uint »

 

Convert numeric literals to uint objects and output the string representations in base-16 (hexadecimal) format.


 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        trace(new uint(25).toString(16))// Displays: 19
    }
  }
}
        



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


Flash / Flex / ActionScript examples

 Navioo Data Type
» Uint