Yes, please allow labels to be opaque... transparency is causing me troubles. Perhaps a command setLabelTransparency or something.
Here's what happens when I port IonRay to BlueGUI 2.05:
The line number labels don't become transparent to the panel below, but other apps and numbers!
[EDIT]
I changed them to labels and now it works, so I guess labels being transparent is fine. But I still don't know why the text was messed up in the above picture, while some labels work.
[/EDIT]
[EDIT2]
Actually, my other labels are weird now too. They are either completely transparent or setGadgetColor isn't working on the text color of labels anymore. The documentation for setGadgetColor isn't quite what it should be, either. I was hopeful when it said that it affected radios etc., but it only affects their background color; the foreground remains black. So what I did previously was put labels over the text; now I'll have to put panels.
[/EDIT2]
[EDIT3]
Sorry for the double post etc. I've got everything working now, although by bypassing transparent labels by making a function to handle panels the same way:
function createOLabel(x as integer,y as integer,width as integer,height as integer,text$ as string,parent as integer)
returnval as integer
returnval = createPanel(x,y,width,height,parent)
setGadgetText returnval,text$
endfunction returnval
O is for opaque.
Thanks again for no wordwrap, it works wonderfully
. I still haven't been able to try all it's new and great features.
[/EDIT3]
-Xol
DBpro IonRay IDE: Demo 0.1.0.0 available!