Jump to content

iniwritesection array


Recommended Posts

The data to write. The data can either be a string or an array. If the data is a string, then each key=value pair must be delimited by @LF. If the data is an array, the array must be 2-dimensional and the second dimension must be 2 elements.

I don't quite understand this. I know what @LF but for the data being an array, how exactly should I arrange my data?

Link to comment
Share on other sites

  • Developers

I don't quite understand this. I know what @LF but for the data being an array, how exactly should I arrange my data?

Have you looked at the examples that show how its done ?

:)

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • Developers

yes, but this doesn't work.

$data[2][2] = [["x_offset", $x_offset] , ["y_offset", $y_offset ]]

Would help when you specify what isn't working......

This example works for me:

$x_offset = 1
$y_offset = 2
Dim $data[2][2] = [["x_offset", $x_offset],["y_offset", $y_offset]]
IniWriteSection("test.ini", "SectionTest", $Data, 0)

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

  • Developers

Dim $data
Dim $x_offset = 1
Dim $y_offset = 1

$data[2][2] = [["x_offset", $x_offset],["y_offset", $y_offset]]
IniWriteSection("test.ini", "SectionTest", $Data, 0)

This doesn't work for me, btw I am using

autoit-v3.2.4.0-rc1-setup.exe 07-May-2007 03:17 3.9M

from http://www.autoitscript.com/autoit3/files/beta/autoit/

You are missing the Dim Statement!

Dim $data[2][2] = [["x_offset", $x_offset],["y_offset", $y_offset]]

:)

SciTE4AutoIt3 Full installer Download page   - Beta files       Read before posting     How to post scriptsource   Forum etiquette  Forum Rules 
 
Live for the present,
Dream of the future,
Learn from the past.
  :)

Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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