Python winsound.MessageBeep()














































Python winsound.MessageBeep()



The another python winsound function is winsound.MessageBeep(type=MB_OK)

This plays a sound as specified in the registry. The type argument specifies which sound to play; possible values are -1 ,  MB_ICONASTERISK, MB_ICONEXCLAMATION, MB_ICONHAND, MB_ICONQUESTION ,MB_OK all described below. The value -1 produces a “simple beep”; this is the final fallback if a sound cannot be played otherwise. If the system indicates an error,

General syntax for winsound.MessageBeep() is

winsound.MessageBeep(type=MB_OK)
 
Here, type is a winsound.MB_ value that specifies which system sound to play. The following table summarizes the sounds available:
   
             winsound values                                   Corresponding Control Panel Sound

        MB_ICONASTERISK                                      Asterisk
MB_ICONEXCLAMATION Exclamation
MB_ICONHAND Critical Stop
MB_ICONQUESTION Question
MB_OK System Default

NOTE:  if -1 is passed then the default  beep is played


     #code 


import winsound winsound.MessageBeep(winsound.MB_ICONHAND)

     #In the example above, the Critical Stop built-in sound is played using the MessageBeep function.
  
winsound.MessageBeep(winsound.MB_ICONASTERISK)

      #In the example above, the  Asterisk built-in sound is played using the MessageBeep function.


winsound.MessageBeep(winsound.MB_ICONEXCLAMATION )

    #In the example above, the Exclamation built-in sound is played using the MessageBeep function.
  
winsound.MessageBeep(winsound.MB_ICONQUESTION )

       #In the example above, the  Question built-in sound is played using the MessageBeep function.

winsound.MessageBeep(winsound.MB_OK )

      #In the example above, the  System Default built-in sound is played using the MessageBeep function.

winsound.MessageBeep(-1 )

      #In the example above, the   Default built-in sound is played using the MessageBeep function.

 
 
    
x





More Articles of Anmol Agrawal:

Name Views Likes
Python Pendulum Why to use Pendulum 161 0
Python Pendulum Limitations in DJANGO 240 0
Python Pendulum Limitations in MYSQLCLIENT 160 0
Python Pendulum Limitations in SQLITE3 171 0
Python Pendulum Testing 2 165 0
Python Pendulum Testing 198 0
Python Pendulum Range 199 0
Python Pendulum Period 3 172 0
Python Pendulum Period 2 164 0
Python Pendulum Period 166 0
Python Pendulum Properties and Duration Methods 2 172 0
Python Pendulum Properties and Duration Methods 170 0
Python Pendulum Instantiation 169 0
Python Pendulum Duration 157 0
Python Pendulum TImezone usage 2 162 0
Python Pendulum Timezone usage 178 0
Python Pendulum Switching Timezones 160 0
Python Pendulum Shifting Time to Transition 178 0
Python Pendulum Normalization 177 0
Python Pendulum Modifiers 2 178 0
Python Pendulum Modifiers 174 0
Python Pendulum Difference for Humans 2 202 0
Python Pendulum Difference for Humans 196 0
Python Pendulum Difference 226 0
Python pendulum Substraction 189 0
Pyhton pendulum Addition 192 0
Python pendulum Comapaison part 2 197 0
Python Pendulum Comparison 199 0
Python Pendulum Localized Formats and Escaping characteristics 182 0
Python pendulum Tokens 181 0
Python pendulum Formatter 190 0
Python pendulum Common Formats 189 0
Python pendulum String Formatting 199 0
Python pendulum Fluent helpers 2 173 0
Python pendulum Fluent helpers 170 0
Python pendulum Attributes and Properties 197 0
Python pendulum Localization 210 118
Python pendulum parsing 2 203 23
Python pendulum Parsing 1 210 61
Python pendulum 2 231 57
Python pendulum basics 204 9
python library Pendulum 206 33
python winsound.SND_PURGE and winsound.SND_WAIT 247 5
Python winsound.SND_NOSTOP 256 1
Python winsound.SND_NODEFAULT 219 1
python winsound.SND_ASYNC not excecuting problem 224 2
Python winsound functions 274 3
python winsound.SND_ALIAS 258 1
Python winsound.MessageBeep() 391 1
Python winsound basic introduction 358 1

Comments