Changes between Initial Version and Version 7 of Ticket #2088
- Timestamp:
- 01/03/12 12:40:35 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2088
- Property Summary changed from Modify _ArrayDisplay to _ArrayDisplay not handling Default parameters correctly
-
Ticket #2088 – Description
initial v7 1 See this link : [http://www.autoitscript.com/forum/topic/136100-modify-arraydisplay/page__pid__951289#entry951289] 1 Parameter being Default keyword is treated as literal string and is displayed in that manner. 2 Default keyword should trigger default behavior, meaning default value of the parameter should be loaded in that case. 2 3 3 The behaviour of _ArrayDisplay should be modified. 4 {{{ 5 #include <Array.au3> 6 7 Local $aArray[3] = [100, 200, 300] 8 _ArrayDisplay($aArray, Default, Default, Default, Default, Default, Default) 9 10 }}} 11 12 The original forum discussion: [http://www.autoitscript.com/forum/topic/136100-modify-arraydisplay/] 13