(2012-03-25 21:06)grey Wrote: (2012-03-23 01:45)nooryani84 Wrote: Thanks for the response though I already tried that without luck.
It turns out I had to add edit the HomeSubMenu.xml for reFocus
Code:
<content>
<item id="1">
<label>$LOCALIZE[1024]</label>
<onclick>ActivateWindow(videolibrary,tvshowtitles)</onclick>
<visible>Library.HasContent(tvshows)</visible>
</item>
so i added
after tvshowtitles
Code:
<onclick>ActivateWindow(videolibrary,tvshowtitles,return)</onclick>
Then i did the same for movietitles, recentlyadded etc.
Edit: turns out it was the HomeMenu.xml i had to add ,return to
can you be more explicit?
what and where to add this?
If you're in windows you'll find the skin directory under %APPDATA%\XBMC\addons\skin.refocus.release\ and in linux under $home/.xbmc/addons/skin.refocus.release/
Then go to the subfolder called 720p and edit the file called HomeMenu.xml on line 37 and 47 - if theyre not on those exact lines just find
<onclick>ActivateWindow(MyVideoLibrary,movietitles)</onclick>
and
<onclick>ActivateWindow(MyVideoLibrary,tvshowtitles)</onclick>
Replace them with
<onclick>ActivateWindow(MyVideoLibrary,movietitles,return)</onclick>
and
<onclick>ActivateWindow(MyVideoLibrary,tvshowtitles,return)</onclick>
Save the file and restart XBMC.