-
Changing Integer to Hex Issues
Ok so I am really new to action script but not sure why this would not work.
var blah = 48387;
var blah2 = blah.toString(16);
var blah3 = blah2.toString(16);
trace(blah)
trace(blah2)
trace(blah3)
blah2 & blah3 output the same value to me.
Basically what I want to do here is this:
take 48387 turn this to a hexadecimal
Take Hexadecimal and turn that into another hexidecimal.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|