moving skip step OSD display (+15 sec, +30 sec, etc.) (1 Viewer)

kashikoisaru

New Member
December 13, 2008
2
0
Home Country
United States of America United States of America
My main goal is moving the OSD when watching videos.

I adjusted all of the <posY> values in common.play.progress.xml. That moved everything (progress bar, time, etc.) lower, except for when I skip ahead or back. The display of those values (-15 sec, -3 min, START, etc.) are still at the top of the screen, where the progress bar was originally.

I looked in the other .xml files and couldn't find anything that seemed to reference those values. I made some random changes where I saw references to "skip" but nothing worked.

Any ideas?

Thanks!
 

spuck

Community Skin Designer
April 6, 2007
397
59
Home Country
Sweden Sweden
if videofullscreen.xml you'll find something like this:
Code:
    <control>
      <description>row 1 label</description>
      <type>label</type>
      <id>10</id>
      <posX>192</posX>
      <posY>680</posY>
      <width>1030</width>
      <height>25</height>
      <align>center</align>
      <visible>no</visible>
      <label>-</label>
      <font>mediastream10tc</font>
    </control>
    <control>
      <description>row 2 label</description>
      <type>label</type>
      <id>11</id>
      <posX>192</posX>
      <posY>680</posY>
      <width>1030</width>
      <height>25</height>
      <align>center</align>
      <visible>no</visible>
      <label>-</label>
      <font>mediastream10tc</font>
    </control>
    <control>
      <description>row 3 label</description>
      <type>label</type>
      <id>12</id>
      <posX>192</posX>
      <posY>680</posY>
      <width>1030</width>
      <height>25</height>
      <align>center</align>
      <visible>no</visible>
      <label>-</label>
      <font>mediastream10tc</font>
    </control>
just search for the id's and you'll find it, one is for skip steps one is for aspect ratio, not sure what the third is for and I have no idea which one is which. :)
 

kashikoisaru

New Member
December 13, 2008
2
0
Home Country
United States of America United States of America
In videofullscreen.xml, I don't see any code like what you've posted.

Maybe my description wasn't very clear. I am using the blue3wide skin.

When you skip forward or backward, the progress bar appears on top of the screen. On the right side of the progress bar, a number appears showing how far forward or backwards you are skipping (+15 sec, +30 sec, +3 min, etc.).

By making adjustments to the <posY> in common.play.progress.xml, I was able to move all components of the progress bar lower on the screen.

However, when I skip forward or backward, the progress bar appears lower on the screen, but the skip text (-15 sec, -3 min, -5 min, etc.) is still displayed in the usual position.

I've looked through the other xml files and searched for the text strings associated with skipping, but haven't found anything.

Does anyone know where the controls are for the OSD showing skip step times while watching a video?

Thanks.
 

spuck

Community Skin Designer
April 6, 2007
397
59
Home Country
Sweden Sweden
If you would have looked in videofullscreen you would have seen that it includes 2 files and in common.play.fullscreen.xml you'll find it at the top.
 

Users who are viewing this thread

Top Bottom