AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Search found 53 matches
AutoHotkey Community Forum Index
Author Message
  Topic: Put here requests of problems with regular expressions
dash

Replies: 271
Views: 10214

PostForum: Ask for Help   Posted: Sat Dec 08, 2007 5:07 pm   Subject: Put here requests of problems with regular expressions
Thank you both, engunneer & Titan!
I definitely gonna need your grep function for my other parsing scripts.
Thanks again!
  Topic: Put here requests of problems with regular expressions
dash

Replies: 271
Views: 10214

PostForum: Ask for Help   Posted: Sat Dec 08, 2007 4:34 am   Subject: Put here requests of problems with regular expressions
Thanks engunneer,
but i wanted to do it with regex, since its shorter (currently im using my own non-regex version as well ^_^').

I just dont get it, why the multi line option m) for RegExMatch i ...
  Topic: Put here requests of problems with regular expressions
dash

Replies: 271
Views: 10214

PostForum: Ask for Help   Posted: Sat Dec 08, 2007 3:33 am   Subject: Put here requests of problems with regular expressions
Hi guys,
i need help with parsing clipboard, which contains a list of random URLs.
example:

www.site.com/haha.rar
www.home.de/jpg.jpg
http://www.test.br/pic.gif
http://user:pass@ww ...
  Topic: Need help with a simple regex
dash

Replies: 4
Views: 284

PostForum: Ask for Help   Posted: Sat Feb 10, 2007 4:08 pm   Subject: Need help with a simple regex
Thanks again, PhiLho Very Happy
  Topic: Need help with a simple regex
dash

Replies: 4
Views: 284

PostForum: Ask for Help   Posted: Sat Feb 10, 2007 7:19 am   Subject: Need help with a simple regex
I know that i could do this with stringsplit, but i really want to see the regular expression for this, still thanks for your help DJAnonimo. Cool
  Topic: Need help with a simple regex
dash

Replies: 4
Views: 284

PostForum: Ask for Help   Posted: Sat Feb 10, 2007 12:54 am   Subject: Need help with a simple regex
Hallo,
i need help with Regex, for "splitting" Username and Password from clipboard.
I want to store them in 2 different variables, something like:

RegExMatch(clipboard, "<R ...
  Topic: ISense 1.5.4
dash

Replies: 266
Views: 25522

PostForum: Scripts & Functions   Posted: Wed Jan 24, 2007 8:38 pm   Subject: ISense 1.5.4
Almost missed it! Shocked

Amazing work, majkinetor!
  Topic: Multiple virtual desktops
dash

Replies: 33
Views: 10474

PostForum: Scripts & Functions   Posted: Wed Jan 24, 2007 8:02 pm   Subject: Multiple virtual desktops
Very handy script!

Thanks for sharing
  Topic: Right-Mouse Button Doesn't Select In Explorer after Remappin
dash

Replies: 3
Views: 260

PostForum: Ask for Help   Posted: Fri Dec 29, 2006 3:35 pm   Subject: Right-Mouse Button Doesn't Select In Explorer after Remappin
you need to add "~", before every hotkey, if you want to keep native function of the keys.


From the manual:

Hotkeys (Mouse, Joystick and Keyboard Shortcuts)

~:
When t ...
  Topic: ScreenMagnifier - IntelliPoint clone?
dash

Replies: 14
Views: 2230

PostForum: Scripts & Functions   Posted: Wed Dec 27, 2006 7:15 pm   Subject: ScreenMagnifier - IntelliPoint clone?
I like it!

But currently the zoom feels "jerky", if you compare it to holomind's scripts, where the zoom is almost fluid...
And it doesnt make a perfect scale, the image is somewhat dist ...
  Topic: Mouse double click
dash

Replies: 5
Views: 302

PostForum: Ask for Help   Posted: Wed Dec 27, 2006 5:48 pm   Subject: Mouse double click
i knew that the next "If lines" get evaluated,
but i didnt knew that such small evaluations could make any difference in a script...
Now i know it better, thanks for info.
  Topic: Mouse double click
dash

Replies: 5
Views: 302

PostForum: Ask for Help   Posted: Wed Dec 27, 2006 5:18 pm   Subject: Mouse double click
Nice script, ahklerner!
The script i wrote for the same purpose was twice as big as yours... ^^'

btw, why are you using Else in:
Else IfEqual, Count, 2
IfEqual, Count, 2
would do the same job.. ...
  Topic: Disable keyboard and mouse
dash

Replies: 9
Views: 547

PostForum: Ask for Help   Posted: Wed Dec 27, 2006 3:21 am   Subject: Disable keyboard and mouse
Skan,
could you please tell me how to stop the modifiers from working as well, in your script above? i really stuck with those VK codes >.<'
ive tried it with 0x2A0x2A0x2A (***), which stoppe ...
  Topic: Double Tap Key
dash

Replies: 4
Views: 456

PostForum: Ask for Help   Posted: Wed Dec 27, 2006 3:01 am   Subject: Double Tap Key
try with down/up, like this:
Joy1::
Send {LAlt down}
sleep, 100
send, {LAlt up}
return

and just with {ALTdown} and {ALTup}, if it still doesnt work.

btw ive seen ...
  Topic: Double Tap Key
dash

Replies: 4
Views: 456

PostForum: Ask for Help   Posted: Wed Dec 27, 2006 2:34 am   Subject: Double Tap Key
Untested, but should work

Joy1::
if A_PriorHotkey <> Joy1
{
KeyWait, Joy1
return
}
if A_TimeSincePriorHotkey > 500
{
KeyWait, Joy1
r ...
 
Page 1 of 4 Goto page 1, 2, 3, 4  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group