GuiTabBookProfile bitmap problems?
by Greg Bassett · in Game Design and Creative Issues · 01/30/2007 (2:08 pm) · 6 replies
Here is the snippet from the defaultprofiles.cs
if( !isObject(GuiTabBookProfile) ) new GuiControlProfile (GuiTabBookProfile)
{
fillColor = "255 255 255";
fillColorHL = "64 150 150";
fillColorNA = "150 150 150";
fontColor = "0 0 0";
fontColorHL = "32 100 100";
fontColorNA = "0 0 0";
justify = "center";
bitmap = "./darkTab";
tabWidth = 64;
tabHeight = 24;
tabPosition = "Top";
tabRotation = "Horizontal";
tab = true;
cankeyfocus = true;
};
if( !isObject(GuiTabPageProfile) ) new GuiControlProfile (GuiTabPageProfile)
{
bitmap = "./darkTabPage";
tab = true;
};
However when I create a tab book in GUI, the bitmaps defined are never displayed on the tabs?
Help!
Thanks in advance!
Greg
if( !isObject(GuiTabBookProfile) ) new GuiControlProfile (GuiTabBookProfile)
{
fillColor = "255 255 255";
fillColorHL = "64 150 150";
fillColorNA = "150 150 150";
fontColor = "0 0 0";
fontColorHL = "32 100 100";
fontColorNA = "0 0 0";
justify = "center";
bitmap = "./darkTab";
tabWidth = 64;
tabHeight = 24;
tabPosition = "Top";
tabRotation = "Horizontal";
tab = true;
cankeyfocus = true;
};
if( !isObject(GuiTabPageProfile) ) new GuiControlProfile (GuiTabPageProfile)
{
bitmap = "./darkTabPage";
tab = true;
};
However when I create a tab book in GUI, the bitmaps defined are never displayed on the tabs?
Help!
Thanks in advance!
Greg
Richard Young
Anybody have any ideas why my tab bitmaps don't display properly?