Ingresar:     


Forum: General Discussion

Tópico: Browser Font problems!!

Este tópico es antiguo y puede contener información incorrecta para la nueva versión.

on the wego skin of VDJ Le there is an option about browser font size. it makes the font size up to 3 sizes. but when i set my desired size and close VDJ its set up again back to default. how can i fix this to a permanent solution?
 

Mensajes Thu 01 Aug 13 @ 10:27 am
The 3 different browser font sizes are actually different panels. Those are defined properly and the status of them is saved in the registries properly. However, there is probably a software bug there, which makes the panel saved selection for the browsers not working.

This is something that will be fixed in next version, as there will be no need to use panels for different browser sizes. But for now, you cant change that behaviour.
 

i use 1024*768 dimension. so if i change the font style the resolution goes 1200*800 ? or it just change the font size?
 

you lost me completely here :)
Why dont you try the Greek forums ?
 

Oh my bad... i just read your answer again.

now i can undestand, i saw also the xml file that had 3 panels, one for each font size.

can we make the default font size bigger from inside the xml? i couldnt fully understand the code, i am a junior programmer though...

 

yep just change the 'size' node in the browser section eg.

<browser pannel="debugOn">
<size width="1920" height="1"/>
<pos x="0" y="1079"/>
<text font="arial greek" size="15" color="#808080" selected="#023347" stripes="#2a2a2a" unfocused="#606060"/>
<options font="arial greek" size="13" color="#2b2b3c" selected="#2b2b3c" over="#ff2b3c"/>
<widgets font="arial greek" size="13" color="#FFFFFF" facecolor="#2E2E3E"
lightcolor="#2E2E2E"
shadowcolor="#2E2E2E"
highlightcolor="transparent"
darkshadowcolor="transparent"
trackcolor1="transparent"
trackcolor2="transparent"/>
</browser>
 

ye but in wego skin its like this...

************************************************************
BROWSER
************************************************************
---- panels for font size -----
--- 2decks mode---
<panel panel="2decks" id="browser_fontsize2_15" group="browsers2" visible="no">
<size width="1007" height="276" />
<pos x="8" y="361"/>
<down x="+0" y="+0"/>
</panel>
<panel panel="2decks" id="browser_fontsize2_16" group="browsers2" visible="yes">
<size width="1007" height="276" />
<pos x="8" y="361"/>
<down x="+0" y="+0"/>
</panel>
<panel panel="2decks" id="browser_fontsize2_17" group="browsers2" visible="no">
<size width="1007" height="276" />
<pos x="8" y="361"/>
<down x="+0" y="+0"/>
</panel>
<panel panel="2decks" id="browser_fontsize2_18" group="browsers2" visible="no">
<size width="1007" height="276" />
<pos x="8" y="361"/>
<down x="+0" y="+0"/>
</panel>
<button panel="2decks" action="skin_panel 'browser_fontsize2_18' on ? skin_panel 'browser_fontsize2_17' on : skin_panel 'browser_fontsize2_17' on ? skin_panel 'browser_fontsize2_16' on : skin_panel 'browser_fontsize2_16' on ? skin_panel 'browser_fontsize2_15' on : nothing" >
<tooltip> Click to decrease Browser Font size</tooltip>
<pos x="105" y="345"/>
<size width="9" height="12"/>
<over x="884" y="1125"/>
<down x="884" y="1125"/>
<up x="105" y="345"/>
</button>
<button panel="2decks" action="skin_panel 'browser_fontsize2_15' on ? skin_panel 'browser_fontsize2_16' on : skin_panel 'browser_fontsize2_16' on ? skin_panel 'browser_fontsize2_17' on : skin_panel 'browser_fontsize2_17' on ? skin_panel 'browser_fontsize2_18' on : nothing" >
<tooltip> Click to increase Browser Font size</tooltip>
<pos x="136" y="345"/>
<size width="9" height="12"/>
<over x="915" y="1125"/>
<down x="915" y="1125"/>
<up x="136" y="345"/>
</button>

--- 4decks mode---
<panel panel="4decks" id="browser_fontsize4_15" group="browsers4" visible="no">
<size width="1007" height="190" />
<pos x="8" y="446"/>
<down x="+0" y="+0"/>
</panel>
<panel panel="4decks" id="browser_fontsize4_16" group="browsers4" visible="yes">
<size width="1007" height="190" />
<pos x="8" y="446"/>
<down x="+0" y="+0"/>
</panel>
<panel panel="4decks" id="browser_fontsize4_17" group="browsers4" visible="no">
<size width="1007" height="190" />
<pos x="8" y="446"/>
<down x="+0" y="+0"/>
</panel>
<panel panel="4decks" id="browser_fontsize4_18" group="browsers4" visible="no">
<size width="1007" height="190" />
<pos x="8" y="446"/>
<down x="+0" y="+0"/>
</panel>
<button panel="4decks" action="skin_panel 'browser_fontsize4_18' on ? skin_panel 'browser_fontsize4_17' on : skin_panel 'browser_fontsize4_17' on ? skin_panel 'browser_fontsize4_16' on : skin_panel 'browser_fontsize4_16' on ? skin_panel 'browser_fontsize4_15' on : nothing" >
<tooltip> Click to decrease Browser Font size</tooltip>
<pos x="105" y="431"/>
<size width="9" height="12"/>
<over x="884" y="1125"/>
<down x="884" y="1125"/>
<up x="105" y="345"/>
</button>
<button panel="4decks" action="skin_panel 'browser_fontsize4_15' on ? skin_panel 'browser_fontsize4_16' on : skin_panel 'browser_fontsize4_16' on ? skin_panel 'browser_fontsize4_17' on : skin_panel 'browser_fontsize4_17' on ? skin_panel 'browser_fontsize4_18' on : nothing" >
<tooltip> Click to increase Browser Font size</tooltip>
<pos x="136" y="431"/>
<size width="9" height="12"/>
<over x="915" y="1125"/>
<down x="915" y="1125"/>
<up x="136" y="345"/>
</button>

from the code above, as i read it.
maybe its the highlighted "yes" that enables the current size? does any1 know for sure?



EDIT: yes thats its. the one u check as yes, its the default size u will have.
 

that's the panels, but the actual browsers arr their own separate node. if you search for the strings

panel="browser_fontsize2_16"

panel="browser_fontsize4_16"

it will take you to the respective browser node where you can modify the default size of the text.

you could also search for

</browser>

and you will get to the browsers, but remember their are 6 browsers, you want the one that ends in '_16'
 

i think my way its more simple. i just choose to activate the browser panel with the biggest font size that already exists. that the panel="browser_fontsize2_18

so i check him "yes" and the 16 one "no" and thats all,with your way u change the font size for the first panel thats already active. or u can set a font size that doesnt exists already.
 



(Los tópicos y foros antiguos son automáticamente cerrados)