AutoHotkey Community

It is currently May 24th, 2012, 9:04 am

All times are UTC [ DST ]


Search found 30 matches
Search these results:

Author Message

 Forum: Scripts   Topic: Joke Script

 Post subject: Forced Typo
Posted: April 15th, 2012, 3:40 pm 

Replies: 61
Views: 18507


A subtle prank that will play mind games with your victim as they make typos that they will swear didn't happen only to test the key and see its working fine. Run with #NoTrayIcon to evade discovery GoSub, ChangeTimeandLetter SetTimer, TypoTimeCheck, 500 ;check if it's time to force typo Return Typo...

 Forum: Support   Topic: Synergy ahk clash

Posted: April 19th, 2011, 12:10 pm 

Replies: 10
Views: 630


ok ive sussed why it wasnt working! after creating a simple script that just send hello to notepad with normal send i played with it until i managed to get it to work with a compiled running as admin script. That is sever scripts will now send keystrokes to the server computer. Sending it across the...

 Forum: Support   Topic: Synergy ahk clash

Posted: April 14th, 2011, 10:22 pm 

Replies: 10
Views: 630


the scripts all work with out synergy running but when it is running send doesn't work (computer does not actually have to be connected it still doesn't work when it is looking for a client/ start has been pressed) with the same two scripts running on either computer (gestures script) I can get the ...

 Forum: Support   Topic: Synergy ahk clash

Posted: April 6th, 2011, 5:22 pm 

Replies: 10
Views: 630


thanks for your reply different send modes don't make any difference I found and I already had a script with controlsend which also wasn't working. I had already exhausted all the searches which was why I posted here. it works occasionally which suggests it probably isn't the send mode affecting it....

 Forum: Support   Topic: Synergy ahk clash

 Post subject: Synergy ahk clash
Posted: April 5th, 2011, 10:14 pm 

Replies: 10
Views: 630


Having just discovered the wonders of the keyboard/mouse sharing program synergy, ive found that the majority of my scripts on the server computer no longer work, specifically the send function. Im guessing this to be down to keyboard hooks working at lower/different levels so the ahk generated keys...

 Forum: Support   Topic: Quick regex help for repeating patterns

Posted: February 16th, 2011, 11:33 pm 

Replies: 5
Views: 248


thanks a lot sinkfaze, you've been most helpful
sorry flak I already managed to get it working with the earlier post, thanks for your input though :) although I will look into how yours works, it looks interesting

 Forum: Support   Topic: Quick regex help for repeating patterns

Posted: February 15th, 2011, 8:52 pm 

Replies: 5
Views: 248


perfect clever piece of code, I like it :) I had to tweak it a little bit as it was matching other parts in the page source RegExMatch(PageSource,"<a href=./genre/\K[^""]+",m,Pos+StrLen(m)) do you know how to use a double quote " in a needle? I had to navigat...

 Forum: Support   Topic: Quick regex help for repeating patterns

Posted: February 15th, 2011, 8:30 pm 

Replies: 5
Views: 248


The haystack I'm looking in is <a href="/genre/Comedy">Comedy</a>&nbsp;<span>|</span> <a href="/genre/Drama">Drama</a>&nbsp;<span>|</span> <a href="/genre/Romance">Romance</a>&nbsp;<span>|</span> <a href="/genre/Sport">Sport</a> and the needle I've...

 Forum: Support   Topic: Control+X(Warband Cheat)

Posted: January 15th, 2011, 4:49 pm 

Replies: 3
Views: 331


in its simplest form..

Code:
^!x::   ;press control + alt + X to start
Loop
{
Send ^X
Sleep 100
}
Return

^Esc::ExitApp     ;press Control + esc to stop it
Esc::Pause          ;press esc to pause

 Forum: Scripts   Topic: Lex' Mouse Gestures

Posted: January 10th, 2011, 6:35 pm 

Replies: 106
Views: 28364


I have also come up with another gesture which works similar to my previous post about volume however this gesture is for dynamically changing through windows via the alt tab menu during the gesture (right - up and then left or right depending on the direction through the menu you want to go. This i...

 Forum: Scripts   Topic: Lex' Mouse Gestures

Posted: January 8th, 2011, 9:22 pm 

Replies: 106
Views: 28364


how to re-assign Gesture_R and Gesture_L to MasterVolume up/down until gesture button is released? I suppose you want to hold the button and drag left or right to adjust volume. It could work as follows: ⋅ Once the mouse is dragged left or right more than %m_LowThreshold% pixels, exit ges...

 Forum: Support   Topic: ^scrolllock

Posted: December 24th, 2010, 1:56 am 

Replies: 3
Views: 209


read through that and use the example to work out what is actually being pressed along with a keyboard hook which is shown in this link: http://www.autohotkey.com/docs/commands/_InstallKeybdHook.htm Special Keys If your keyboard or mouse has a key not listed above, you might still be able to make it...

 Forum: Scripts   Topic: Chemical Equation Balancer

Posted: December 19th, 2010, 6:31 pm 

Replies: 12
Views: 1797


I am still experiencing problems from it.. it appears to be due to this being looped a large number of times 053: Permutation += 1 054: IfInString,Permutation,0 055: Continue and that is using the updated post containing the archived version I believe. Is this the case for you as well or is it somet...

 Forum: Scripts   Topic: Chemical Equation Balancer

Posted: December 19th, 2010, 12:25 am 

Replies: 12
Views: 1797


huh, well I came back to this function the other day and for some reason it was no longer working for me.. despite working several weeks ago. with all examples that I tried it with, it always returned "could not balance equation". and I cant seem to work out why, would an update have cause...

 Forum: Scripts   Topic: Superscript/Subscript function

Posted: December 17th, 2010, 7:08 pm 

Replies: 0
Views: 328


Function. Uses the send {U+nnnn} command for inserting unicode found in ahk_L. Its here if you need it. SubNumber(i) { StringSplit, s, i arrayno=1 Loop % StrLen(i) { D .= ("{U+208" . s%arrayno% . "}") arrayno++ } Return D } A ...
Sort by:  
Page 1 of 2 [ Search found 30 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group