Feature and bug? request
#1
Bug? http://trac.xbmc.org/ticket/13025 basically if you would add a <disabledcolor> to label control it won't disappear.

feature request: is there a builtin that can call scripts settings? if so add that to your skin settings after someone enters a script for lyrics or subtitle. if not add a builtin for that.
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply
#2
no comment? maybe it's been requested before?

here's the builtin.
"Addon.OpenSettings"
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply
#3
PHP Code:
<control type="button" id="456">
    <
width>750</width>
    <
height>35</height>
    <
font>font13</font>
    <
label>- $LOCALIZE[24020]</label>
    <
textcolor>grey2</textcolor>
    <
focusedcolor>white</focusedcolor>
    <
texturefocus>MenuItemFO.png</texturefocus>
    <
texturenofocus>MenuItemNF.png</texturenofocus>
    <
enable>!IsEmpty(Skin.String(LyricScript_Path))</enable>
    <
onclick>Addon.OpenSettings($INFO[Skin.String(LyricScript_Path)])</onclick>
</
control

that was easy enough.
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply
#4
Another feature request. Add the lyrics button to the dialog you get when you press M While music is playing.

And add the button to the video window. The new xbmc lyrics supports lyrics for music videos.
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply
#5
(2012-05-16, 16:02)Nuka1195 Wrote: Another feature request. Add the lyrics button to the dialog you get when you press M While music is playing.

And add the button to the video window. The new xbmc lyrics supports lyrics for music videos.

the first one seems reasonable
the second one I'm not too keen on unless its something that can work in all lyrics scripts
Reply
#6
Fair enough. What about the settings. It's really convenient to have them right where you set the addon.
For python coding questions first see http://mirrors.xbmc.org/docs/python-docs/
Reply
#7
I've added the addon settings and lyrics in small player controls and will push them into git in the next merge window (june)
Reply

Logout Mark Read Team Forum Stats Members Help
Feature and bug? request0