I know i can make things happen based on certain things, Like Visibility="not_loaded", but i can't find a list of the things i can query, like how do i set visibility based on if the deck is playing or stopped? Or Paused, as opposed to stopped... etc...
Inviato Wed 01 Feb 17 @ 12:35 am
"playing ? parameter 1:parameter 2"
not sure if you have looked at this stuff but it may help -> http://www.virtualdj.com/wiki/VDJ8script.html
there is a list of verbs then examples at the bottom
not sure if you have looked at this stuff but it may help -> http://www.virtualdj.com/wiki/VDJ8script.html
there is a list of verbs then examples at the bottom
Inviato Wed 01 Feb 17 @ 1:08 am
well, sure, I have... but there is no verb "Playing" listed there...
In fact, "visibility" is not listed either....
In fact, "visibility" is not listed either....
Inviato Wed 01 Feb 17 @ 1:35 am
Play is the verb any verb that can be queried (returns true or false) can be used, I believe querying sliders gives transparency based on the slider value
Visibility is a skin condition based on the verb queried.
Visibility is a skin condition based on the verb queried.
Inviato Wed 01 Feb 17 @ 3:31 am
and where can I read more about that? a text search of the VDJ wiki produced very little results for the text "visibility"....
EDIT: Ok, i found a bit, still no list of what i can pass to it... I'd like to have something visible when song_pos = 0, but otherwise not visible.
EDIT: Ok, i found a bit, still no list of what i can pass to it... I'd like to have something visible when song_pos = 0, but otherwise not visible.
Inviato Wed 01 Feb 17 @ 3:33 am
read the skin wiki, dissect other skins
visibility="song_pos 0"
visibility="song_pos 0"
Inviato Wed 01 Feb 17 @ 4:19 am
Aha... I tried "song_pos = 0"...
Been reading the wiki since i posted...
Been reading the wiki since i posted...
Inviato Wed 01 Feb 17 @ 4:20 am
one more then, if you don't mind, i can't find anything about reversing the rotation direction of a spinning graphic...
Also, it's difficult to find skins that do what i want them to do, makes it hard to find examples...
Also, it's difficult to find skins that do what i want them to do, makes it hard to find examples...
Inviato Wed 01 Feb 17 @ 4:22 am
I believe...., but skinning isn't my thing
get_rotation & param_invert
best explain what you are wanting
get_rotation & param_invert
best explain what you are wanting
Inviato Wed 01 Feb 17 @ 4:30 am
Thank you for your help, that worked. but song_pos 0 did not. thats ok tho, i'll get it eventually. sorry to be a bother!
Inviato Wed 01 Feb 17 @ 4:34 am
Ha Ha! song_pos = 0 makes the graphic fade in as the song progresses!!!
That will be handy to know for the future!
That will be handy to know for the future!
Inviato Wed 01 Feb 17 @ 4:46 am
it won't be
song_pos = 0
what vdj will see is
song_pos
which will return a value from 0% to 100%
try
song_pos 0 ? on : off
song_pos = 0
what vdj will see is
song_pos
which will return a value from 0% to 100%
try
song_pos 0 ? on : off
Inviato Wed 01 Feb 17 @ 4:52 am
my mistake, i typed it wrong... "song_pos 0" makes it fade in. i failed to notice my mistake in the post, sorry
Inviato Wed 01 Feb 17 @ 4:54 am