Jump to content

Recommended Posts

Posted

hello!

I'm trying to use the Control click function like:

ControlClick("window name","","[Class:Button; Instance:20]")

but I want to insert different number to "Instance" according to external variable like " $number".

Is it doable?

Thanks!

Posted

The advanced specification is just a string, you can manipulate it like any other string:

$n = 20
ControlClick("window name","","[Class:Button; Instance:" & $n & "]")

:mellow:

thanks

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
×
×
  • Create New...