i have text file with some coordinates like this:
123,434
453,975
827,832
...
i want to make a script to copy those coords in another file like this:
$A[1]="123"
$A[2]="453"
$A[3]="827"
.....
and
$B[1]="434"
$B[2]="975"
$B[3]="832"
...
Can u help me out? thankyou
i have something like
$Array[0]="606"
$Array[1]="601"
$Array[2]="630"
$Array[3]="600"
$Array[4]="641"
$Array[5]="642"
$Array[6]="681"
$Array[7]="693"
$Array[8]="711"
$Array[9]="692"
$Array[10]="722"
$i=0
Do
MouseClick("right", $Array[$i], 500)
$i=$i+1
Until $i=10
it doesnt work, so it seems it have something to do with $Array[$i]. What should i use instead?
ty
i have this:
$i = 0
Do
FileMove("F:\Downloads\Wallpapers\*.jpg", "E:\Wallpapers & Pictures\Pack\$i.jpg")
$i = $i + 1
Until $i = 56
in E:\Wallpapers & Pictures\Pack\ im trying to rename all files after $i but i dont know how. i used %$i% like in autohotkey but doesnt work.
i just instaled autoit few days ago and i know this is a nub question