2009-10-12, 13:14
OK, so I've changed the titles for the home page menu option to point to various directories on my SMB share, but I'm not happy with the way the videos / films menu items work.
I would like them to go directly to the smb share, but instead it defaults to my videos and I have to back track to then navigate to the films.
I think I need a new folder for my films to separate them from the videos, but have no idea where to start??
Here is the code snippets from my home.xml (I'm using the std PMIII)
and
Thanks for any help in advance.
I would like them to go directly to the smb share, but instead it defaults to my videos and I have to back track to then navigate to the films.
I think I need a new folder for my films to separate them from the videos, but have no idea where to start??
Here is the code snippets from my home.xml (I'm using the std PMIII)
Code:
<control type="button" id="2">
<description>MyVideos normal push button</description>
<posx>53</posx>
<posy>28</posy>
<width>12</width>
<height>14</height>
<hitrect x="45" y="15" w="220" h="40" />
<label>Movies</label>
<font>special13</font>
<onclick>ActivateWindow(MyVideos,smb://LAN/films)</onclick>
<onleft>98</onleft>
<onright>96</onright>
<onup>9</onup>
<ondown>4</ondown>
<texturefocus>home-focus.gif</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>30</textoffsetx>
</control>
and
Code:
<control type="button" id="5">
<description>My Videos normal push button</description>
<posx>53</posx>
<posy>119</posy>
<width>12</width>
<height>14</height>
<hitrect x="45" y="105" w="200" h="40" />
<label>3</label>
<font>special13</font>
<onclick>ActivateWindow(MyVideos,smb://LAN/videos)</onclick>
<onleft>98</onleft>
<onright>96</onright>
<onup>4</onup>
<ondown>3</ondown>
<texturefocus>home-focus.gif</texturefocus>
<texturenofocus>-</texturenofocus>
<textoffsetx>30</textoffsetx>
</control>