yeto 0 Posted July 3, 2019 MsgBox($MB_SYSTEMMODAL, "", "The value of $i is: " & $i) ; Display the value of $i. $i = $i + 1 ; Or $i += 1 can be used as well. I also Googled and cannot find out what it means. yeto Share this post Link to post Share on other sites
Subz 688 Posted July 3, 2019 (edited) Its just a variable, usually indicates a integer variable Edited July 3, 2019 by Subz Share this post Link to post Share on other sites
Werty 157 Posted July 3, 2019 $h = Handle, $p = Pointer Some guy's script + some other guy's script = my script! Share this post Link to post Share on other sites
Subz 688 Posted July 3, 2019 Just to be clear $i is not required you can replace it for example: $index, $x, $y, $z etc.. However it's usually best practice to define your variables (see https://www.autoitscript.com/wiki/Best_coding_practices for more information). Share this post Link to post Share on other sites
yeto 0 Posted July 4, 2019 3 hours ago, Subz said: Its just a variable, usually indicates a integer variable Thank you. That is very helpful. Also, thank you for providing the link below. I am studying that now. Still learning, yeto Share this post Link to post Share on other sites