| View previous topic :: View next topic |
| Author |
Message |
JamesJR
Joined: 15 Jun 2008 Posts: 1
|
Posted: Sun Jun 15, 2008 9:24 pm Post subject: Macro |
|
|
Hello. Will this work on a new vista laptop? I am using home premium. If so, I need it to be able to replace BBB with:
Want a chance to win coins? See if you can find the secret. ENTER Visit www.website.com for more info. ENTER
ENTER= Pressing the enter key
So whenever I press B three times (bbb) it will come up with the above.
[Title edited. Please write descriptive titles for your topics. ~jaco0646] |
|
| Back to top |
|
 |
PurloinedHeart
Joined: 04 Apr 2008 Posts: 209 Location: Canada
|
Posted: Sun Jun 15, 2008 10:04 pm Post subject: |
|
|
Yes.
Vista has some issues with AHK, but it'll probably work. |
|
| Back to top |
|
 |
Guest
|
Posted: Sun Jun 15, 2008 11:07 pm Post subject: |
|
|
| Can you make the script? |
|
| Back to top |
|
 |
Krogdor
Joined: 18 Apr 2008 Posts: 1145 Location: The Interwebs
|
Posted: Sun Jun 15, 2008 11:11 pm Post subject: |
|
|
| Code: | ::bbb::
SendInput, {backspace 3} Want a chance to win coins? See if you can find the secret. {ENTER} Visit www.website.com for more info. {ENTER}
return |
|
|
| Back to top |
|
 |
PurloinedHeart
Joined: 04 Apr 2008 Posts: 209 Location: Canada
|
Posted: Sun Jun 15, 2008 11:24 pm Post subject: |
|
|
You don't need to send the three backspaces
| Code: |
::bbb::Want a chance to win coins? See if you can find the secret.`nVisit www.website.com for more info.`n
|
|
|
| Back to top |
|
 |
Guest
|
Posted: Mon Jun 16, 2008 1:18 am Post subject: |
|
|
| Thanks. I used the first posted one. The second one did not work. It is working wonderfully for my needs. |
|
| Back to top |
|
 |
PurloinedHeart
Joined: 04 Apr 2008 Posts: 209 Location: Canada
|
Posted: Mon Jun 16, 2008 1:20 am Post subject: |
|
|
Whoops, you probably needed the Enter key instead of newlines
::bbb::Want a chance to win coins? See if you can find the secret.{Enter}Visit www.website.com for more info.{Enter} |
|
| Back to top |
|
 |
Krogdor
Joined: 18 Apr 2008 Posts: 1145 Location: The Interwebs
|
Posted: Mon Jun 16, 2008 3:52 am Post subject: |
|
|
| Oh, didn't know you the autoreplace hotstrings worked exactly like a send command, where you could send {enter} and such... well anyway. It's the same thing anyway, just a couple lines shorter. |
|
| Back to top |
|
 |
|