Jump to content

Recommended Posts

Posted

Hello all,

I just saw in Java that it is possible to give a variable multiple values, like:

int Positions[] = {12, 44, 192, 444);

So i thought: Maybe this is also possible in autoit?

If you can help me please do :(

Posted

Its possible using an array

local $aPositions[4] = [12, 44, 192, 444]

For $i = 0 To ubound($aPositions)-1 Step 1
    MsgBox(0,$i,$aPositions[$i])
Next
GDIPlusDispose - A modified version of GDIPlus that auto disposes of its own objects before shutdown of the Dll using the same function Syntax as the original.EzMySql UDF - Use MySql Databases with autoit with syntax similar to SQLite UDF.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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