Se Connecter:     


Forum: General Discussion

Sujet: Lines - Page: 1
Does anyone know where in the code I can find these lines in order to move them? I found others, but not these perpendicular ones.
 

Posté Wed 22 Feb 23 @ 8:27 pm
My suggestion would be:- take a screen grab of the skin, then use image editing s/w to determine the x/y co-ordinates of the line(s), then search the XML for those co-ordinates.
 

search for left side (Line 2556):

<line x="+10" y="+10+90+10+100+10" width="799-307-10" height="2" color="dark" hightlight="hightlight" shadow="shadow" />


and for right side (Line 3588):

<line x="+306" y="+10+90+10+100+10" width="799-306-10" height="2" color="dark" hightlight="hightlight" shadow="shadow"/>
 

It worked, thank you! What about the vertical one?
 

3739

<line x="+0" y="+0" width="2" height="233" color="dark" hightlight="hightlight" shadow="shadow" />

3675

<line x="+304" y="+0" width="2" height="233" color="dark" hightlight="hightlight" shadow="shadow" />
 

It worked! Thank you so much!
 

FYI, the correct parameter name is highlight, not hightlight (in case u need to edit/show this)
 

DJDAD i copyed this lines from the default pro.xml skin ;) i don't changed anything...
This typo is in the pro.xml



 

Yes i know the xml has a typo, that's why the highlight colors are not applied. the correction was in case u wanted to change the colors, so the hightllght wouldnt work.
 

ahhh I understand
 

Does anyone know what line has the gray/green background to decks 3 & 4? I can move the elements within, but I need to move the main canvas down covering the buttons for 1 & 2.
 

check round the MINI DECKS area.
 

Tried it already, not much luck.
 



What are you needing to move?
mini decks are positioned right by
		****************************  
MINI DECKS
****************************


the skin divider(s) you'll find line elements as part of
		****************************  
BROWSER
****************************
 

The big gray/green horizontal gap.
 

that doesn't help me, so good luck.
 

I figured it out. But now I can't find the waveform for deck 3.
 

I'm guessing you didn't change your breakline?
[the part of the skin that resizes to maintain aspect ratio for everything else]
realistically you'd want conditional anyway so remove breakline from the topline of the skin
breakline="675"

is the default
you'll want a whole new lines

<breaklines breakline1="675" condition="var_equal '@$4decks' 0" />
<breaklines breakline1="ABOUT THE SAME Y AS BROWSER POSITION WHEN 4 DECKS" condition="var_equal '@$4decks' 1" />
 

It helped, but it also stretched everything including the knobs and jogwheel.
 

show code you used.
 

80%