hey!
i have got a problem concerning the latest blitzmax 1.30 and maxgui 1.30. i try to change the color of my textareatext, but it does not work with _every_ color. "default" colors like red, green and blue work fine, the rest is still black. here is an example:
i am using linux.
i have got a problem concerning the latest blitzmax 1.30 and maxgui 1.30. i try to change the color of my textareatext, but it does not work with _every_ color. "default" colors like red, green and blue work fine, the rest is still black. here is an example:
Import MaxGui.Drivers Local window:TGadget = CreateWindow("Test", 0, 0, 500, 500) Local text:TGadget = CreateTextArea(0, 0, 490, 490, window) SetTextAreaText text, "Test" 'FormatTextAreaText text, 255, 0, 0, Null 'this one works....red text color FormatTextAreaText text, 250, 250, 100, Null ' -> black text color...why? Repeat Select WaitEvent() Case EVENT_WINDOWCLOSE End End Select Forever
i am using linux.