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.