 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
MisterGank
Joined: 07 May 2005 Posts: 26 Location: USA
|
Posted: Tue May 10, 2005 9:54 pm Post subject: MsgBox with Email link |
|
|
I am trying to make a pop up box with my email link contained in it. Please assist. Is this easy to do, or should I just use a GUI box instead? Any help would be appreciated! Here is what I currently have:
^!`::
MsgBox, 4096, What is what...,If you have any further questions, comments or suggestions, please send them to John.Doe@unknown.com `n Thank you! |
|
| Back to top |
|
 |
polyethene
Joined: 11 Aug 2004 Posts: 5248 Location: UK
|
Posted: Tue May 10, 2005 10:57 pm Post subject: |
|
|
I don't think you can make the text in the msgbox clickable (without switching to a gui) but you can change button names: | Code: | SetTimer, MsgBoxChange
MsgBox, 4164, Contact, You can contact me by email: somebody@something.com
IfMsgBox, Yes ; Even though it's changed to 'OK' you'd use it's original ('yes')
ExitApp ;... or whatever
IfMsgBox, No
Run, mailto:somebody@something.com
MsgBoxChange:
IfWinExist, Contact
{
ControlSetText, &Yes, &OK, Contact
ControlSetText, &No, E&mail Me, Contact
}
Return |
|
|
| Back to top |
|
 |
MisterGank
Joined: 07 May 2005 Posts: 26 Location: USA
|
Posted: Wed May 11, 2005 12:38 am Post subject: |
|
|
| That works great! To be honst, I didn't think of a second button. Thanks again! |
|
| Back to top |
|
 |
garry
Joined: 19 Apr 2005 Posts: 2212 Location: switzerland
|
Posted: Wed May 11, 2005 5:48 am Post subject: |
|
|
very nice, can also add | Code: | | mailto:david@xmail.tv?Body=Hello David &subject=Greetings |
|
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|