Modify ↓
Opened 9 years ago
Closed 9 years ago
#3168 closed Bug (Duplicate)
Missing constants from AutoItConstants.au3
Reported by: | timrude@… | Owned by: | |
---|---|---|---|
Milestone: | Component: | Other | |
Version: | 3.3.14.2 | Severity: | None |
Keywords: | Cc: |
Description
In the help topic for the GetWinState function, it lists the various return values. Immediately below that list it says Constants are defined in "AutoItConstants.au3".
However, the various '$WIN_STATE_...' constants are NOT defined in the AutoItConstants.au3 file, but really should be as follows:
; GetWinState Constants Global Const $WIN_STATE_EXISTS = 1 ; Window exists Global Const $WIN_STATE_VISIBLE = 2 ; Window is visible Global Const $WIN_STATE_ENABLED = 4 ; Window is enabled Global Const $WIN_STATE_ACTIVE = 8 ; Window is active Global Const $WIN_STATE_MINIMIZED = 16 ; Window is minimized Global Const $WIN_STATE_MAXIMIZED = 32 ; Window is maximized
Attachments (0)
Change History (1)
comment:1 Changed 9 years ago by mLipok
- Resolution set to Duplicate
- Status changed from new to closed
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
Note: See
TracTickets for help on using
tickets.
https://www.autoitscript.com/trac/autoit/ticket/3116