Alright im kinda new to autoit, i have downloaded the full tutorial book and im scripting something right now but i encountered a problem.
Basicly i have numbers in a window that keep changing, and would like to keep track of it, lets say the number is 5000/5000, i would like it to check the first number and and if it falls below lets say 4500/5000, if it does run jump to a other part in the script.
How should i go about doing this, i was thinking of pixel but that dosent track numbers. So i kinda hit a brickwall here.
Willing to take any info or links to helpfull posts or videos
Thanks
**Edit**
These numbers are not on the destop they are in a different window
The number on the left is the number that keeps changing, 5000/5000.
The number on the right is a number that will never change. 5000/5000
The right side numbers can go down to zero and back up to 5000 But it will never go over 5000.
Im looking for a way to track the right side numbers and once they go below 2700. Run the next part of the script.
2700/5000
If number <= 2700 Then
"runs this script"
Hope this gives a bit more info.