Is there an upper bound on the history delay setting? I have a "Practice Mode" custom button created and even with a value of 700 some songs are still marked as played.
Thanks in advance.
Thanks in advance.
Posté Tue 09 Jun 20 @ 5:11 am
when a song hits 90% [or some value] it is also counted as played.
if you want database access but no play count increase it would have to be a script to solve that one.
if you want database access but no play count increase it would have to be a script to solve that one.
Posté Tue 09 Jun 20 @ 10:00 am
Is it about History or Tracks Marked as Played ?
I see a writeHistory setting available in Options you can try.
I see a writeHistory setting available in Options you can try.
Posté Tue 09 Jun 20 @ 11:36 am
djdad wrote :
Is it about History or Tracks Marked as Played ?
I see a writeHistory setting available in Options you can try.
I see a writeHistory setting available in Options you can try.
It shows up in history as well.
I will try the other option.
Thanks!
Posté Tue 09 Jun 20 @ 10:20 pm
locodog wrote :
when a song hits 90% [or some value] it is also counted as played.
if you want database access but no play count increase it would have to be a script to solve that one.
if you want database access but no play count increase it would have to be a script to solve that one.
Any suggestions on what that script wold be? I am new to writing them for settings.
TIA.
Posté Tue 09 Jun 20 @ 10:21 pm
Something like this should do it
first change your custom button to just this
toggle '$noPlayCount'
then keyboard mapping ONSONGLOAD
var '$noPlayCount' 1 ? set 'oldCount' `get_loaded_song "play count"` & repeat_start 'pokeItBack' 5000ms -1 & param_equal `get_var 'oldCount'` `get_loaded_song "play count"` ? nothing : loaded_song "play count" -1 & repeat_stop 'pokeItBack' : nothing
first change your custom button to just this
toggle '$noPlayCount'
then keyboard mapping ONSONGLOAD
var '$noPlayCount' 1 ? set 'oldCount' `get_loaded_song "play count"` & repeat_start 'pokeItBack' 5000ms -1 & param_equal `get_var 'oldCount'` `get_loaded_song "play count"` ? nothing : loaded_song "play count" -1 & repeat_stop 'pokeItBack' : nothing
Posté Wed 10 Jun 20 @ 4:30 am
Poke It Back,eh? Gonna give this a try after the weekend!
Posté Wed 10 Jun 20 @ 10:02 pm