Well, for anyone following this thread, yes, I'm talking to myself. But I found the answer in the skin documentation. If you're looking to accomplish what I wanted, I.E. make the Previous, Rewind, Fast Forward, and Next buttons into Skip back 5 minutes, Skip back 10 seconds, Skip forward 10 seconds, Skip forward 5 minutes, use the following info in the following files:
/private/var/stash/Applications.pwn/XBMC.app/XBMCData/XBMCHome/addons/skin.confluence/720p/VideoOSD.xml
Code:
...
...
<control type="group" id="100">
<posx>490</posx>
<posy>40</posy>
<control type="button" id="600">
<posx>0</posx>
<posy>0</posy>
<width>50</width>
<height>50</height>
<label>210</label>
<font>-</font>
<texturefocus>OSDPrevTrackFO.png</texturefocus>
<texturenofocus>OSDPrevTrackNF.png</texturenofocus>
<onleft>605</onleft>
<onright>601</onright>
<onup>701</onup>
<ondown>701</ondown>
<onclick>PlayerControl(BigSkipBackward)</onclick>
</control>
<control type="button" id="601">
<posx>50</posx>
<posy>0</posy>
<width>50</width>
<height>50</height>
<label>31354</label>
<font>-</font>
<texturefocus>OSDRewindFO.png</texturefocus>
<texturenofocus>OSDRewindNF.png</texturenofocus>
<onleft>600</onleft>
<onright>602</onright>
<onup>702</onup>
<ondown>702</ondown>
<onclick>PlayerControl(SmallSkipBackward)</onclick>
</control>
<control type="togglebutton" id="602">
<posx>100</posx>
<posy>0</posy>
<width>50</width>
<height>50</height>
<label>31351</label>
<altlabel>208</altlabel>
<font>-</font>
<texturefocus>OSDPauseFO.png</texturefocus>
<texturenofocus>OSDPauseNF.png</texturenofocus>
<usealttexture>Player.Paused | Player.Forwarding | Player.Rewinding</usealttexture>
<alttexturefocus>OSDPlayFO.png</alttexturefocus>
<alttexturenofocus>OSDPlayNF.png</alttexturenofocus>
<onleft>601</onleft>
<onright>603</onright>
<onup>702</onup>
<ondown>702</ondown>
<onclick>PlayerControl(Play)</onclick>
</control>
<control type="button" id="603">
<posx>150</posx>
<posy>0</posy>
<width>50</width>
<height>50</height>
<label>31352</label>
<font>-</font>
<texturefocus>OSDStopFO.png</texturefocus>
<texturenofocus>OSDStopNF.png</texturenofocus>
<onleft>602</onleft>
<onright>604</onright>
<onup>703</onup>
<ondown>703</ondown>
<onclick>PlayerControl(Stop)</onclick>
</control>
<control type="button" id="604">
<posx>200</posx>
<posy>0</posy>
<width>50</width>
<height>50</height>
<label>31353</label>
<font>-</font>
<texturefocus>OSDForwardFO.png</texturefocus>
<texturenofocus>OSDForwardNF.png</texturenofocus>
<onleft>603</onleft>
<onright>605</onright>
<onup>703</onup>
<ondown>703</ondown>
<onclick>PlayerControl(SmallSkipForward)</onclick>
</control>
<control type="button" id="605">
<posx>250</posx>
<posy>0</posy>
<width>50</width>
<height>50</height>
<label>209</label>
<font>-</font>
<texturefocus>OSDNextTrackFO.png</texturefocus>
<texturenofocus>OSDNextTrackNF.png</texturenofocus>
<onleft>604</onleft>
<onright>600</onright>
<onup>704</onup>
<ondown>704</ondown>
<onclick>PlayerControl(BigSkipForward)</onclick>
</control>
</control>
...
...
/private/var/mobile/Library/Preferences/XBMC/userdata/advancedsettings.xml
(You may need this in the profile directories if you're using profiles, too)
Code:
<advancedsettings>
<video>
<timeseekforward>10</timeseekforward> <!-- Time to seek forward in sec - short seek. Defaults to 30. -->
<timeseekbackward>-5</timeseekbackward> <!-- Time to seek backward in sec - short seek. Defaults to -30. -->
<timeseekforwardbig>300</timeseekforwardbig> <!-- Time seek forward in sec- long seek. Def 600 (10 min). -->
<timeseekbackwardbig>-300</timeseekbackwardbig> <!-- Time seek back in sec - long seek. Def to -600 (10 min). -->
</video>
</advancedsettings>
Thanks,
B.