TADS
22-02-2008 00:12:01
hi im new to this forum well posting on it... i have a problem with a button showing OVER a image it hides behind the image and cant work it out how to correct this any help would be gr8
im using the 0.9.7 pre release QuickGUI
the TEXT shows over the image just not the button
that how the button is set up and this works fine without the image ie: if i just have the blue ogre window....
i cant seam to set a ZOrder on this either
i hope i have given enuff info of my problem
thanks in advance for any help i get i know everyone is busy
TADS
im using the 0.9.7 pre release QuickGUI
//Create a 'Start Race' button.
startRaceButton = mainMenuSheet->createButton();
startRaceButton->setPosition(650,550);//(Width,Height)
startRaceButton->setWidth(100);
startRaceButton->setHeight(50);
startRaceButton->setText("Start");
startRaceButton->addEventHandler(QuickGUI::Widget::EVENT_MOUSE_BUTTON_UP, &GUImanager::startRace, this);
the TEXT shows over the image just not the button
that how the button is set up and this works fine without the image ie: if i just have the blue ogre window....
i cant seam to set a ZOrder on this either
i hope i have given enuff info of my problem
thanks in advance for any help i get i know everyone is busy
TADS