Notifications
Clear all

[Closed] dotNet SystemSound ?

Hi all.
Please explane me how to make 3dsmax Beep?
I found in dotNet somthing like this – System.Media.SystemSound and SystemSounds.Asterisk.Play()
But I dont know how to make it work. (

Trying code like this:
mplay = dotNetObject “System.Media.SystemSound” SystemSound.Beep –here is problem I think.
mplay.play

2 Replies

Something like:

ssounds = dotNetClass "System.Media.SystemSounds" 
ssounds.Asterisk.Play()
ssounds.Beep.Play()
ssounds.Exclamation.Play()
ssounds.Hand.Play()

Thank you very much Biddle.
I thinked I tried this but its won`t work for me… may be I miss somethink. Now all work fine. Thank you. )