View Single Post
  #65  
Unread 10-22-2007, 11:31 AM
Eshaac's Avatar
Eshaac Eshaac is offline
A Griffon
Interface Author - Click to view interfaces
 
Join Date: Apr 2005
Server: Test
Posts: 160
Default

Quote:
Originally Posted by greyhare View Post
Ok I followed the edit listed in the other thread to fix my volume but it is still resetting itself. Are there any other suggestions?

Here is what I do to get me volume ta stay where I put it.

Open/edit your eq2ui_mainhub_startbutton.xml

at the top line 2 should look like this

<Page Activated="true" alwaysonbottom="false" eq2usescomwndcontrols="true" Location="698,0" MaximumSize="1024,1024" Name="StartButton" PackLocation="left,top" PackLocationProp="0698/0001,0000/0001" savessettings="true" ScrollExtent="36,82" Size="36,82" UserMovable="true" VolCombat="10" VolMaster="20" VolMusic="10">

note: volmaster="20"

now go to bottom of the file ..

for me it starts at line 48

<Button LocalText="Reset Volume" Location="3,81" Name="ResetVol" OnPress="parent.MasterVolume.Slider.Value=parent.VolMaster
parent.MasterVolume.Slider.Change=true
parent.MusicVolume.Slider.Value=parent.VolMusic
parent.MusicVolume.Slider.Change=true
parent.CombatVolume.Slider.Value=parent.VolCombat
parent.CombatVolume.Slider.Change=true
" ScrollExtent="91,24" Size="91,24" Style="/Fetish.ButtonStyles.text_button">Reset Volume</Button>
<Page LocalTooltip="Master Volume Control" Location="34,2" Name="MasterVolume" ScrollExtent="60,26" Size="60,26" Tooltip="Master Volume Control">
<Sliderbar Location="1,11" Name="Slider" OnChange="
Master_Volume=(Value/20)
Master_Volume=(Value/20)
Parent.Val.text=(Master_Volume)
" ScrollExtent="60,13" Size="60,13" Style="/Fetish.SliderbarStyles.horz_sliderbar" UpperLimit="20" Value="20"/>
<Text AbsorbsInput="false" Font="/Fetish.Fonts.FontArial14T" LocalText="Master" Location="2,0" Name="Label" ScrollExtent="40,16" Size="40,16" TextColor="#88CCFF">Master</Text>
<Text AbsorbsInput="false" Font="/Fetish.Fonts.FontArial14T" LocalText="1.000" Location="43,0" Name="Val" ScrollExtent="18,22" Size="18,16" TextColor="#88CCFF">1.000</Text>
</Page>
<Page LocalTooltip="Ambient Music Volume Control" Location="34,27" Name="MusicVolume" ScrollExtent="60,26" Size="60,26" Tooltip="Ambient Music Volume Control">
<Sliderbar Location="1,11" Name="Slider" OnChange="
Music_Volume=(Value/20)
Music_Volume=(Value/20)
Parent.Val.text=(Music_Volume)
" ScrollExtent="60,13" Size="60,13" Style="/Fetish.SliderbarStyles.horz_sliderbar" UpperLimit="20" Value="10"/>
<Text AbsorbsInput="false" Font="/Fetish.Fonts.FontArial14T" LocalText="Music" Location="2,0" Name="Label" ScrollExtent="40,16" Size="40,16" TextColor="#88CCFF">Music</Text>
<Text AbsorbsInput="false" Font="/Fetish.Fonts.FontArial14T" LocalText="0.500" Location="43,0" Name="Val" ScrollExtent="18,22" Size="18,16" TextColor="#88CCFF">0.500</Text>
</Page>
<Page LocalTooltip="Combat Music Volume Control" Location="34,54" Name="CombatVolume" ScrollExtent="60,26" Size="60,26" Tooltip="Combat Music Volume Control">
<Sliderbar Location="1,11" Name="Slider" OnChange="
Combat_Music_Volume=(Value/20)
Combat_Music_Volume=(Value/20)
Parent.Val.text=(Combat_Music_Volume)
" ScrollExtent="60,13" Size="60,13" Style="/Fetish.SliderbarStyles.horz_sliderbar" UpperLimit="20" Value="10"/>
<Text AbsorbsInput="false" Font="/Fetish.Fonts.FontArial14T" LocalText="Combat" Location="2,0" Name="Label" ScrollExtent="40,16" Size="40,16" TextColor="#88CCFF">Combat</Text>
<Text AbsorbsInput="false" Font="/Fetish.Fonts.FontArial14T" LocalText="0.500" Location="43,0" Name="Val" ScrollExtent="18,22" Size="18,16" TextColor="#88CCFF">0.500</Text>


Done. Now I have control and volume is set to where " I " want it.

note; I notice on the latest version "9.2" the "value="#" is missing/has been removed. If you can not find it, place it after the "upperlimit="#" entry. and you should be set.

Last edited by Eshaac : 10-22-2007 at 11:45 AM.