AutoHotkey Community

It is currently May 25th, 2012, 2:22 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 20 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: engunneer's home thread
PostPosted: August 9th, 2007, 5:14 pm 
Online
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8654
Location: Salem, MA
This is a thread for me to keep common answers handy for forum linking 8)

If I have sent you to this thread, please read below to find the answers you seek.

Favorite solutions:



http://www.autohotkey.com/forum/viewtop ... 43#p123243

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Last edited by engunneer on September 8th, 2009, 5:06 am, edited 11 times in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject: stdlib catalog
PostPosted: August 9th, 2007, 5:14 pm 
Online
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8654
Location: Salem, MA
**Temorary holding place

There has been a great deal of work in this, so it is time to start collecting them.



Please post additional ones as replies. Please keep other discussion to a minimum, so this topic is not polluted with non-links.

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Last edited by engunneer on October 5th, 2007, 1:04 am, edited 10 times in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject: AHK has a virus?
PostPosted: August 9th, 2007, 5:14 pm 
Online
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8654
Location: Salem, MA
Search term - virus

http://www.autohotkey.com/forum/viewtop ... ight=virus
http://www.autohotkey.com/forum/viewtop ... ight=virus
http://www.autohotkey.com/forum/viewtop ... ight=virus
http://www.autohotkey.com/forum/viewtop ... ight=virus
http://www.autohotkey.com/forum/viewtop ... ight=virus
http://www.autohotkey.com/forum/viewtop ... ight=virus
http://www.autohotkey.com/forum/viewtop ... ight=virus


search term = false alarm
AHK's malware - same as mIRC!?
AntiVir False Positives with EXE made with AHK 1.0.46.08
Kaspersky reports trojan alert

(some links collected by lexikos)

There are more in the forum, just search!



http://www.autohotkey.com/forum/viewtopic.php?p=140027#140027

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Last edited by engunneer on August 19th, 2009, 11:37 am, edited 5 times in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 9th, 2007, 5:14 pm 
Online
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8654
Location: Salem, MA
Using multiple mice and keyboards

Using a hotkey on only one keyboard:
http://www.autohotkey.com/forum/viewtopic.php?t=48238

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Last edited by engunneer on September 1st, 2009, 10:05 am, edited 3 times in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 9th, 2007, 5:14 pm 
Online
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8654
Location: Salem, MA
Cron + Scheduled task scripts

http://www.autohotkey.com/forum/topic39716.html
http://www.autohotkey.com/forum/topic38857.html
http://www.autohotkey.com/forum/topic32170.html
http://www.autohotkey.com/forum/topic29640.html
http://www.autohotkey.com/forum/topic22825.html
http://www.autohotkey.com/forum/topic19842.html
http://www.autohotkey.com/forum/topic11620.html
http://www.autohotkey.com/forum/topic8882.html
http://www.autohotkey.com/forum/topic7693.html
http://www.autohotkey.com/forum/topic6296.html
http://www.autohotkey.com/forum/topic5040.html


[size=0]Link to this post: http://www.autohotkey.com/forum/viewtop ... 030#140030[/size]

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Last edited by engunneer on September 3rd, 2009, 1:17 pm, edited 2 times in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 9th, 2007, 5:15 pm 
Online
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8654
Location: Salem, MA
If you have a problem with a script error, but you don't know how to edit the script anymore (You used to right click the icon and hit edit, but the program won't start anymore)



List collected by JSLover

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Last edited by engunneer on August 14th, 2008, 6:15 am, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject: Repeated Actions
PostPosted: August 9th, 2007, 5:16 pm 
Online
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8654
Location: Salem, MA
Links to threads for making or stopping a repeated action:

Help with simple code: loop stop when key pressed.
Breaking an infinite loop with keypress
a bit of help pls
Disconinuing a loop and then again continue
a hotkey to stop current hotkey
Start and Stop

I think the best way to make a simple repeated action that you can start and stop easily.
Code:
;start hotkey
1::
settimer, sendkey, 50 ;50 is 20 times a second
return

;stopkey
2::
settimer, sendkey, off
return


sendkey:
send, {whatever key}
return


http://www.autohotkey.com/forum/viewtopic.php?p=140032#140032

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Last edited by engunneer on December 27th, 2007, 11:51 pm, edited 5 times in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 21st, 2007, 11:36 pm 
Offline
User avatar

Joined: August 11th, 2004, 1:47 am
Posts: 5346
Location: UK
Good idea. If you continue to build a categorized index of faq's we can link to this thread.

_________________
GitHubScriptsIronAHK Contact by email not private message.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 22nd, 2007, 12:00 am 
Online
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8654
Location: Salem, MA
I borrowed the idea from another user - maybe toralf?

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 22nd, 2007, 12:12 am 
Offline
User avatar

Joined: August 11th, 2004, 1:47 am
Posts: 5346
Location: UK
I think his 'home thread' is more of a portfolio of his scripts.

_________________
GitHubScriptsIronAHK Contact by email not private message.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 22nd, 2007, 12:47 am 
Online
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8654
Location: Salem, MA
true, and I want to do that here as well, but also have some posts for common questions. I am still trying to figure out the right format.

I find myself giving the same responses so often now, that I have finally automated it! Do you like the result?

Here's my script for automated nitpicking :D :D

Code:
#SingleInstance force
SetKeyDelay, -1

#c::
Gui, Add, Button, w90 h35, &Welcome
Gui, Add, Button, w90 h35 , &Guest
Gui, Add, Button, w90 h35 ym, &Code
Gui, Add, Button, w90 h35 , &Subject
Gui, Add, Button, w90 h35 ym, &Repeated
Gui, Add, Button, w90 h35 , Searc&h
Gui, Add, Button, w290 h35 xm, Cancel (&x)
Gui, Show, , Automated Nitpicking
Return

GuiClose:
ExitApp

ButtonCancel(x):
Gui, Hide
Return

ButtonCode:
Gui, Hide
Sleep, 10
Send,
(
Automated Nitpicking:

when posting code in the forum, please use code tags, like this:
[code]
[code]
;code goes here
[/code]
[/code]

Among other things, it makes it monospaced, syntax colored (comments), easy to copy, smaller, and it preserves the whitespace.
)
Return

ButtonGuest:
Gui, Hide
Sleep, 10
Send,
(
Automated Nitpicking:

when posting in the forum, please choose a username when you post. It helps us keep track of who we are talking to, especially in threads with multiple guests.

You are also invited to register for a user account, which lets you send and receive Private messages, and lets you edit your posts in the future. Registration is free and optional.
)
Return

ButtonSubject:
Gui, Hide
Sleep, 10
Send,
(
Automated Nitpicking:

when posting in the forum, please use a meaningful subject line. Please read the following Sticky post:
[url=http://www.autohotkey.com/forum/viewtopic.php?t=4986]PLEASE READ IF YOU'RE NEW: How to Get Answers Effectively[/url]
)
Return

ButtonWelcome:
Gui, Hide
Sleep, 10
Send,
(
[b][u]Welcome to the AHK community{!}[/u][/b]

)
Return

ButtonRepeated:
Gui, Hide
Sleep, 10
Send,
(
You may be interested in one of the posts in [url=http://www.autohotkey.com/forum/topic21919.html]my home thread[/url]. Specifically, the post about repeated actions.
)
Return

ButtonSearch:
Gui, Hide
Sleep, 10
Send,
(
That is a frequently asked question. The answer can be found by searching the forums.
[b]Never forget:[/b] The  [img]http://www.autohotkey.com/forum/templates/subSilver/images/icon_mini_search.gif[/img] [url=http://www.autohotkey.com/forum/search.php]Search[/url] is with you...  :wink:
[size=8]Link and quote style borrowed from [url=http://www.autohotkey.com/forum/profile.php?mode=viewprofile&u=610]daonlyfreez[/url][/size]
)
Return


_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Last edited by engunneer on September 5th, 2007, 8:00 pm, edited 1 time in total.

Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 22nd, 2007, 1:45 pm 
Offline
User avatar

Joined: August 11th, 2004, 1:47 am
Posts: 5346
Location: UK
I would use hotstrings and change the wording a little but it looks good.

_________________
GitHubScriptsIronAHK Contact by email not private message.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 22nd, 2007, 7:45 pm 
Online
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8654
Location: Salem, MA
please let me know how you think the wording should be, and I will be happy to update it. I do not intend to offend, and would like to avoid it.

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 27th, 2007, 12:32 am 
Offline

Joined: July 15th, 2007, 1:43 am
Posts: 1320
Thanks for posting your nitpicking script. I'm gonna use it in the forums now.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: August 27th, 2007, 3:16 am 
Online
User avatar

Joined: August 30th, 2005, 8:43 pm
Posts: 8654
Location: Salem, MA
please use it carefully...

I posted it here so I can keep it in sync between a few computers. I should just put it on autohotkey.net

_________________
Image
(Common Answers) - New Tutorials Forum - Humongous FAQ


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 20 posts ]  Go to page 1, 2  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: SKAN and 9 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group