Custom Query
Results (148 - 150 of 3841)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#3251 | No Bug | @ScriptLineNumber as optional parameter in stripped script not working as expectde | cosote@… | |
Description |
@ScriptLineNumber as optional parameter is quite useful for custom debug/trace functions. And the value is from caller scope as I hoped. Unfortunately the Au3Stripper /rsln is not putting the line# in function call, rather as default option in func declaration. Only work-a-round I see currently is putting the @ScriptLineNumber in all calls as parameter... |
|||
#687 | No Bug | @Unicode | exodius | |
Description |
Per the Changelog dated 16th May, 2008 - v3.2.12.0: Changed: @Unicode renamed in @AutoItUnicode. @Unicode is an alias for now. It will be removed > 3.2.14.0 @AutoItUnicode appears in the Macro Reference list/Index of the current production version (3.2.12.1) but doesn't appear in Macro Reference list/Index of the current Beta(3.2.13.10). GuiCtrlCreateDate's example still uses @Unicode. And finally, neither @AutoItUnicode nor @Unicode appear in the SciTe lexer/suggestions (so the use of either throws potential error warnings). |
|||
#998 | Rejected | @VirtualDesktopWidth + @VirtualDesktopHeight + @DesktopMonitors | Valik | Zedna |
Description |
According to this topic http://www.autoitscript.com/forum/index.php?showtopic=48530&st=15&p=367172&#entry367172 It will be good to add new macros
for multi monitor machines. $SM_CXVIRTUALSCREEN = 78 $SM_CYVIRTUALSCREEN = 79 $VirtualDesktopWidth = DLLCall("user32.dll", "int", "GetSystemMetrics", "int", $SM_CXVIRTUALSCREEN) $VirtualDesktopWidth = $VirtualDesktopWidth[0] $VirtualDesktopHeight = DLLCall("user32.dll", "int", "GetSystemMetrics", "int", $SM_CYVIRTUALSCREEN) $VirtualDesktopHeight = $VirtualDesktopHeight[0] Maybe also: @DesktopMonitors - number of display monitors on a desktop $SM_CMONITORS = 80 $DesktopMonitors = DLLCall("user32.dll", "int", "GetSystemMetrics", "int", $SM_CMONITORS) $DesktopMonitors = $DesktopMonitors[0] MSDN link for GetSystemMetrics: http://msdn.microsoft.com/en-us/library/ms724385(VS.85).aspx |