Jump to content

Nimrod667

Members
  • Posts

    4
  • Joined

  • Last visited

Nimrod667's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. If i got it right, AutoItMacroGenerator captures inputs by keyboard and by mouse, but i need to know the ID's of the clicked controls...
  2. Hello, I want to write a small script that constantly checks which controls are clicked in another window. e.g. when installing a program I want to know which buttons have been pressed during that installation. Is there some way to do this? Haven't found any yet... The AutoIt Window Info for example is able to get the id of the control you clicked...is that possible with autoIt? /Nimrod
  3. Thanks for your help guys! Got it to work!
  4. Hi, I need to compare a variable with two criterias. For example: I have to check if $i is between 5 and 10, so i have to check if $i is greater than 5 and smaller then 10. If I use : case $i >= 5 and $i <= 10 its also true if $i is 20...I need something like case $i >=5 and <=10 How can I do this? //Nimrod
×
×
  • Create New...