06-16-2023, 01:51 PM
Hi DSman
yes using the range of black color we get black color set to 100 alpha channel
But
we must do the same work on the foreground color of text ( white color)
so the complete command is
And from here my doubt starts:
if _SETALPHA works on all the image why does not do this work when we omit a range of color to say all colors into the picture?
yes using the range of black color we get black color set to 100 alpha channel
But
we must do the same work on the foreground color of text ( white color)
so the complete command is
Code: (Select All)
_SetAlpha 100, _RGBA32(0, 0, 0, 0) To _RGBA32(0, 0, 0, 255), S2 '<--- setting the second image grade of transparency (more than half transparent)
_SetAlpha 100, _RGBA32(255, 255, 255, 0) To _RGBA32(255, 255, 255, 255), S2
if _SETALPHA works on all the image why does not do this work when we omit a range of color to say all colors into the picture?