Turing's default GUI sucks and is the worst I have ever seen. I strongly suggest making your own buttons useing a box, oval, etc. Box is really easy with mousewhere. Have a look:
Quote:
%Simple rollover button in turing
%Variables for the mouse
var x,y,button : int
%The main loop
loop
mousewhere (x,y,button)
%unclicked button
if x < 100 or x > 200 or y > 200 or y < 100 then
drawfillbox (100,100,200,200,12)
elsif x >= 100 and x <= 200 and y >= 100 and y <= 200 then
drawfillbox (100,100,200,200,9)
elsif button = 1 and x >= 100 and x <= 200 and y >= 100 and y <= 200 then
drawfillbox (100,100,200,200,42)
%Other events you would want to occur after you click on the button would go here!
end if
end loop
Hope that helped.