• 1
  • 2(current)
  • 3
  • 4
  • 5
  • 82
[Closed] TvTunes Addon
#16
i can't refer to current playing volume because i can't get this information from xbmc, so all i can do is put a setting to set the volume at XX percent when playing theme.
#17
xbmc.getInfoLabel('player.volume') will sorta work - you'll get it in the format
Code:
case PLAYER_VOLUME:
    strLabel.Format("%2.1f dB",...);
    break;
#18
spiff Wrote:xbmc.getInfoLabel('player.volume') will sorta work - you'll get it in the format
Code:
case PLAYER_VOLUME:
    strLabel.Format("%2.1f dB",...);
    break;

hum!

thanks Spiff ! i'll see that!
whis this i should be able to lower volume when script start then raise it at closing ! Cool
#19
This is really cool - some sort of fade in / fade out would probably be awesome.
#20
well, still some bug and change, first is visible conditon, i've edited the condition, it's already working with current version Wink
#21
Quote:v0.5.2:
- fixed problem for flatten tvshow option
- change the visible condition to : !"Window(10025).Property(TvTunesIsAlive)" it's "true" when script is running

first post edited, new include.xml for confluence.
#22
Sharpe Wrote:This is really cool - some sort of fade in / fade out would probably be awesome.

i will decrease volume for theme Wink
#23
Quote:v0.5.3:
- added sound setting decrease from 0 to 60 in setting, automatically raising when script exit.
- moved running control into default.py

new version
#24
great work ppic will add this to showmix loving all the work you are doing dude keep it up
#25
thanks!

well ... i need some help from skinners, i'm really worried with this visible condition

Window(10025).Property(TvTunesIsAlive) without the ! seems to be good by me by i really don't know what it means, if you know, please help me, all i can say is that property only exist and is set to true when the backend script is running.
#26
using !"Window(10025).Property(TvTunesIsAlive)" seems to be working fine at suppressing the music info widgets I have popping up.

This really is a very cool feature

#Edit - ah yes I see what the problem is now - it's suppressing everything.
#27
<visible>SubString(Window(10025).Property(TvTunesIsAlive),True)</visible>
seems to be more dharma compatible, "" only works with windows as i see
#28
<visible>!SubString(Window(10025).Property(TvTunesI sAlive),True)</visible>

Seems to be working well - that will suppress the music info stuff fine.
#29
ok! actually it shutdowns all music when in video library, not only tvshow, i'll add something to by pass that.
#30
I still find the volume a bit loud what setting or xml do i need to edit. perhaps i would like a 40% volume level.

-=Jason=-
  • 1
  • 2(current)
  • 3
  • 4
  • 5
  • 82

Logout Mark Read Team Forum Stats Members Help
[Closed] TvTunes Addon5