Please bring this feature back. Please. Years, this worked for me with NO problems.
Posté Sat 16 May 15 @ 7:08 am
Remove a track from Side/Play list (Button)
Button
This script invents deck 5 by turning line in on & off, once the deck exists it loads the offending track, unloads it and the listing is removed from the list
The track HAS to be in focus, the last thing clicked, otherwise the top of the list gets removed.
These scripts change the selected deck, if you need to keep the selected deck, modify the script with this at the start,
And this at the end
If you you use the "saveUnplayedToSidelist" option, this is your base script.
Button
deck 5 linein on & deck 5 linein off & deck 5 playlist_load_and_remove & deck 5 unload
This script invents deck 5 by turning line in on & off, once the deck exists it loads the offending track, unloads it and the listing is removed from the list
The track HAS to be in focus, the last thing clicked, otherwise the top of the list gets removed.
These scripts change the selected deck, if you need to keep the selected deck, modify the script with this at the start,
set "$oldFocus" '`get_defaultdeck' &
And this at the end
& var_equal "$oldFocus" 1 ? deck 1 select : var_equal "$oldFocus" 2 ? deck 2 select : var_equal "$oldFocus" 3 ? deck 3 select : var_equal "$oldFocus" 4 ? deck 4 select : nothing
If you you use the "saveUnplayedToSidelist" option, this is your base script.
deck 5 linein on & deck 5 linein off & setting "saveUnplayedToSidelist" off & deck 5 sidelist_load_and_remove & deck 5 unload & setting "saveUnplayedToSidelist" on
Posté Sat 16 May 15 @ 7:40 am