Connexion rapide:  

Forum: General Discussion

Sujet panels slow in showing
I use panels in my skin to alternately show the browser, the playlists, the settings, the sampler, etc.
The switching of one panel to another used to be instantly. Now (VDJ 2024) it is with a considerable delay. Not the whole panel, mind you. Just certain (AFAICS random) graphics take longer to appear. Sometimes more than a second. Sometimes a gray background is shown before the correct graphics appear.

Is this a known problem? With a solution?

Or are there new script code requirements for panels?
 

Posté yesterday @ 6:26 pm
AdionPRO InfinityCTOMember since 2006
Probably the size of the panels doesn't match the content
 

Posté 22 hours ago
@Adion
I'm still looking into this.
For now, I cannot locate any graphics outside of the intended area...
 

Posté 13 hours ago
djdadPRO InfinityDevelopment ManagerMember since 2005
Even though you could just start your panel without adding any pos and size, you could add to help the Engine updating just that area.
<panel name="" etc >
<pos x="" y="" />
<size width="" height=""/>
... followed by your nested items ..
</panel>
and make sure the nested items are within the defined area.

Can you post your code for a panel here ?
 

Posté 12 hours ago
These are the panel selection buttons:

<group name="PANEL SELECTOR">

<button action="set '$MAINPANEL' 0 & var_equal '$SESSION' 1 ? browser_gotofolder 'D:\TROPICAL' & browser_sort 'artist' & browser_sort 'genre' : var_equal '$SESSION' 2 ? browser_gotofolder 'D:\CUSTOM' & browser_sort 'artist' & browser_sort 'genre' : browser_gotofolder 'D:\REGGAE' & browser_sort 'artist' & browser_sort 'genre'">
<size width="46" height="46"/>
<pos x="915" y="487"/>
<up x="915" y="487"/>
<selected x="915" y="1597"/>
</button>

<button action="set '$MAINPANEL' 1">
<size width="46" height="46"/>
<pos x="964" y="487"/>
<up x="964" y="487"/>
<selected x="964" y="1597"/>
</button>

<button action="set '$MAINPANEL' 2">
<size width="46" height="46"/>
<pos x="964" y="535"/>
<up x="964" y="535"/>
<selected x="964" y="1645"/>
</button>

<button action="set '$MAINPANEL' 3 & sideview 'sidelist'">
<size width="46" height="46"/>
<pos x="915" y="535"/>
<up x="915" y="535"/>
<selected x="915" y="1645"/>
</button>

</group>


These are the session selection buttons:


<group name="SESSION SELECTOR">

<button action="cycle '$SESSION' -3">
<size width="46" height="46"/>
<pos x="256" y="952"/>
<up x="34" y="4767"/>
<down x="1157" y="5327"/>
</button>

<button action="cycle '$SESSION' 3">
<size width="46" height="46"/>
<pos x="424" y="952"/>
<up x="202" y="4767"/>
<down x="1324" y="5327"/>
</button>

<group name="SESSION PANNELS">

<panel name="SESSION 0" visible="var '$SESSION' 0">
<size width="114" height="45"/>
<pos x="306" y="952"/>

<button action="browser_gotofolder 'D:\REGGAE.vdjfolder' & browser_window 'folders' & browser_enter & playlist_load & switch_sidelist_playlist">
<size width="114" height="45"/>
<pos x="306" y="952"/>
<up x="1526" y="4707"/>
<down x="1526" y="4517"/>
<selected x="1526" y="4517"/>
</button>

</panel>

<panel name="SESSION 1" visible="var '$SESSION' 1">
<size width="114" height="45"/>
<pos x="306" y="952"/>

<button action="browser_gotofolder 'D:\TROPICAL.vdjfolder' & browser_window 'folders' & browser_enter & playlist_load & switch_sidelist_playlist">
<size width="114" height="45"/>
<pos x="306" y="952"/>
<up x="1526" y="4767"/>
<down x="1526" y="4577"/>
<selected x="1526" y="4577"/>
</button>

</panel>

<panel name="SESSION 2" visible="var '$SESSION' 2">
<size width="114" height="45"/>
<pos x="306" y="952"/>

<button action="browser_gotofolder 'D:\CUSTOM.vdjfolder' & browser_window 'folders' & browser_enter & playlist_load & switch_sidelist_playlist">
<size width="114" height="45"/>
<pos x="306" y="952"/>
<up x="1526" y="4827"/>
<down x="1526" y="4637"/>
<selected x="1526" y="4637"/>
</button>

</panel>

</group>


These are the panels:


<group name="MAIN PANELS">

<panel name="BROWSER" visible="var '$MAINPANEL' 0">
<size width="1427" height="481"/>
<pos x="245" y="594"/>
<up x="24" y="2847"/>
<down x="24" y="2242"/>
<selected x="24" y="2242"/>
etc.
</panel>

<panel name="EFFECTS" visible="var '$MAINPANEL' 1">
<size width="1427" height="481"/>
<pos x="245" y="594"/>
<up x="24" y="2847"/>
<down x="24" y="3357"/>
<selected x="24" y="3357"/>
etc.
</panel>

<panel name="SETTINGS" visible="var '$MAINPANEL' 2">
<size width="1427" height="481"/>
<pos x="245" y="594"/>
<up x="24" y="2847"/>
<down x="24" y="4409"/>
<selected x="24" y="4409"/>
etc.
</panel>

<panel name="SESSION" visible="var '$MAINPANEL' 3">
<size width="1427" height="481"/>
<pos x="245" y="594"/>
<up x="24" y="2847"/>
<down x="24" y="2847"/>
<selected x="24" y="2847"/>
etc.
</panel>

</group>
 

Posté 11 hours ago