inloveofrapo Posted December 7, 2008 Posted December 7, 2008 (edited) Well, How do i make a script clicking each 0.1 sec when i press alt + shift + s? And how to stop it when i click alt + shift + a? Could somebody script it or help me with it please? Edited December 7, 2008 by inloveofrapo
toonboon Posted December 7, 2008 Posted December 7, 2008 Take a look at the functions HotKeySet() Sleep() and MouseClick()/ControlClick() in the helpfile. Try coding a bit first. Then I'll help you any further if you're stuck. [right]~What can I say, I'm a Simplistic person[/right]
inloveofrapo Posted December 7, 2008 Author Posted December 7, 2008 (edited) Also, How can i check my own posts i made? I mean, my first post, how do i find that for example? - Well, I allready looked in them, I dont understand anything at there, Thats why I posted, Help please? Edited December 7, 2008 by inloveofrapo
cageman Posted December 7, 2008 Posted December 7, 2008 click in the left top corner on your own account name. then theres a tab in the center of your screen with the name : topics where you can see what topics you made. gl
toonboon Posted December 7, 2008 Posted December 7, 2008 (edited) *sigh* HotKeySet("!+s","Start") HotKeySet("!+a","Stop") While 1 If $clicking = True Then MouseClick("Left") EndIf sleep(100) WEnd Func Start() $clicking = True EndFunc Func Stop() $clicking = False EndFunc good luck with it. EDIT: if you can't write this simple script by knowing which functions to use and reading the help file to know how to use the functions, then stop using autoit. Edited December 7, 2008 by toonboon [right]~What can I say, I'm a Simplistic person[/right]
inloveofrapo Posted December 7, 2008 Author Posted December 7, 2008 Well, Tried your script, I get error on line 17 "Line 17 If $clicking = true then If ^ ERROR Error : Variable used without being declared" ???
inloveofrapo Posted December 7, 2008 Author Posted December 7, 2008 Could need some better help here.
water Posted December 7, 2008 Posted December 7, 2008 I would recommend to start reading the Autoit docu. In the help file there is a whole section for beginners. Go from "Introduction", "Frequently Asked Questions", "Using Autoit" to "Tutorials". After having understod the concepts of Autoit it will be much easier to code scripts, understand error messages and get help from other users. Sorry, but this is a task you'll have to do on your own. My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki
inloveofrapo Posted December 7, 2008 Author Posted December 7, 2008 So its not even possible to get a bit help on this site? lol ? Just simple need this one, nothing else from you guys, please? -.-
toonboon Posted December 7, 2008 Posted December 7, 2008 (edited) Well, Tried your script, I get error on line 17 "Line 17 If $clicking = true then If ^ ERROR Error : Variable used without being declared" ??? gosh, if the variable isn't being declared, maybe you need to declare it before it is being asked for? EDIT:Code Removed MsgBox(0,'',"LEARN AUTOIT!") also, STOP PMING ME... I will look back to the thread. And if you really feel you need to pm me, do so with a useful question/comment or such, don't just paste the link to this thread. As I said before, if you are such a lazy fucking moron that you cannot even come up with the correct coding after I gave you 95% of it, stop using AutoIt. Edited December 7, 2008 by toonboon [right]~What can I say, I'm a Simplistic person[/right]
inloveofrapo Posted December 7, 2008 Author Posted December 7, 2008 Moron, No body asked for your e-rage here, Fuck your self fucking idiot, I Posted so I could get some help here, Not some rage, idiot, learn read.
Pain Posted December 7, 2008 Posted December 7, 2008 I hope this will help youhttp://www.autoitscript.com/autoit3/docs/i...g_variables.htmNext time use the helpfile.
Developers Jos Posted December 7, 2008 Developers Posted December 7, 2008 (edited) Moron, No body asked for your e-rage here, Fuck your self fucking idiot, I Posted so I could get some help here, Not some rage, idiot, learn read.What???You ungrateful little piece of shit, your behaviour is not tollerated here.You get 3 days to think about it and better not return when you are not prepared to behave.Jos Edited December 7, 2008 by Jos SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Recommended Posts