* Скачать плагин можно в разделе Download
SlyControl 2.x
Remote Beeper plugin
Bechikov Alexander aka TeSTeR <sanchello007@mail.ru>
Updated 15/06/03
Events: none
Actions:
RBeep( Command [, *[, *]] )
Commands:
BEEP
BEEPER, frequency , duration
frequency - sound frequency, in Hz
duration - sound duration, in milliseconds
SETDURATION - Set frequency
SETFREQUENCY - Set duration
SBON / SBOFF - Enabple / disable Sound Blaster
SPEAKERON / SPEAKEROFF - Enabple / disable Speaker
NUMON / NUMOFF - Enabple / disable Num Lock
SCROLLON / SCROLLOFF - Enabple / disable Scroll Lock
CAPSON / CAPSOFF - Enabple / disable Caps Lock
Example 1:
RBeep = load( "RemoteBeep\RBeep.dll" )
RBeep( "BEEP" )
Example 2:
RBeep = load( "RemoteBeep\RBeep.dll" )
BlinkTrayIcon = Hook( "REMOTE", *, Enabled, Continue,
0 ){
TrayIcon( 2 )
Timer( 50 )
TrayIcon( 0 )
RBeep( "SCROLLON" )
RBeep( "BEEP" )
#RBeep( "BEEPER", 3333, 15)
#RBeep( "SETDURATION", 233)
#RBeep( "SETFREQUENCY", 6333)
}
|