AVIConstants.au3 1.5 KB

123456789101112131415161718192021222324252627282930313233
  1. #include-once
  2. ; #INDEX# =======================================================================================================================
  3. ; Title .........: AVI_Constants
  4. ; AutoIt Version : 3.3.14.5
  5. ; Language ......: English
  6. ; Description ...: Constants for <a href="../appendix/GUIStyles.htm#Avi">GUI control AVI styles</a>.
  7. ; Author(s) .....: Valik
  8. ; ===============================================================================================================================
  9. ; #CONSTANTS# ===================================================================================================================
  10. ; Styles
  11. Global Const $ACS_CENTER = 1
  12. Global Const $ACS_TRANSPARENT = 2
  13. Global Const $ACS_AUTOPLAY = 4
  14. Global Const $ACS_TIMER = 8
  15. Global Const $ACS_NONTRANSPARENT = 16
  16. ; Control default styles
  17. Global Const $GUI_SS_DEFAULT_AVI = $ACS_TRANSPARENT
  18. ; Messages
  19. Global Const $__AVICONSTANT_WM_USER = 0x400
  20. Global Const $ACM_OPENA = $__AVICONSTANT_WM_USER + 100
  21. Global Const $ACM_PLAY = $__AVICONSTANT_WM_USER + 101
  22. Global Const $ACM_STOP = $__AVICONSTANT_WM_USER + 102
  23. Global Const $ACM_ISPLAYING = $__AVICONSTANT_WM_USER + 104
  24. Global Const $ACM_OPENW = $__AVICONSTANT_WM_USER + 103
  25. ; Notifications
  26. Global Const $ACN_START = 0x00000001 ; Notifies the control's parent that the AVI has started playing
  27. Global Const $ACN_STOP = 0x00000002 ; Notifies the control's parent that the AVI has stopped playing
  28. ; ===============================================================================================================================