What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

как вызвать звуковой сигнал \ tell me how to call a signal

RUSmaroder

New Member
Joined
Jul 24, 2015
Messages
69
Reaction score
0
tell me how to call a signal, depending on the script situation. For example, if the logs have the number 6.

Подскажите, как в AB вызвать звуковой сигнал, в зависимости от поведения скрипта, например - если в логах есть цифра 6, включить звуковой сигнал.
 
Add your sound file to resources in VS, and use a library System.Media:
PHP:
SoundPlayer sp = new SoundPlayer(---yournamespace---.sound.---nameofyourfileinrecources---);
sp.Play();
 
Back
Top