Custom Query (3910 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (319 - 321 of 3910)

Ticket Resolution Summary Owner Reporter
#2505 Duplicate Array create without declaration anonymous
Description
Local $aData = ['p','e','t']
;OR
_my(['p','e','t'])
Func _my($aD)
	;...
EndFunc

;OR
Local $aData[1][3]  ;create array
$aData[0] = ['p','e','t'] ;fill the first element
;must be the same as
;Local $aData[1][3]
;$aData[0][0] = 'p'
;$aData[0][1] = 'e'
;$aData[0][2] = 't'
#1405 Rejected Array definition, less strict data-part format. anonymous
Description

Just a idea. possible less strict array definition data-part format so,

Global $array[ 3] = ["", "", 3]

can be written as,

Global $array[ 3] = [, ,3]

or,

Global $array[ 3][ 3][ 3] = [""],[""],["",],[""],[,""],[""],["", "", 3]

as,

Global $array[ 3][ 3][ 3] = [, ,[, ,[, ,3]]]

#901 Rejected Array in array Kip
Description

I would love it if AutoIt had the possibility to insert arrays in arrays. I know it's possible, but the helpfile says that it slows the script down.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.