2013-06-19, 08:35
This is a humble request for assistance:
I'm trying to have four main menu items in the home menu of Confluence
Movies, TV Shows, Boxing and Random
I have added all the buttons to the main home menu, and mapped them each to a source I added for each (Movies,TVShows, Boxing and Random) with the code below.
TV Shows and Movies come up in Library mode.
Boxing and Random come up empty when I click on them on the home menu, but when I browse the video files directory, I see all the sources, folders and files in them.
code:
<item id="20">
<label>Movies</label>
<onclick>ActivateWindow(Videos,Movies,Files,return)</onclick>
<icon>-</icon>
<thumb>-</thumb>
</item>
<item id="21">
<label>TV Shows</label>
<onclick>ActivateWindow(Videos,TVShows,Files,return)</onclick>
<icon>-</icon>
<thumb>-</thumb>
</item>
<item id="22">
<label>Boxing</label>
<onclick>ActivateWindow(Videos,Boxing,Files,return)</onclick>
<icon>-</icon>
<thumb>-</thumb>
</item>
<item id="23">
<label>Random</label>
<onclick>ActivateWindow(Videos,Random,Files,return)</onclick>
<icon>-</icon>
<thumb>-</thumb>
</item>
I don't think I need to make new windows for Boxing and Random, because they are just additional video sources that I added.
I tried to add the sources by editing the sources.xml but I could not find it, so I just added them manually.
for simplicity, I just put them at Users/myname/Desktop/Random XBMC recognizes them as video sources just fine.
I'd like all the menus to be in file view, so I don't have to worry about not seeing files if they happened to be named wrong for being picked up by the scraper (in the case of TV Shows and Movies). Boxing and Random, of course will not be picked up by a scraper for obvious reasons.
Can anyone shed some light on what I'm doing wrong. I followed a tutorial (http://wiki.xbmc.org/index.php?title=HOW...a_skinning), but I think it's outdated. I also tried searching the forums with no luck. I'm a noob at this, as you can likely see. Any help would be appreciated. Thanks a lot!
I'm trying to have four main menu items in the home menu of Confluence
Movies, TV Shows, Boxing and Random
I have added all the buttons to the main home menu, and mapped them each to a source I added for each (Movies,TVShows, Boxing and Random) with the code below.
TV Shows and Movies come up in Library mode.
Boxing and Random come up empty when I click on them on the home menu, but when I browse the video files directory, I see all the sources, folders and files in them.
code:
<item id="20">
<label>Movies</label>
<onclick>ActivateWindow(Videos,Movies,Files,return)</onclick>
<icon>-</icon>
<thumb>-</thumb>
</item>
<item id="21">
<label>TV Shows</label>
<onclick>ActivateWindow(Videos,TVShows,Files,return)</onclick>
<icon>-</icon>
<thumb>-</thumb>
</item>
<item id="22">
<label>Boxing</label>
<onclick>ActivateWindow(Videos,Boxing,Files,return)</onclick>
<icon>-</icon>
<thumb>-</thumb>
</item>
<item id="23">
<label>Random</label>
<onclick>ActivateWindow(Videos,Random,Files,return)</onclick>
<icon>-</icon>
<thumb>-</thumb>
</item>
I don't think I need to make new windows for Boxing and Random, because they are just additional video sources that I added.
I tried to add the sources by editing the sources.xml but I could not find it, so I just added them manually.
for simplicity, I just put them at Users/myname/Desktop/Random XBMC recognizes them as video sources just fine.
I'd like all the menus to be in file view, so I don't have to worry about not seeing files if they happened to be named wrong for being picked up by the scraper (in the case of TV Shows and Movies). Boxing and Random, of course will not be picked up by a scraper for obvious reasons.
Can anyone shed some light on what I'm doing wrong. I followed a tutorial (http://wiki.xbmc.org/index.php?title=HOW...a_skinning), but I think it's outdated. I also tried searching the forums with no luck. I'm a noob at this, as you can likely see. Any help would be appreciated. Thanks a lot!