Jump to content

"Emby Music" (cloned) Estuary menu entry?


amatesi

Recommended Posts

The cloned Estuary skin solution is brilliant, thanks for that!

 

I was wondering whether it was possible to add an additional "Emby Music" menu entry to the cloned skin?

 

I've tried to hack Home.xml file by adding a new (improvised) entry to show emby music, but it didn't work :D

 

Currently, Home.xml is as follows:

 <!-- Start Emby Menu Items -->
      <item>
       <label>Emby Movies</label>
       <onclick condition="String.IsEmpty(Window(Home).Property(first_load_done))">ActivateWindow(Videos,videodb://movies/titles/,return)</onclick>
       <onclick>ActivateWindow(Videos,plugin://plugin.video.embycon/?mode=SHOW_CONTENT&item_type=Movie&media_type=movies,return)</onclick>
       <onclick>SetProperty(first_load_done, done, 10000)</onclick>
       <property name="menu_id">$NUMBER[3000]</property>
       <thumb>icons/sidemenu/movies.png</thumb>
       <property name="id">emby_movies</property>
      </item>
      <item>
       <label>Emby TV Shows</label>
       <onclick condition="String.IsEmpty(Window(Home).Property(first_load_done))">ActivateWindow(Videos,videodb://movies/titles/,return)</onclick>
       <onclick>ActivateWindow(Videos,plugin://plugin.video.embycon/?mode=SHOW_CONTENT&item_type=Series&media_type=tvshows,return)</onclick>
       <onclick>SetProperty(first_load_done, done, 10000)</onclick>
       <property name="menu_id">$NUMBER[4000]</property>
       <thumb>icons/sidemenu/tv.png</thumb>
       <property name="id">emby_tvshows</property>
      </item>
                        <!-- End Emby Menu Items -->

I've tried adding a new entry (as follows):

      <item>
       <label>Emby Music</label>
       <onclick condition="String.IsEmpty(Window(Home).Property(first_load_done))">ActivateWindow(Music,musicdb://music//titles,return)</onclick>
       <onclick>ActivateWindow(Music,plugin://plugin.music.embycon/?mode=SHOW_CONTENT&item_type=Music&media_type=music,return)</onclick>
       <onclick>SetProperty(first_load_done, done, 10000)</onclick>
       <property name="menu_id">$NUMBER[3000]</property>
       <thumb>icons/sidemenu/music.png</thumb>
       <property name="id">emby_music</property>
      </item>

..no luck!

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...