Hi,
A command for a customer button script
"playlist_randomize" is bi-stable, i.e. each time it is clicked, the state changes to FIXED.
Now I would like to control "playlist_randomize" on / off CONCRETE.
In the script that I cannot see what the current state is, I would like to be able to switch "playlist_randomize" 'On' or 'Off' CONCRETELY.
The syntax playlist_randomize on / 1 or off / 0 gives NO reaction.
Who has an idea?
A command for a customer button script
"playlist_randomize" is bi-stable, i.e. each time it is clicked, the state changes to FIXED.
Now I would like to control "playlist_randomize" on / off CONCRETE.
In the script that I cannot see what the current state is, I would like to be able to switch "playlist_randomize" 'On' or 'Off' CONCRETELY.
The syntax playlist_randomize on / 1 or off / 0 gives NO reaction.
Who has an idea?
Inviato Sat 19 Mar 22 @ 1:57 pm
To turn it on:
playlist_randomize ? nothing : playlist_randomize
To turn it off:
playlist_randomize ? playlist_randomize : nothing
playlist_randomize ? nothing : playlist_randomize
To turn it off:
playlist_randomize ? playlist_randomize : nothing
Inviato Sat 19 Mar 22 @ 2:43 pm