Custom Query (3922 matches)
Results (304 - 306 of 3922)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #3964 | Works For Me | Allow EnvGet to support whole strings like _WinAPI_ExpandEnvironmentStrings | ||
| Description |
While _WinAPI_ExpandEnvironmentStrings supports whole strings (but requires an include), EnvGet only allows to input a specific environment variable and even then without percents.
I don't presume to retroactively change that, but what about accepting a secondary optional parameter called $full? That is,
But if If $Full Then
return Execute("'" & StringRegExpReplace($envvariable, "%(\w+)%", "' & EnvGet('$1') & '" ) & "'")
EndIf
This will allow to support commands like |
|||
| #3111 | Fixed | Allow for parallel compilations | ||
| Description |
Hello, In my company we have a lot (around 100-150) of AutoIt programs of various size. So first: thank you for your great language!!! We have a script to compile all our programs. We run it several times a day. We have tried to speed up the compilation duration by calling AutoItWrapper.exe multiple times (in parallel), in order to benefit from all the CPU cores on our server. However that caused us big troubles. For example, some executables were mixed or swapped (i.e. programA.exe and programB.exe are both the executable file for programA.au3, and the code in programB.au3 is compiled nowhere). To reproduce, just try to Run() 3 or 4 AutoItWrapper.exe programs in parallel. Could you please try to solve this issue, as it would really improve our compilation time ? Thank you!!!! |
|||
| #79 | Completed | Allow searching for windows/controls by position. | ||
| Description |
Expand the advanced window descriptor to use X, Y, W, H for match criteria. Example usage: ControlClick($hWnd, "", "[CLASS:BUTTON]; X:10; Y:10; W:50; H:25") Which would search for a button at position 10,10 with a width of 50 and height of 25. Unspecified parameters should be ignored. |
|||
