auto enter media folder
#1
Is it possible to set up XBMC so that it immediatly enters a media folder when i press on the corresponding button from wihin the homescreen?

So when i press on video on the homescreen XBMC goes directly to my movies nas share and does not show local harddrive etc.
Reply
#2
Some skins allow for custom buttons which can take you to select playlists folders etc.
Reply
#3
You can fairly easily edit the skin file to achieve this. Post here if you want instructions for this. You need to tell us what operating system you're using.
Reply
#4
Thanks for this great support, well i am planning to instal xbmcbunu.
Reply
#5
These instructions apply to the default skin, Confluence.

First you need to find the directory containing whatever skin you're using. I don't know where XBMCbuntu keeps the skin files: in Windows the default skin is in "C:\Program Files (x86)\XBMC\addons\skin.confluence\720p".

Anyhow, you need to find the file called Home.xml. Open this file in your favourite text editor and go to line 603. The two lines 603 and 604 look like:

Code:
<onclick condition="!Skin.HasSetting(HomeVideostoFiles)">ActivateWindow(Videos)</onclick>
<onclick condition="Skin.HasSetting(HomeVideostoFiles)">ActivateWindow(Videos,Files,Return)</onclick>

You need to replace these two lines with:

Code:
<!--
<onclick condition="!Skin.HasSetting(HomeVideostoFiles)">ActivateWindow(Videos)</onclick>
<onclick condition="Skin.HasSetting(HomeVideostoFiles)">ActivateWindow(Videos,Files,Return)</onclick>
-->
<onclick">ActivateWindow(Videos,<directory name>,Return)</onclick>

Where <directory name> is the name of the directory you want to open. If you're using XBMCbuntu you've probably got the files on a network server, in which case <directory name> will be something like "smb://server/share/whatever/".

Note that in the code above I haven't deleted the lines originally in Home.xml, I've just commented them out. This makes it easy to put Home.xml back to what it was if you ever change your mind. You should also take a backup of the file so you can restore it if something goes horribly wrong.
Reply

Logout Mark Read Team Forum Stats Members Help
auto enter media folder0