Is there a VDJScript command that will open the sideview?
geposted Tue 27 Jun 17 @ 7:45 pm
show_splitpanel 'sideview'
geposted Wed 28 Jun 17 @ 8:15 am
Thank you that opened the sideview however if the sideview is already open it closes it. Would you know a way to test if it's already open or closed?
This is what I'm currently using:
<button action="sideview 'Automix' & show_splitpanel 'sideview'">
This is what I'm currently using:
<button action="sideview 'Automix' & show_splitpanel 'sideview'">
geposted Wed 28 Jun 17 @ 9:18 am
show_splitpanel 'sideview' ? nothing : show_splitpanel 'sideview'
or
sideview 'Automix' & show_splitpanel 'sideview' ? nothing : show_splitpanel 'sideview'
to combine with selecting Automix view
or
sideview 'Automix' & show_splitpanel 'sideview' ? nothing : show_splitpanel 'sideview'
to combine with selecting Automix view
geposted Wed 28 Jun 17 @ 11:19 am
Thank you
geposted Wed 28 Jun 17 @ 11:47 am