Jump to content

Recommended Posts

  • Administrators
Posted

File Name: AutoIt v3.3.13.3 Beta

File Submitter: Jon

File Submitted: 15 Jul 2014

File Category: Beta



3.3.13.3 (15th July, 2014) (Beta)
AutoIt:
- Fixed #2626: ControlGetText(), WinGetText(), WinGetTitle() wrong encoding for some words.
- Fixed: FileCopy() regression from last beta on UNC paths.

UDFs:
- Added: $SS_ENHMETAFILE, $SS_REALSIZECONTROL, $STM_SETICON, $STM_GETICON, $STM_SETIMAGE, $STM_GETIMAGE to StaticConstants.au3.



Click here to download this file

  • Administrators
Posted (edited)

Also enabled an updated version of the experimental datatype from way back. An idea of the syntax is below

Dim $var[]
$var["hello1"] = "1111"
$var["HELLO1"] = "1111 - CAPS"
$var.hello2 = "2222"
$var[3] = "3333"
$var.Append("4444")

MsgBox(0, "", $var["hello1"])
MsgBox(0, "", $var["HELLO1"])
MsgBox(0, "", $var.hello2)
MsgBox(0, "", $var[3])
MsgBox(0, "", $var[4])

MsgBox(0, "Exists - hello1", $var.Exists("hello1"))
MsgBox(0, "Exists - hello9", $var.Exists("hello9"))

For $key In $var.keys()
   MsgBox(0, "Keys", "Key: " & $key & @CRLF & "Key type: " & VarGetType($key))
Next

For $item In $var
   MsgBox(0, "Items", "Item: " & $item)
Next

$var.Remove("hello2")

For $key In $var.keys()
   MsgBox(0, "Keys", "Key: " & $key & @CRLF & "Key type: " & VarGetType($key))
Next

Experimental, may be removed, yadda yadda yadda.

It's like a php map/lua table combo.

Keys are string or integer and order is maintained based on the order they are added. String keys are case sensitive (for now).

Keys can be enumerated with Keys() in a For In loop. Key type can be checked with VarGetType/IsString.

Items can be enumerated with For In loop.

Check if a key exists using Exists()

Remove items using Remove()

Unnamed items can be added using Append(). These are given the largest integer key so far (php influence).  Maybe remove Append() and overload the += operator - not sure.

 

Edit: Oh and I had to rewrite half of the COM parser to make this work how I wanted. I may have broken all of COM. :)

Edited by Jon
Posted

is this any issue with version number ?

http://www.autoitscript.com/trac/autoit/milestone/3.3.12.3

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

  Reveal hidden contents

Signature last update: 2023-04-24

Guest
This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...