Ok, so here is the long story short. I am developing a automatization program for private purpouse, to control different applications while they are minimized by clicking on buttons inside them (while they being minimized). I searched the net and found that Autokey can do this, is there any plugin or any possibilities to do this inside Autoplay? I want to make script something like this
loop
(
x= 100
y= 50
application1 == (gethandleblabla)
if event == 1 then
mclick(application1,x,y)
end
)
I know this maybe not be so much usable script but i guess you know what is it that i want to do. ps: i know how to do "click on" but i need "click on" somewhere inside the window while it is minimized.
loop
(
x= 100
y= 50
application1 == (gethandleblabla)
if event == 1 then
mclick(application1,x,y)
end
)
I know this maybe not be so much usable script but i guess you know what is it that i want to do. ps: i know how to do "click on" but i need "click on" somewhere inside the window while it is minimized.
Comment