rausch101
2009-06-30, 06:22
Can the "load playlist on start-up" feature make its way into Aeon and the associated mods?
Here's some related threads:
Auto Play Smart Playlist & Loop for infinity? (http://xbmc.org/forum/showthread.php?t=53092&highlight=playlist+startup)
LastFM-stream on startup (http://xbmc.org/forum/showthread.php?t=36471&highlight=playlist+startup)
music on startup (http://xbmc.org/forum/showthread.php?t=49059&highlight=playlist+startup)
I'm not a coder at all, but I hope it's an easy task?
From startup.xml in PMIIIHD:
<window>
<defaultcontrol always="true">10</defaultcontrol>
<allowoverlay>no</allowoverlay>
<controls>
<control type="button" id="10">
<description>trigger</description>
<onfocus>ReplaceWindow(Home)</onfocus>
<texturenofocus>-</texturenofocus>
<texturefocus>-</texturefocus>
<visible>!Skin.HasSetting(Use_Startup_Playlist)</visible>
</control>
<control type="button" id="10">
<description>trigger with startup Playlist</description>
<onfocus>XBMC.PlayMedia($INFO[Skin.String(Startup_Playlist_Path)])</onfocus>
<onfocus>ReplaceWindow(Home)</onfocus>
<texturenofocus>-</texturenofocus>
<texturefocus>-</texturefocus>
<visible>Skin.HasSetting(Use_Startup_Playlist)</visible>
</control>
</controls>
</window>
Here's some related threads:
Auto Play Smart Playlist & Loop for infinity? (http://xbmc.org/forum/showthread.php?t=53092&highlight=playlist+startup)
LastFM-stream on startup (http://xbmc.org/forum/showthread.php?t=36471&highlight=playlist+startup)
music on startup (http://xbmc.org/forum/showthread.php?t=49059&highlight=playlist+startup)
I'm not a coder at all, but I hope it's an easy task?
From startup.xml in PMIIIHD:
<window>
<defaultcontrol always="true">10</defaultcontrol>
<allowoverlay>no</allowoverlay>
<controls>
<control type="button" id="10">
<description>trigger</description>
<onfocus>ReplaceWindow(Home)</onfocus>
<texturenofocus>-</texturenofocus>
<texturefocus>-</texturefocus>
<visible>!Skin.HasSetting(Use_Startup_Playlist)</visible>
</control>
<control type="button" id="10">
<description>trigger with startup Playlist</description>
<onfocus>XBMC.PlayMedia($INFO[Skin.String(Startup_Playlist_Path)])</onfocus>
<onfocus>ReplaceWindow(Home)</onfocus>
<texturenofocus>-</texturenofocus>
<texturefocus>-</texturefocus>
<visible>Skin.HasSetting(Use_Startup_Playlist)</visible>
</control>
</controls>
</window>