how can I set virtualdj pro to recognize my settings? for example I would like my skin to start with volume at 75%, my bass, mid, and treble at 25% - how can I do this?
发表时间 Tue 15 Jan 13 @ 6:51 am
Add a line at the bottom of your chosen skin XML (but before </Skin>) as follows:
<INIT action="........"/>
With the text for example as follows: deck left level 80% & deck right level 80% & deck left eq_high 75% & deck left eq_low 60% & deck right eq_high 75% & deck right eq_low 60% & deck left eq_mid 35% & deck right eq_mid 35%
Just use the & to chain commands together.
If you have a controller you can add a mapping for ONINIT and everytime you start VDJ with the controller plugged in it will set accordingly.
Keith
<INIT action="........"/>
With the text for example as follows: deck left level 80% & deck right level 80% & deck left eq_high 75% & deck left eq_low 60% & deck right eq_high 75% & deck right eq_low 60% & deck left eq_mid 35% & deck right eq_mid 35%
Just use the & to chain commands together.
If you have a controller you can add a mapping for ONINIT and everytime you start VDJ with the controller plugged in it will set accordingly.
Keith
发表时间 Tue 15 Jan 13 @ 7:27 am
any reason in particular the INIT line would have to be at the bottom?
发表时间 Tue 15 Jan 13 @ 6:22 pm
Just guessing: You are using actions like "deck left" or "eq_mid" and maybe if you put INIT at the top of your skin file the decks aren't instantiated yet and your script would fail since the XML file is processed top-down.
发表时间 Thu 17 Jan 13 @ 10:21 am