﻿id	summary	reporter	owner	description	type	status	milestone	component	version	severity	resolution	keywords	cc
3705	Fixed: Assigning objects by reference to COM properties	MrCreatoR <mrgeorge.sandler@…>		"The fix described in the title probably broke new feature added in 3.3.10.0:

{{{
Changed: Run-time errors on objects no longer fatal (execution of the script is not halted).
}}}

Here is an example that works in 3.3.10.x, but produces fatal error in 3.3.14.x:

{{{
$oDict = ObjCreate('Scripting.Dictionary')

$oDict.Add('test', 'ok')
ConsoleWrite($oDict.Item('test') & @CRLF)

$oDict.Remove('test')

;Purpesly remove again not existing item, which will produce fatal error in 3.3.14.x
;Uncomment condition to solve this issue
;If $oDict.Exists('test') Then
    $oDict.Remove('test')
;EndIf
}}}
"	Bug	closed		AutoIt	3.3.14.0	None	No Bug		
