I'm noteven sure how to ask about it.. Lol...
The fact is... I have my own "autocliker" thing that i use to auto repost my itens to sell over the internet in specific sites.
So work this way.
I have around 40 advertising itens, and to keep'em update i use to delete them and create a new advertise very often. So i decided to create my own software to make this to me, it opens Internet, opens the site, it clicks in delete, delete my old advertising item, the it clics in "ADD Advertising" sendkeys write the "Title", TABS to new field, write description bla bla bla bla and finally clicks into Finish.
and i have in 10 seconds a new iten advertised. And it works like a charm!
So, the problem is, eveytime site changes, my mouse coords should changes too... And that's not all, for every new site i have to open my source code and edit it, hardcoding the mouse movements and save.
I did a small utility to record mouse clicks and its movements, so when i click it saves the positions, but i can't fuse it with my software, i mean. Part of my software is here:
`
Public Sub Add()
' Sub to call iexplore and this site
RodarAPP("http://www2.olx.com.br/ai/form/0")
Espera(5000) ' waits 5000 milsec 4 safe load
MOV(996, 119) ' sub to moves and click in this coord
MOV(410, 435)
EnviarTecla("{TAB}") ' sub sendkey to switch fields
EnviarTecla(TxTitulo.Text) ' sub sendkey ("my title")
EnviarTecla("{TAB}")
' and this way it goes in a lot of fields
End Sub
I know its a gross code, but it's pretty functional, so there is a way to record my mouse click into a text file then this software read the new coords and text to write,?
`