Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4 - 6 of 3866)

1 2 3 4 5 6 7 8 9 10 11 12
Ticket Resolution Summary Owner Reporter
#1233 Rejected "Deep" global variables not treated as global jchd
Description

The following produces 1 warning and 1 error, both unexpected.

main()
Exit

Func main()
	varset(5)
	varview()
EndFunc

;; in large programs, the following would typically be placed in an include file

Global $unseen	;; the parser reads this (but forgets immediately?)

Func varset($val)
	$unseen = $val
EndFunc

Func varview()
	ConsoleWrite($unseen & @LF)
EndFunc

In this situation globals must precede _indirect_ usage, which is annoying. If the parser finds the functions, it should find the global as well.

Is this fixable under reasonnable effort?

#1748 Wont Fix "Enter" in an Input Box does 2 things Jon bkearan@…
Description

Using Opt("GUIOnEventMode", 1)

Buggy Behavior : When inside an Gui InputBox, pressing the "Enter" key launches two events : the InputBox Event AND the Default Button (last button clicked)

Desired Behavior : Pressing "Enter" key only launches the InputBox Event. Also should be able to define a static default for the "Enter" key and disable the "last button clicked is default" behavior.

(see http://www.autoitscript.com/forum/index.php?showtopic=118921)

#3060 Rejected "Function notes" in helpfile - remarks about @extended mLipok
Description

In https://www.autoitscript.com/autoit3/files/beta/autoit/docs/function_notes.htm

There is nothing about @extended

for example there should be adequate description similar to the following:

@error is always set to 0 when entering in a function.

Please consider extending the documentation in this regard.

1 2 3 4 5 6 7 8 9 10 11 12
Note: See TracQuery for help on using queries.