12.06.2013, 13:37
I converting color to hex code using:
new color = 0xBB9911AA;
format(string,sizeof(string),"{%06x}nice color",color >>> 8 );
result is:
"{BB9911}nice color"
i need:
"{BB9911AA}nice color"
How to do to get there display parameter transparency (alpha prarametr) ?
new color = 0xBB9911AA;
format(string,sizeof(string),"{%06x}nice color",color >>> 8 );
result is:
"{BB9911}nice color"
i need:
"{BB9911AA}nice color"
How to do to get there display parameter transparency (alpha prarametr) ?