![]() |
|
$INFO[Skin.String()] and System.Idletime() - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Development (/forumdisplay.php?fid=32) +--- Forum: Skin Development (/forumdisplay.php?fid=12) +--- Thread: $INFO[Skin.String()] and System.Idletime() (/showthread.php?tid=79676) |
Automatic Fullscreen "Now Playing" for Music - smuto - 2010-08-25 19:58 My custom control become visible with a System.IdleTime(15) I would like to change the set time from GUI, so i add 2 controls to SkinSetting Code: <control type="radiobutton" id="115">so i add conditional visibility Code: <visible>Player.HasAudio + System.IdleTime($INFO[Skin.String(applytime)])</visible>but this InfoLabel is not working or I'm doing something wrong smuto - Hitcher - 2010-08-25 20:27 What's the value of applytime in your guisettings.xml after you set it? - smuto - 2010-08-25 21:36 it's ok - Code: <setting type="bool" name="skin.confluence.nowplayingwindow">true</setting>& i can change it by numeric popup - smuto - 2010-09-10 19:52 i mod confluence skin to have now playing window. i create include "MusicNowPlay" with some of MusicPlayer $INFO tags & put it in separate file (mostly copy from Jezz_X work) IncludesMusicNowPlay.xml i edit skin file 'includes.xml' to make it run - add my file PHP Code: <include file="IncludesMusicNowPlay.xml" /> PHP Code: <include name="WindowTitleHomeButton">of course i can add to skin settings on/off, but set value for System.IdleTime is what i'm looking for smuto - smuto - 2012-01-10 14:48 recently discovered that plugin can be used to multiimage control PHP Code: <imagepath>plugin://plugin.image.artistmultifanart</imagepath> - add multiimage control to my file IncludesMusicNowPlay.xml - i write a plugin to have a images for currently playing artist plugin.image.artistmultifanart i'm not a skinner or Python Coder, but xbmc gives me so much fun please help me to improve my ideas smuto - smuto - 2012-01-30 12:04 looks like skin needs send params to refresh the listing PHP Code: <imagepath background="true">plugin://plugin.image.artistmultifanart/?name=$INFO[MusicPlayer.Title]</imagepath> i rewrite a plugin plugin.image.artistmultifanart-1.0.2.zip smuto - smuto - 2012-01-30 12:46 one more ask 2 years ago I asked about mbid for scraper http://trac.xbmc.org/ticket/9031 mayby we can have mbid in info label I just miss MusicPlayer.Property(Artist_Mbid) smuto |