Quick Sign In:  

Forum: VirtualDJ Skins

Topic: browser zoom help?

This topic is old and might contain outdated or incorrect information.

im use vdj 8 & trying to make browser zoom with vdj 7 skin. I get confused because the player still appears on the browser list...can someone help me? Thanks :)
this is the xml :
<pannel id="default_browser" group="filebrowser" visible="yes">
<browser>
<size width="1259" height="322"></size>
<pos x="10" y="437"></pos>
</browser>
</pannel>

<pannel id ="large_browser" group="filebrowser" visible="no">
<browser>
<size width="1259" height="656"></size>
<pos x="10" y="104"></pos>
</browser>
</pannel>

<button action="skin_pannel 'default_browser' on ? skin_pannel 'large_browser' on : skin_pannel 'large_browser' on ? skin_pannel 'default_browser' on">
<tooltip>Browser Size</tooltip>
<size width="10" height="10"/>
<pos x="237" y="8"/>
<over x="763" y="3596"/>
<down x="763" y="3596"/>
</button>
Did i miss something?
 

Posted Fri 29 May 15 @ 3:07 am
<button action="skin_pannel 'default_browser' on ? skin_pannel 'large_browser' on : skin_pannel 'default_browser' on">
<tooltip>Browser Size</tooltip>
<size width="10" height="10"/>
<pos x="237" y="8"/>
<over x="763" y="3596"/>
<down x="763" y="3596"/>
</button>
 

Posted Fri 29 May 15 @ 5:47 am
Thank you djtouchdan...i copy your xml ,but the player still appears (its double the player & the browser)
i dont know how to put a picture in this message,so i can show you.
sorry for my english :)
 

Posted Fri 29 May 15 @ 7:57 am
djdadPRO InfinityDevelopment ManagerMember since 2005
Here is what you should do...

1. Nest the entire normal skin inside a <panel></panel> (probably you need to leave the top panel with the clock, cpu etc outside this panel) like this..


<panel name="default_browser" group="filebrowser" visible="yes">
...
..
decks..
..
mixer...
..
etc..


<browser>
<size width="1259" height="322"></size>
<pos x="10" y="437"></pos>
</browser>

</panel>


Then right after the end of this panel, create the 2nd panel with the large browser like this..

<panel name ="large_browser" group="filebrowser" visible="no">
<browser>
<size width="1259" height="656"></size>
<pos x="10" y="104"></pos>
</browser>
...
and anything else you need to have here.
</panel>

The button to switch panels can be easily assigned as ..
<button action="skin_panelgroup 'filebrowser' +1">
<tooltip>Browser Size</tooltip>
<size width="10" height="10"/>
<pos x="237" y="8"/>
<over x="763" y="3596"/>
<down x="763" y="3596"/>
</button>
 

Posted Fri 29 May 15 @ 8:26 am
Thank you for your help djdad...still no luck for me, im use vdj7 default skin.
maybe i still confused because my english or just a beginner to understand how to modify the skin : D
 

Posted Fri 29 May 15 @ 9:17 am


(Old topics and forums are automatically closed)