Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (220 - 222 of 3893)

Ticket Resolution Summary Owner Reporter
#923 Fixed Tidy upcases .eval COM object method Jos DaleHohm
Description

SciTe Tidy will update the .eval method in the following line:

$o_object.document.parentWindow.eval($s_eval)

and changes it to this:

$o_object.document.parentWindow.Eval($s_eval)

.eval is a JavaScript method and is case sensitive. It is so subtle a change and fails sy cryptically that it is hard find

It would be great if Tidy could be made to ignore keywords when embedded in a form like this.

#924 Fixed _ArrayDelete removes last entry when element beyond Ubound is specified Jpm DaleHohm
Description

In the following example, _ArrayDelete is instructed to delete element 15 even though only elements 0-9 exist.

The call deletes the last element, 9, without error.

It would be nice if the function were reengineered to fail in a case like this (perhaps optionally), but minimally, the documentation should note this behaviour.

Possible wording: Warning: if $iElement references a position beyond the end of the array, the last array element will be deleted.

#include <Array.au3>

Local $avArray[10]

$avArray[0] = "JPM" $avArray[1] = "Holger" $avArray[2] = "Jon" $avArray[3] = "Larry" $avArray[4] = "Jeremy" $avArray[5] = "Valik" $avArray[6] = "Cyberslug" $avArray[7] = "Nutster" $avArray[8] = "JdeB" $avArray[9] = "Tylo"

_ArrayDisplay($avArray, "$avArray BEFORE _ArrayDelete()") _ArrayDelete($avArray, 15) ConsoleWrite(@error & @CRLF) _ArrayDisplay($avArray, "$avArray AFTER _ArrayDelete()")

#1956 Fixed 3.3.7.10 COM error getting reference to document in frame Jon DaleHohm
Description

Released version 3.3.6.1 works as expected. 3.3.7.10 beta triggers COM error when attempting to get a reference to the document object in a frame in the attached sample code.

$oDoc = $oFrame.document

Running:(3.3.7.10):C:\Program Files\AutoIt3\beta\autoit3.exe "C:\3.3.7.10 COM error getting reference to document in frame.au3"

--> COM Error Encountered in 3.3.7.10 COM error getting reference to document in frame.au3










Note: See TracQuery for help on using queries.