Quick Sign In:  

Forum: General Discussion

Topic: Script School - Page: 26.55
Djratedxxx919 wrote :

Sooo Loco Im trying to use the info/sideview area to have a list of compatible songs to the songs on deck.
Ive created a filter titled Immediate compatible with this script.
"Bpm Difference < 5 and Key Difference < 1 and Grouping contains Hot"
this is ok but I wanna have more criteria. Like I use the grouping field as a way to create my DJ library. it is something like.... "year/genre/Hot" So I want a criteria that says the grouping area entries must match. Now grouping area can have multiple entries, each entry is separated with a comma.
Is this doable?






Hopefully, this picture helps you to understand.
The track on Deck 1 is Grouped as "ClassicRock" but in the immediate compatible list, nothing matches that grouping entry. But if you look at the list of classic rock songs there are matches. So now that I know I can set this filter folder I want to add a criteria that looks for matches in the Grouping field.
 

geposted Tue 28 Jun 22 @ 9:29 pm
locoDogPRO InfinityModeratorMember since 2013
user made sidelists filters don't update live, they're only true when created.
 

geposted Wed 29 Jun 22 @ 1:25 am
locodog wrote :
user made sidelists filters don't update live, they're only true when created.

I can understand that. But what I noticed is at bottom of sideview is a place to add shortcut to folders. So I decided to have my "Immediate Compatible" Filter Folder as a shortcut. So this script will actually be for a filter folder.

 

geposted Wed 29 Jun 22 @ 1:41 am
Djratedxxx919 wrote :
locodog wrote :
user made sidelists filters don't update live, they're only true when created.

I can understand that. But what I noticed is at bottom of sideview is a place to add shortcut to folders. So I decided to have my "Immediate Compatible" Filter Folder as a shortcut. So this script will actually be for a filter folder.


+1

 

geposted Wed 29 Jun 22 @ 8:04 pm
locoDogPRO InfinityModeratorMember since 2013
the only fields that update from track on deck are; bpm difference & key difference.
any other field would need a filter writing via plugin, or an unreasonable amount of bruteforce to cover every possibility.
Since you didn't get on with 'sticky', I'd say it's not viable currently.
 

geposted Wed 29 Jun 22 @ 9:13 pm
locodog wrote :
the only fields that update from track on deck are; bpm difference & key difference.
any other field would need a filter writing via plugin, or an unreasonable amount of bruteforce to cover every possibility.
Since you didn't get on with 'sticky', I'd say it's not viable currently.


As it is I have to click on it to update it...and I'm ok with that. I just need the proper script to search the grouping field and collect matches. I have come to understand it doesn't auto update but I'm ok with that.

 

geposted Wed 29 Jun 22 @ 10:12 pm
Djratedxxx919 wrote :
locodog wrote :
the only fields that update from track on deck are; bpm difference & key difference.
any other field would need a filter writing via plugin, or an unreasonable amount of bruteforce to cover every possibility.
Since you didn't get on with 'sticky', I'd say it's not viable currently.


As it is I have to click on it to update it...and I'm ok with that. I just need the proper script to search the grouping field and collect matches. I have come to understand it doesn't auto update but I'm ok with that.



+1
 

geposted Sun 03 Jul 22 @ 2:25 am
SveninoPRO InfinityMember since 2009
Hey, I want to change the fontsize of the cuenames in the wave-window of the skin.
They are so small that I can´t read them when I´m performing on stage.
So I have to go to the skinfile and change maybe just a number, but WHERE?



I´m using the haunting pro touch-skin by Alex RDZ96.
Thanks in advance for any help

(I posted the question in the skin-area, but didn´t get any answer. Next Gig on Saturday...)
 

geposted Wed 17 Aug 22 @ 2:21 pm
SveninoPRO InfinityMember since 2009
Solved!
In Skinfile there is the panel [panel name="defaultwave4deck"]
there under "Cue" the font can be changed or resized.
 

geposted Thu 18 Aug 22 @ 11:37 am
mg_1978PRO InfinityMember since 2008
Hi! Why not yet add by VirtualDj team scripts about see in a monitor sample time remaining or sample time elapsed, when a sample is playing? i can see only with script sampler_position a sort of “time passage” when a sample is playing :( is there another solution??
thanks
 

geposted Tue 20 Sep 22 @ 8:29 am
szemekPRO InfinityMember since 2019
Is it possible to select a deck by using value of variable?

What I want to do is to select "previous" deck. Here's a naive version
get_deck 1 ? deck 4 select : get_deck 2 ? deck 1 select : get_deck 3 ? deck 2 select : deck 3 select
 

geposted Tue 20 Sep 22 @ 4:28 pm
Hi, I'll try here.
In the variable I have the text (name of the effect)
set_var 'DeckColorSelect' "Echo"

How do I change the colorfx effect with this variable?
filter_selectcolorfx '`get_text "ColorFXSelect"`'

doesn't work.

It is very impractical to do that
var_equal 'ColorFXSelect' '`get_text "Cut"`' ?
filter_selectcolorfx "Cut" :
var_equal 'ColorFXSelect' `get_text "Echo"` ?
.......
 

geposted Thu 22 Sep 22 @ 8:24 am
Mirda Draxal wrote :
Hi, I'll try here.
In the variable I have the text (name of the effect)
set_var 'DeckColorSelect' "Echo"

How do I change the colorfx effect with this variable?
filter_selectcolorfx '`get_text "ColorFXSelect"`'

doesn't work.

It is very impractical to do that
var_equal 'ColorFXSelect' '`get_text "Cut"`' ?
filter_selectcolorfx "Cut" :
var_equal 'ColorFXSelect' `get_text "Echo"` ?
.......


Someone in the FB group answered it

In one combined script for testing:
set_var 'DeckColorFX' "Echo" & param_cast 'DeckColorFX' & filter_selectcolorfx
 

geposted Thu 22 Sep 22 @ 9:24 am
set_var 'DeckColorFX' "Echo" & 
param_cast 'DeckColorFX' & filter_selectcolorfx

Thanks, it works.
I didn't notice on FB
 

geposted Thu 22 Sep 22 @ 6:11 pm
Hi,
I think there is an error when loading the name of the ColorFX effect when setting Filter (it loads as Filter). Please try the following script
filter_selectcolorfx "Filter" &
set 'ColorFXSelect' `filter_label "name"` &
var_list & wait 1000ms &
filter_selectcolorfx "Cut" &
wait 1000ms &
set 'ColorFXSelect' 'ColorFXSelect' &
param_cast 'ColorFXSelect' & filter_selectcolorfx
 

geposted Sun 25 Sep 22 @ 7:29 pm
mg_1978PRO InfinityMember since 2008
hi, i use Sidelist like a Sequencer…and in my Sidelist i have “Sequencer” samples, but any time i open VirtualDj my Sidelist is empty..so when i use a mapped specific play button in my Pioneer DDJ-RZX….i don’t have samples. I would load a “Sequencer” playlist (i have saved my sidelist like a playlist, and it’s name is “Sequencer”) at first play:
Sequencer Play button: browser_window ‘sidelist’ & file_count ‘sideview’ & param_equal 0 ? browser_gotofolder ‘Playlist’ & browser_scroll +1 & get_filename & param_contains ‘Sequencer’ ? sidelist_load & play : browser_scroll +1 : play

but doesn’t work correctly :( can you help me???
 

geposted Sat 01 Oct 22 @ 3:05 pm
mg_1978PRO InfinityMember since 2008
mg_1978 wrote :
hi, i use Sidelist like a Sequencer…and in my Sidelist i have “Sequencer” samples, but any time i open VirtualDj my Sidelist is empty..so when i use a mapped specific play button in my Pioneer DDJ-RZX….i don’t have samples. I would load a “Sequencer” playlist (i have saved my sidelist like a playlist, and it’s name is “Sequencer”) at first play:
Sequencer Play button: browser_window ‘sidelist’ & file_count ‘sideview’ & param_equal 0 ? browser_gotofolder ‘Playlist’ & browser_scroll +1 & get_filename & param_contains ‘Sequencer’ ? sidelist_load & play : browser_scroll +1 : play

but doesn’t work correctly :( can you help me???


solved: for help everyone:
browser_gotofolder ‘Playlist\Sequencer’ & sidelist_load & play
work! i thinked that browser_gotofolder was only for folders, is for file (Sequencer is a file Sequencer.m3u) directly too 👍

 

geposted Mon 03 Oct 22 @ 9:45 am
Mirda Draxal wrote :
Hi,
I think there is an error when loading the name of the ColorFX effect when setting Filter (it loads as Filter). Please try the following script
filter_selectcolorfx "Filter" &
set 'ColorFXSelect' `filter_label "name"` &
var_list & wait 1000ms &
filter_selectcolorfx "Cut" &
wait 1000ms &
set 'ColorFXSelect' 'ColorFXSelect' &
param_cast 'ColorFXSelect' & filter_selectcolorfx


Solved. It is better to ask for the current name of the colorfx effect
set 'ColorFXSelect' `filter_selectcolorfx`

This will return the correct name "FILTER"
I still don't understand why when I select the FILTER effect appears as the colorfx name FILTR.



 

geposted Tue 04 Oct 22 @ 5:08 pm
AdionPRO InfinityCTOMember since 2006
Perhaps a bug in the language file you use?
 

geposted Tue 04 Oct 22 @ 5:17 pm
I want to setup the stems padpage to match seratoDJ stem pad setup...
 

geposted Wed 05 Oct 22 @ 7:53 am
57%