home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Freelog 117
/
FreelogNo117-OctobreNovembre2013.iso
/
Theme
/
8GadgetPack
/
8GadgetPackSetup.msi
/
Gadgets.7z
/
Gadgets
/
Volume_Control.gadget
/
settings.js
< prev
next >
Wrap
Text File
|
2010-08-13
|
1KB
|
46 lines
/////////////////////////////////////////////////////////////////////////////////////
// //
// Volume Control Gadget 1.2 by Orbmu2k ⌐ 2007 //
// //
// Copyright ⌐ 2007 Orbmu2k. All rights reserved. //
// //
// http://blog.orbmu2k.de //
// //
// Email: sidebargadget@orbmu2k.de //
// //
/////////////////////////////////////////////////////////////////////////////////////
System.Gadget.onSettingsClosing = SettingsClosing;
function onLoad()
{
initSettings();
}
function onUnload()
{
}
function SettingsClosing(event)
{
if (event.closeAction == event.Action.commit)
saveSettings();
event.cancel = false;
}
function initSettings()
{
loadSettings();
}
function loadSettings()
{
background.value = System.Gadget.Settings.read("background");
}
function saveSettings()
{
System.Gadget.Settings.write("background", background.value);
}