- March 24, 2007
- 12,073
- 7,459
- Home Country
- Germany
- Moderator
- #121
when trying to add this new button to a skin in myTVGuide.xml, one of the lines from timeline jumps to the button position. i guess they share same id (60)? or am i doing something wrong?
Yes, tvgroup button uses id 60, it's label is id 61. I implemented this in Blue3/Wide as these id's where not used.
For what skin you have tried?
black & white 1080
there are no id's by that number in mytvguide.xml or common.panel.guide.xml (file imported from mytvguide.xml)..
in b&w i can see much more channels at once (more lines) than in blue3wide..
I don't think the control id's interfere:
Code:
private enum Controls
{
PANEL_BACKGROUND = 2,
SPINCONTROL_DAY = 6,
SPINCONTROL_TIME_INTERVAL = 8,
CHANNEL_IMAGE_TEMPLATE = 7,
CHANNEL_LABEL_TEMPLATE = 18,
LABEL_GENRE_TEMPLATE = 23,
LABEL_TITLE_TEMPLATE = 24,
VERTICAL_LINE = 25,
LABEL_TITLE_DARK_TEMPLATE = 26,
LABEL_GENRE_DARK_TEMPLATE = 30,
CHANNEL_TEMPLATE = 20, // Channel rectangle and row height
HORZ_SCROLLBAR = 28,
VERT_SCROLLBAR = 29,
LABEL_TIME1 = 40, // first and template
IMG_CHAN1 = 50,
IMG_CHAN1_LABEL = 70,
IMG_TIME1 = 90, // first and template
IMG_REC_PIN = 31,
SINGLE_CHANNEL_LABEL = 32,
SINGLE_CHANNEL_IMAGE = 33,
[B]TVGROUP_BUTTON = 60[/B]
} ;
and dynamical controls start all over 50000:
Code:
private const int GUIDE_COMPONENTID_START = 50000;
// Start for numbering IDs of automaticaly generated TVguide components for channels and programs
So maybe it's another issue? like overlapping controls, wrong width or something else?