Ingreso rápido:  

Forum: General Discussion

Tema: how to get compatible songs to be marked by a colored icon

Este tópico es antiguo y puede contener información incorrecta para la nueva versión.

i used to have this feature on my virtual dj 7.. where the songs with matching beat per minute and harmonic value to the song that is loaded on the deck would be indicated by a green marker to the left of title where you have the music symbol in virtual dj 8 and the songs that didn't match would be colored in red how do i get this feature for virtual dj 8?
 

Mensajes Mon 04 Jun 18 @ 2:22 am
1) Read the manual
2) Use the filter folder 'Compatible Songs'
 

Mensajes Mon 04 Jun 18 @ 4:31 pm
That folder doesn't help.. example I create a playlist of songs of the same genre and the songs that has the same drum set and patter and is compatible to be mixed is highleted with a green to the left of the title of the song and all other non compatible songs are highleted in red... and even if I leave that folder and go to a different folder I have created the songs that are compatible is still marked green and the ones that are not is marked red
 

Mensajes Fri 22 Jun 18 @ 9:42 pm
 

Mensajes Mon 02 Jul 18 @ 8:13 pm
Put the "script" in and create a "custom button" on a skin that allows "custom buttons". Drag the song up to a deck and click whatever you name your "harmonic mixing" custom button. Then voila!!!!!
 

Mensajes Mon 02 Jul 18 @ 8:17 pm
PachNPRO InfinityMember since 2009
djdad wrote :
Assign the script below to a custom button. Select a folder. Focus the 1st track of the folder. Press the custom button.
It will automatically color all the tracks inside that folder and will automatically stop at the last one. You can press the same button again to stop the process at any time.
Known bug.. Doesnt color the 1st one (at the top), but you can move the track at a different position by sorting the list. Will try to improve it so that it fixes this one.

repeat_start 'mytest' ? on & repeat_stop 'mytest' : off & repeat_start 'mytest' 100ms & browser_scroll 'bottom' ? repeat_stop 'mytest' : browser_scroll +1 & get_browsed_song 'harmonic' & param_cast 'text' & param_equal '01A' ? browsed_song color '#70ECD4' : param_equal '01B' ? browsed_song color '#00EDC9' : param_equal '02A' ? browsed_song color '#92F0A4' : param_equal '02B' ? browsed_song color '#27EC82' : param_equal '03A' ? browsed_song color '#B1EE86' : param_equal '03B' ? browsed_song color '#85ED4E' : param_equal '04A' ? browsed_song color '#E6E0A2' : param_equal '04B' ? browsed_song color '#E0C86E' : param_equal '05A' ? browsed_song color '#FEC8AC' : param_equal '05B' ? browsed_song color '#FFA279' : param_equal '06A' ? browsed_song color '#FFB3BF' : param_equal '06B' ? browsed_song color '#FF8C93' : param_equal '07A' ? browsed_song color '#FFB4D2' : param_equal '07B' ? browsed_song color '#FF85B4' : param_equal '08A' ? browsed_song color '#EBB7F9' : param_equal '08B' ? browsed_song color '#F087D9' : param_equal '09A' ? browsed_song color '#E7B6F8' : param_equal '09B' ? browsed_song color '#CE93FF' : param_equal '10A' ? browsed_song color '#C0CEFB' : param_equal '10B' ? browsed_song color '#A1B9FF' : param_equal '11A' ? browsed_song color '#94E5F8' : param_equal '11B' ? browsed_song color '#3ED2F8' : param_equal '12A' ? browsed_song color '#50EBF0' : param_equal '12B' ? browsed_song color '#01EDED' : nothing


If you are happy with what you get, you can type a * character in the Search field, get all tracks in your Database and do a batch coloring (will take some time of course)
 

Mensajes Tue 03 Jul 18 @ 7:44 am
locoDogPRO InfinityModeratorMember since 2013
Where's the source of that Pachn? I can see what needs to be done to avoid the first track bug.
 

Mensajes Tue 03 Jul 18 @ 8:07 am
PachNPRO InfinityMember since 2009
IDK, found that quote in another thread in the german forum.
 

Mensajes Thu 05 Jul 18 @ 8:15 am
locoDogPRO InfinityModeratorMember since 2013
That's the only place i found it too. I'll fix it and stick it in the script depo.
 

Mensajes Thu 05 Jul 18 @ 8:43 am
locoDogPRO InfinityModeratorMember since 2013
djdad's autocolor script reworked
Assign the script below to a custom button. Select a folder. Press the custom button.
It will automatically color all the tracks inside that folder and will automatically stop at the last one. You can press the same button again to stop the process at any time.

repeat_start 'colorTracks' ? on & repeat_stop 'colorTracks' : off & browser_window "songs" & browser_scroll "top" & repeat_start 'colorTracks' 100ms & browser_scroll 'bottom' ? repeat_stop 'colorTracks' & get_browsed_song 'harmonic' & param_cast 'text' & param_equal '01A' ? browsed_song color '#70ECD4' : param_equal '01B' ? browsed_song color '#00EDC9' : param_equal '02A' ? browsed_song color '#92F0A4' : param_equal '02B' ? browsed_song color '#27EC82' : param_equal '03A' ? browsed_song color '#B1EE86' : param_equal '03B' ? browsed_song color '#85ED4E' : param_equal '04A' ? browsed_song color '#E6E0A2' : param_equal '04B' ? browsed_song color '#E0C86E' : param_equal '05A' ? browsed_song color '#FEC8AC' : param_equal '05B' ? browsed_song color '#FFA279' : param_equal '06A' ? browsed_song color '#FFB3BF' : param_equal '06B' ? browsed_song color '#FF8C93' : param_equal '07A' ? browsed_song color '#FFB4D2' : param_equal '07B' ? browsed_song color '#FF85B4' : param_equal '08A' ? browsed_song color '#EBB7F9' : param_equal '08B' ? browsed_song color '#F087D9' : param_equal '09A' ? browsed_song color '#E7B6F8' : param_equal '09B' ? browsed_song color '#CE93FF' : param_equal '10A' ? browsed_song color '#C0CEFB' : param_equal '10B' ? browsed_song color '#A1B9FF' : param_equal '11A' ? browsed_song color '#94E5F8' : param_equal '11B' ? browsed_song color '#3ED2F8' : param_equal '12A' ? browsed_song color '#50EBF0' : param_equal '12B' ? browsed_song color '#01EDED' : nothing : get_browsed_song 'harmonic' & param_cast 'text' & param_equal '01A' ? browsed_song color '#70ECD4' & browser_scroll +1 : param_equal '01B' ? browsed_song color '#00EDC9' & browser_scroll +1 : param_equal '02A' ? browsed_song color '#92F0A4' & browser_scroll +1 : param_equal '02B' ? browsed_song color '#27EC82' & browser_scroll +1 : param_equal '03A' ? browsed_song color '#B1EE86' & browser_scroll +1 : param_equal '03B' ? browsed_song color '#85ED4E' & browser_scroll +1 : param_equal '04A' ? browsed_song color '#E6E0A2' & browser_scroll +1 : param_equal '04B' ? browsed_song color '#E0C86E' & browser_scroll +1 : param_equal '05A' ? browsed_song color '#FEC8AC' & browser_scroll +1 : param_equal '05B' ? browsed_song color '#FFA279' & browser_scroll +1 : param_equal '06A' ? browsed_song color '#FFB3BF' & browser_scroll +1 : param_equal '06B' ? browsed_song color '#FF8C93' & browser_scroll +1 : param_equal '07A' ? browsed_song color '#FFB4D2' & browser_scroll +1 : param_equal '07B' ? browsed_song color '#FF85B4' & browser_scroll +1 : param_equal '08A' ? browsed_song color '#EBB7F9' & browser_scroll +1 : param_equal '08B' ? browsed_song color '#F087D9' & browser_scroll +1 : param_equal '09A' ? browsed_song color '#E7B6F8' & browser_scroll +1 : param_equal '09B' ? browsed_song color '#CE93FF' & browser_scroll +1 : param_equal '10A' ? browsed_song color '#C0CEFB' & browser_scroll +1 : param_equal '10B' ? browsed_song color '#A1B9FF' & browser_scroll +1 : param_equal '11A' ? browsed_song color '#94E5F8' & browser_scroll +1 : param_equal '11B' ? browsed_song color '#3ED2F8' & browser_scroll +1 : param_equal '12A' ? browsed_song color '#50EBF0' & browser_scroll +1 : param_equal '12B' ? browsed_song color '#01EDED' : browser_scroll +1
 

Mensajes Thu 05 Jul 18 @ 9:12 am
locodog wrote :
djdad's autocolor script reworked
Assign the script below to a custom button. Select a folder. Press the custom button.
It will automatically color all the tracks inside that folder and will automatically stop at the last one. You can press the same button again to stop the process at any time.

repeat_start 'colorTracks' ? on & repeat_stop 'colorTracks' : off & browser_window "songs" & browser_scroll "top" & repeat_start 'colorTracks' 100ms & browser_scroll 'bottom' ? repeat_stop 'colorTracks' & get_browsed_song 'harmonic' & param_cast 'text' & param_equal '01A' ? browsed_song color '#70ECD4' : param_equal '01B' ? browsed_song color '#00EDC9' : param_equal '02A' ? browsed_song color '#92F0A4' : param_equal '02B' ? browsed_song color '#27EC82' : param_equal '03A' ? browsed_song color '#B1EE86' : param_equal '03B' ? browsed_song color '#85ED4E' : param_equal '04A' ? browsed_song color '#E6E0A2' : param_equal '04B' ? browsed_song color '#E0C86E' : param_equal '05A' ? browsed_song color '#FEC8AC' : param_equal '05B' ? browsed_song color '#FFA279' : param_equal '06A' ? browsed_song color '#FFB3BF' : param_equal '06B' ? browsed_song color '#FF8C93' : param_equal '07A' ? browsed_song color '#FFB4D2' : param_equal '07B' ? browsed_song color '#FF85B4' : param_equal '08A' ? browsed_song color '#EBB7F9' : param_equal '08B' ? browsed_song color '#F087D9' : param_equal '09A' ? browsed_song color '#E7B6F8' : param_equal '09B' ? browsed_song color '#CE93FF' : param_equal '10A' ? browsed_song color '#C0CEFB' : param_equal '10B' ? browsed_song color '#A1B9FF' : param_equal '11A' ? browsed_song color '#94E5F8' : param_equal '11B' ? browsed_song color '#3ED2F8' : param_equal '12A' ? browsed_song color '#50EBF0' : param_equal '12B' ? browsed_song color '#01EDED' : nothing : get_browsed_song 'harmonic' & param_cast 'text' & param_equal '01A' ? browsed_song color '#70ECD4' & browser_scroll +1 : param_equal '01B' ? browsed_song color '#00EDC9' & browser_scroll +1 : param_equal '02A' ? browsed_song color '#92F0A4' & browser_scroll +1 : param_equal '02B' ? browsed_song color '#27EC82' & browser_scroll +1 : param_equal '03A' ? browsed_song color '#B1EE86' & browser_scroll +1 : param_equal '03B' ? browsed_song color '#85ED4E' & browser_scroll +1 : param_equal '04A' ? browsed_song color '#E6E0A2' & browser_scroll +1 : param_equal '04B' ? browsed_song color '#E0C86E' & browser_scroll +1 : param_equal '05A' ? browsed_song color '#FEC8AC' & browser_scroll +1 : param_equal '05B' ? browsed_song color '#FFA279' & browser_scroll +1 : param_equal '06A' ? browsed_song color '#FFB3BF' & browser_scroll +1 : param_equal '06B' ? browsed_song color '#FF8C93' & browser_scroll +1 : param_equal '07A' ? browsed_song color '#FFB4D2' & browser_scroll +1 : param_equal '07B' ? browsed_song color '#FF85B4' & browser_scroll +1 : param_equal '08A' ? browsed_song color '#EBB7F9' & browser_scroll +1 : param_equal '08B' ? browsed_song color '#F087D9' & browser_scroll +1 : param_equal '09A' ? browsed_song color '#E7B6F8' & browser_scroll +1 : param_equal '09B' ? browsed_song color '#CE93FF' & browser_scroll +1 : param_equal '10A' ? browsed_song color '#C0CEFB' & browser_scroll +1 : param_equal '10B' ? browsed_song color '#A1B9FF' & browser_scroll +1 : param_equal '11A' ? browsed_song color '#94E5F8' & browser_scroll +1 : param_equal '11B' ? browsed_song color '#3ED2F8' & browser_scroll +1 : param_equal '12A' ? browsed_song color '#50EBF0' & browser_scroll +1 : param_equal '12B' ? browsed_song color '#01EDED' : browser_scroll +1


BRO this is better than the reference I posted earlier plus it saves time. Thanks Loco

 

Mensajes Thu 05 Jul 18 @ 3:46 pm
locoDogPRO InfinityModeratorMember since 2013
A few people contributed to this script, all I did was remove a bug, but saving time is always a good thing.
 

Mensajes Thu 05 Jul 18 @ 4:06 pm
The Wizard Script King does it again, can you go through every script ever made and tweak them all (lol) Thanks locodog
 

Mensajes Thu 05 Jul 18 @ 4:12 pm


(Los tópicos y foros antiguos son automáticamente cerrados)