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 58 matches
AutoHotkey Community Forum Index
Author Message
  Topic: How do I reassign the "Pause/Break" key on my keyb
deanhill1971

Replies: 3
Views: 1201

PostForum: Ask for Help   Posted: Tue Mar 24, 2009 12:59 pm   Subject: How do I reassign the "Pause/Break" key on my keyb
Either of these should do what you want, but don't use both options in the same script.

; Use a hotkey
Space::SendInput, {Pause}

; Use a hotstring
:*: ::{ ...
  Topic: Parsing several email address formats
deanhill1971

Replies: 5
Views: 392

PostForum: Ask for Help   Posted: Wed Mar 18, 2009 9:31 pm   Subject: Parsing several email address formats
Thanks tonne. I think that will work. I can split the name into first, middle, and last after it goes through the RegEx split.

I added one more condition, since your code didn't handle the 5th stri ...
  Topic: Parsing several email address formats
deanhill1971

Replies: 5
Views: 392

PostForum: Ask for Help   Posted: Wed Mar 18, 2009 9:10 pm   Subject: Parsing several email address formats
Assume you use StringSplit with these delimiters:
(space)
.
_
@
/
<
>
Given the address "Dean.Hill@Acme.com", StringSplit will give you four items:
Dean
Hill
Acme
c ...
  Topic: Using variable in DropDownList
deanhill1971

Replies: 4
Views: 426

PostForum: Ask for Help   Posted: Wed Mar 18, 2009 8:45 pm   Subject: Using variable in DropDownList
You should be able to add a "v" parameter to the DropDownList, just like you did for your Edit box.

So, adding a variable named DropVar would be:
Gui, Add, DropDownList, vDropVar, Sort C ...
  Topic: How do I reassign the "Pause/Break" key on my keyb
deanhill1971

Replies: 3
Views: 1201

PostForum: Ask for Help   Posted: Wed Mar 18, 2009 8:36 pm   Subject: How do I reassign the "Pause/Break" key on my keyb
This will type a space every time you press the Pause key
Pause::SendInput, {Space}
  Topic: Parsing several email address formats
deanhill1971

Replies: 5
Views: 392

PostForum: Ask for Help   Posted: Wed Mar 18, 2009 8:23 pm   Subject: Parsing several email address formats
I want to parse some email addresses that may be in several different formats. Example addresses:
Dean L Hill <dean.l.hill@acme.com>
Dean_Hill@acme.com
Dean.Hill@acme.com
dhill@ftw.us.acme.c ...
  Topic: ALT-TAB replacement with icons and window titles in ListView
deanhill1971

Replies: 152
Views: 51015

PostForum: Scripts & Functions   Posted: Thu Mar 20, 2008 5:07 pm   Subject: ALT-TAB replacement with icons and window titles in ListView
evl,

I hadn't used AltTab.ahk for a long time, but decided today to start using it again. What an interesting surprise to find that you posted an update just yesterday. Smile

The script seems mu ...
  Topic: OnClipboardChange label eventually stops responding
deanhill1971

Replies: 19
Views: 1979

PostForum: Ask for Help   Posted: Wed Nov 07, 2007 8:47 pm   Subject: OnClipboardChange label eventually stops responding
I ran your test in Word, but I wrote the clips out to files then did a binary diff. Word creates two different binary clips even if you copy the exact same data twice in a row. Strange, but true.

R ...
  Topic: OnClipboardChange label eventually stops responding
deanhill1971

Replies: 19
Views: 1979

PostForum: Ask for Help   Posted: Wed Nov 07, 2007 7:27 pm   Subject: OnClipboardChange label eventually stops responding
Laszlo: Actually, the AHK help file says the following about comparing binary ClipboardAll variables. My interpretation is that my comparison will work fine. Your thoughts?

Variables to which Clipb ...
  Topic: OnClipboardChange label eventually stops responding
deanhill1971

Replies: 19
Views: 1979

PostForum: Ask for Help   Posted: Wed Nov 07, 2007 6:50 pm   Subject: OnClipboardChange label eventually stops responding
Laszlo: Good point about my binary comparison. If I ever get OnClipboardChange to work the way I need, I'll research a long-term solution. Smile

Your Traytip code is a good addition. It serves a sim ...
  Topic: OnClipboardChange label eventually stops responding
deanhill1971

Replies: 19
Views: 1979

PostForum: Ask for Help   Posted: Wed Nov 07, 2007 4:08 pm   Subject: OnClipboardChange label eventually stops responding
So far, vital and I have both run across this problem.

If urlwolf or anyone else wants to try and reproduce the problem, then run the script below.

To test, do copies and pastes throughout the d ...
  Topic: OnClipboardChange label eventually stops responding
deanhill1971

Replies: 19
Views: 1979

PostForum: Ask for Help   Posted: Fri Oct 12, 2007 6:14 pm   Subject: OnClipboardChange label eventually stops responding
I moved all my clipboard code into its own script. The OnClipboardChange label does remain active longer in this configuration, but it still stops being called after several hours of using the script. ...
  Topic: Centering tooltip text within a window
deanhill1971

Replies: 2
Views: 706

PostForum: Ask for Help   Posted: Thu Aug 16, 2007 8:46 pm   Subject: Centering tooltip text within a window
Sweet. That works.

Thanks Skan.
  Topic: Centering tooltip text within a window
deanhill1971

Replies: 2
Views: 706

PostForum: Ask for Help   Posted: Thu Aug 16, 2007 8:09 pm   Subject: Centering tooltip text within a window
Is there a simple way to center the text of a tooltip within a window?

I have code to calculate the center of the window. However, if the tooltip is, "This is my tooltip to display.", the ...
  Topic: OnClipboardChange label eventually stops responding
deanhill1971

Replies: 19
Views: 1979

PostForum: Ask for Help   Posted: Mon Jul 30, 2007 11:07 am   Subject: OnClipboardChange label eventually stops responding
Thanks for the suggestions Laszlo. I used #ClipboardTimeout 2000, but I still see the problem. I'll try setting the timeout to other values, and see what happens.
 
Page 1 of 4 Goto page 1, 2, 3, 4  Next
All times are GMT
Jump to:  


Powered by phpBB © 2001, 2005 phpBB Group