Quick Sign In:  

Forum: General Discussion

Topic: Script School - Page: 35.55
locoDogPRO InfinityModeratorMember since 2013
no, pre/post is a global setting.
I made a volume plugin, if you use that as the last thing in the fx chain you can use post and still have volume control when you want pre
 

geposted Tue 04 Apr 23 @ 3:03 pm
mg_1978PRO InfinityMember since 2008
hi…there is new script “stems_split”…is there a script for make same thing without stems separation? Like “Pioneer DuaDeck”…to control in deck 1-3 play, cue, hotcues, scratch at same time…thanks!!
 

geposted Sat 08 Apr 23 @ 10:25 am
AdionPRO InfinityCTOMember since 2006
After using stems_split you could enable the muted stems again to just have a cloned deck
 

geposted Sat 08 Apr 23 @ 11:58 am
djkrysrPRO InfinityMember since 2010
Apologies if this has been asked before but I have a Video Skin and wanted to have text at the bottom of the screen that encourages people to use ask.the.dj.
I am using a textzone with different font sizes & wanted the text to align to the bottom or center of the text line itself however all the text is aligning to the top of the text line.
This is my code, I have looked at the skin wiki but I must be misunderstanding something because it doesn't work as all text is aligned to the top despite the wiki saying it would align center if nothing is specified.

<textzone group="horizontal" align="center">
<size width="1920" height="80" />
<pos x="+0" y="+0"/>
<text font="Helvetica" size="70" weight="bold" color="yellow" valign="bottom" format="ask me or visit "/>
<text font="Helvetica" size="80" weight="bold" color="white" valign="bottom" format="ask.the.dj"/>
<text font="Helvetica" size="70" weight="bold" color="yellow" valign="bottom" format=" for music requests"/>
<text font="Helvetica" size="60" weight="bold" color="yellow" valign="bottom" format=" (pls don't flood)."/>
</textzone>

I have discovered that If I put a 'valign' statement in the <textzone> line, the whole line of text will be aligned accordingly to either the top, center or bottom of the textzone item, altho it still aligns all text to the top of the text line, however this is not documented if I am reading the wiki correctly.

Anway if anyone can shed any light on what I am doing wrong I would greatly appreciate it.

 

geposted Sat 22 Apr 23 @ 4:05 pm
locoDogPRO InfinityModeratorMember since 2013
That align is left|right|center
valign is for cases of vertical text, like above but rotated 90degs
 

geposted Sat 22 Apr 23 @ 4:16 pm
djkrysrPRO InfinityMember since 2010
I see, thank you for pointing that out.
 

geposted Sat 22 Apr 23 @ 4:22 pm
djkrysrPRO InfinityMember since 2010
There is also a command 'dy=' for padding text in a textzone, does that also only work for vertical text?
In essence, is there anyway to have a group of text items within a textzone align with themselves along the bottom of the line rather than the top?
 

geposted Sat 22 Apr 23 @ 4:26 pm
SveninoPRO InfinityMember since 2009
in a Browser with many Songs, how to scroll exact in the middle with just one touch of a button?

Hi everybody, to reach the first song of a browser I use browser_scroll "top"
and to get to the end browser_scroll "bottom".
But how to come in the middle?
First we would need the number of all songs in that browser window. ($NmbOfSongs)
Then we had to divide this by 2 ($HalfNmbOfSongs)
Now we would move to the top ("browser_scroll "top")
And go down the needed number of lines with browser_scroll + "$HalfNmbOfSongs"

It's actually quite easy, but what's the syntax for it?
Any help is appreciated...
 

geposted Wed 26 Apr 23 @ 4:24 pm
locoDogPRO InfinityModeratorMember since 2013
file_count is your number,
param_multiply 0.5 for half
param_cast 'integer' because file count could be an odd number and I don't know if browser scroll would work with a float
param_cast 'relative' as we need a signed value +/-

file_count & param_multiply 0.5 & param_cast 'integer' & param_cast 'relative' & browser_scroll
 

geposted Wed 26 Apr 23 @ 4:51 pm
SveninoPRO InfinityMember since 2009
By the way: Is there a variable that shows if a browser_sort is upwards or downwards?
I want to have a button lighting, if my browser is sorted by BPM.
I tried
browser_sort "bpm" ? color pink : color black

But the pink color comes only, when the bpm is sorted upwards.
With reverse sorting the color is black.

Best option would be:
If I choose Browser sorted by BPM upwards, then the corresponding column in the browser gets green.
(Or the bpm-numbers inside of the column)
When it is sorted by BPM downwards, then the color of the column gets pink...
Would something like that be possible?
 

geposted Wed 26 Apr 23 @ 4:52 pm
SveninoPRO InfinityMember since 2009
locodog wrote :
file_count is your number,
param_multiply 0.5 for half
param_cast 'integer' because file count could be an odd number and I don't know if browser scroll would work with a float
param_cast 'relative' as we need a signed value +/-

file_count & param_multiply 0.5 & param_cast 'integer' & param_cast 'relative' & browser_scroll


Thanks Locodoc, this works fine. Just added browser_scroll top at the start.
By the way, its great to get the solution with explanations. Its a good way to learn...
 

geposted Wed 26 Apr 23 @ 5:03 pm
locoDogPRO InfinityModeratorMember since 2013
Svenino wrote :
By the way: Is there a variable that shows if a browser_sort is upwards or downwards?


see the browser_sort script definition, + or - as the first char of the field will give you specific sort order
browser_sort "+bpm"
 

geposted Wed 26 Apr 23 @ 5:13 pm
SveninoPRO InfinityMember since 2009
uups... got it now. Thanks
 

geposted Wed 26 Apr 23 @ 9:15 pm
Hello friends how are you? I hope I don't bother you, I want to check if you can help me with a script, what I want is to reproduce the event scheduler automatically, I already managed to do it with the keyboard omnit, automatically when opening the program the event scheduler opens but what I want the program to know what day of the week it is and the event of the day opens in the event scheduler, that is, if today is Monday, the program knows that it is Monday and the Monday event opens in the scheduler, I don't know if I know can
 

geposted Sat 20 May 23 @ 11:55 pm
locoDogPRO InfinityModeratorMember since 2013
This will give you a number between 0 & 6, zero = sunday

set $day `countdown '2023/01/01 00:00' '%DD' & param_cast 'int_trunc' & param_mod 7`


so imagining you have events named as the day of the week, then oninint could look something like this
set $day `countdown '2023/01/01 00:00' '%DD' & param_cast 'int_trunc' & param_mod 7` & var $day 0 ? eventscheduler_start 'sunday' : var $day 1 ? eventscheduler_start 'monday' : var $day 2 ? eventscheduler_start 'tuesday' : ... 


I'll leave you to fill the rest of the days.
There are other ways this could work but it depends on how eventscheduler is configured.
 

geposted Sun 21 May 23 @ 12:47 am
is it possible to fully disable split pages (without ´select split page none´)

my pads keep enabling the split mode over and over again

https://youtu.be/F8UAE8op7cg

something like

press button1 page1
hold button1 page1


sorry im a total newb to this
 

geposted Fri 26 May 23 @ 2:21 pm
Has anyone had any luck with scripting a broadcast to a shoutcast server? I want to connect/broadcast to a shoutcast server at a specific time, play a playlist, and end the session and disconnect from the broadcast at a specific time? I cant seem to find anything via search on here. I would really appreciate the help.
 

geposted Thu 01 Jun 23 @ 9:00 am
locoDogPRO InfinityModeratorMember since 2013
everything is accessible via setting script
setting broadcastServer "PRESET" for the preset
& broadcast radio to start.
 

geposted Thu 01 Jun 23 @ 8:21 pm
Thanks for your reply, I realised where I was going wrong. I was preparing the script in me word on my Mac. Word uses different ‘ and “ quotes to vdj script so it was ignoring my commands. It’s now doing what I want and I’m adding more to the process. Thx again
 

geposted Fri 02 Jun 23 @ 9:53 am
SveninoPRO InfinityMember since 2009
If the key of a song is changed, I want to slowly return to the original key with a script.
The process should take about 15-20 seconds per semitone.
I tried the following script wich unfortunately doesn't work:

repeat_start 'KRwait' 500ms & deck left key_smooth +0.02 & 
deck left key_smooth 0 ?
repeat_stop 'KRwait'


I don't know how to check if the original key has already been reached.
In addition, KEY_SMOOTH must be +0.00x if the key has been set lower beforehand.
Otherwise, KEY_SMOOTH would have to be -0.00x...

Unfortunately, I program too rarely to find the solution on my own.
Can anyone help?
Thanks in advance
 

geposted Sat 22 Jul 23 @ 4:23 pm
77%