Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Making Macro (Interfaces)
#1
Ok, I'm making a macro for a program I use, I need it to click a button that opens an interface, but sometimes the program lags and so I need the macro to keep trying to click that button until the interface appears. How would I do that?

EDIT: I'm going to try to use the click-on-color function in this thread using the color of the interface...React on color function + macro
#2
If that interface is a window, the macro could be like this
Code:
Copy      Help
rep
,lef x y win("window with button") ;;click button
,int w1=win("window name of the interface") ;;find window of the interface
,if(w1) break ;;if found, stop waiting
,0.1 ;;wait 0.1 s
out "stopped waiting"
#3
Hmm how about something like this:

if color = blue at x y
rep
lef 744 422

else if color = red at x y (same coord as first x y)
lef 941 562


Forum Jump:


Users browsing this thread: 1 Guest(s)