Setup guide
JScript examples:
OSD.Show(osdVolume,Mixer.Playback(0).Name+" Volume",Mixer.Playback(0).Volume);
//Same as Mixer.Playback(0).Volume.ShowOSD();
OSD.Show(osdMute,Mixer.Playback(0).Name+" Volume",Mixer.Playback(0).Volume);
//Same as Mixer.Playback(0).Mute.ShowOSD();
OSD.Show(osdText,"Hello World");
//Same as Alert("Hello World");
OSD.Show(osdHTML,"<p align='center'><b><i>Hello World</i></b></p>");
Power Object
The Power object contains power management related properties and methods
Power
osdTreble
Param1
is a string that is to be displayed above the graphical representation of the current
treble value.
Param2
is an unsigned number containing the current treble value in percent (0..100)
osdBass
Displays the Bass OSD.
Param1
is a string that is to be displayed above the graphical representation of the current bass
value.
Param2
is an unsigned number containing the current bass value in percent (0..100)
osdPanning
Displays the Panning OSD.
Param1
is a string that is to be displayed above the graphical representation of the current
Panning value.
Param2
is an signed number containing the current Panning value in percent (-100..+100).
osdFader
Displays the Fader OSD.
Param1
is a string that is to be displayed above the graphical representation of the current
Fader value.
Param2
is a signed number containing the current Fader value in percent (-100..+100)
osdMute
Displays the Volume OSD with a Mute icon in the upper right corner.
Param1
is a string that is to be displayed above the graphical representation of the current
volume.
Param2
is an unsigned number containing the current volume in percent (0..100)
osdProgress
Displays a progress meter similar to the Volume OSD, but without icon.
Param1
is a string that is to be displayed above the progress meter.
Param2
is an unsigned number containing the progress value in percent (0..100)
osdText
Displays a text OSD. Similar to calling the Alert method.
Param1
can be a string or a Window object. In the latter case, the window's title and its icon is
shown.
Param2
is ignored.
osdHTML
Displays HTML formatted text.
Param1
is a string containing the HTML portion between the <BODY></BODY> tags (without
these tags).
Param2
is ignored.