| View previous topic :: View next topic |
| Author |
Message |
CodeKiller
Joined: 10 Jul 2008 Posts: 2
|
Posted: Thu Jul 10, 2008 8:53 am Post subject: Autostring : spaces |
|
|
Hi dudes !
At this moment I have this in my script :
(with a space after 'pour'.)
But it dosen't work : the space after the word 'pour' isn't interpreted.
It seeems autohotkeys doesn't recognize the spaces after an alphanumeric character (before the end of line), sort of bug ???
I thought autohotkey read until the CR character, but seems not !
HELP !!!!!
Thanks ! |
|
| Back to top |
|
 |
Sir Daniel Guest
|
Posted: Thu Jul 10, 2008 9:31 am Post subject: |
|
|
Try this:
| Code: |
:*:poru ::pour{space}
|
|
|
| Back to top |
|
 |
vahju
Joined: 17 Feb 2008 Posts: 56
|
Posted: Thu Jul 10, 2008 6:52 pm Post subject: |
|
|
Should this be
| Code: |
:*:poru ::send, pour{space}
|
|
|
| Back to top |
|
 |
Razlin
Joined: 05 Nov 2007 Posts: 340 Location: canada
|
Posted: Thu Jul 10, 2008 8:47 pm Post subject: |
|
|
%A_SPACE% _________________ -=Raz=- |
|
| Back to top |
|
 |
CodeKiller
Joined: 10 Jul 2008 Posts: 2
|
Posted: Wed Jul 30, 2008 4:26 pm Post subject: |
|
|
Thanks for the replies.
And yes it's working now, I'm using "{Space}".
Just for information :
How do you use it ?
Thanks again !  |
|
| Back to top |
|
 |
engunneer
Joined: 30 Aug 2005 Posts: 6772 Location: Pacific Northwest, US
|
Posted: Thu Jul 31, 2008 5:13 am Post subject: |
|
|
in the same place you have {space}
A_Space is a variable that always contains A Space
Unfortunately, hottrings cannot have variables, so {space} is a better solution. If you were using a regular send command, you could do either. _________________
Unless otherwise noted, all code is untested.
Common Answers: 1.(Loops, Viruses, etc.) 2. Search 3.RTFM |
|
| Back to top |
|
 |
|