| Author |
Message |
Topic: Email Templates - Can I use variables? |
poo_noo
Replies: 5
Views: 83
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 3:45 am Subject: Email Templates - Can I use variables? |
maybe use an inputbox ??
::-status::
InputBox, thename, Enter the name, What is the name, hide
Send Hi %thename%, please update the status of this ticket
Return |
Topic: Outlook Script |
poo_noo
Replies: 2
Views: 73
|
Forum: Ask for Help Posted: Thu Mar 18, 2010 1:32 am Subject: Outlook Script |
| I would look into 'mailto' if I were you. EGRun, mailto:someone@domain.com?subject=Subject text&body=This is the message body's text `%0ALine 2 is here |
Topic: Is it possible to group several clicks with a variable? |
poo_noo
Replies: 5
Views: 121
|
Forum: Ask for Help Posted: Mon Mar 01, 2010 3:57 am Subject: Is it possible to group several clicks with a variable? |
You could also put your click sets under particular keys. EG see below for F10 & F11 keys
F10::
Msgbox About to send clickset 1
Click 754, 239, D
Sleep, 100
Click 754, 239, U
Slee ... |
Topic: Simple Script to Search and Copy adjacent Text. |
poo_noo
Replies: 6
Views: 133
|
Forum: Ask for Help Posted: Tue Feb 16, 2010 11:02 pm Subject: Simple Script to Search and Copy adjacent Text. |
You guys are too quick for me
heres my attempt
theData =
(
Dog license number registered to Jane Doe
Burmington California
2 warnings given, has following dog tags recorded.
Jane Doe ... |
Topic: stripping out double `n |
poo_noo
Replies: 3
Views: 118
|
Forum: Ask for Help Posted: Fri Jan 29, 2010 12:45 am Subject: stripping out double `n |
Does this work ?
fileread, chopthis,%a_workingdir%\DownloadedCasts\%plist%
stringreplace,chopthis,chopthis,%RowText%,
; Remove all blank lines from the text in a variable:
Loop
{
... |
Topic: month and year |
poo_noo
Replies: 4
Views: 94
|
Forum: Ask for Help Posted: Wed Jan 13, 2010 4:15 am Subject: month and year |
try this
;
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
; Author: A.N.Other <myemail@nowhere.com>
;
; Script Function:
; ... |
Topic: month and year |
poo_noo
Replies: 4
Views: 94
|
Forum: Ask for Help Posted: Wed Jan 13, 2010 3:08 am Subject: month and year |
maybe this will help
;
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
; Author: A.N.Other <myemail@nowhere.com>
;
; Script Functi ... |
Topic: Must run .exe twice before it will work correctly |
poo_noo
Replies: 6
Views: 166
|
Forum: Ask for Help Posted: Wed Jan 13, 2010 3:00 am Subject: Must run .exe twice before it will work correctly |
Heres another way. Not fully tested so use with care ;############# Below is the auto-executing & persistent code ######################################
#NoEnv ; Recommended for performan ... |
Topic: openning a certain PowerPoint slide with RunWait command |
poo_noo
Replies: 2
Views: 108
|
Forum: Ask for Help Posted: Wed Dec 30, 2009 2:43 am Subject: openning a certain PowerPoint slide with RunWait command |
below is a link that I googled
http://www.pptfaq.com/FAQ00528.htm
It talks about commandline switches for PowerPoint & Powerpoint viewers |
Topic: temporary copy and pasting of a pin number |
poo_noo
Replies: 3
Views: 77
|
Forum: Ask for Help Posted: Tue Dec 29, 2009 3:32 am Subject: temporary copy and pasting of a pin number |
Here is a simple example to split a single line into its parts, assuming the delimiter is a '-'
theVar=15-15-414-027-0000
Loop, Parse, theVar, -
{
msgbox This is field %A_Index% containin ... |
Topic: [Help] with script for "loop key" |
poo_noo
Replies: 8
Views: 203
|
Forum: Ask for Help Posted: Tue Dec 29, 2009 3:22 am Subject: [Help] with script for "loop key" |
sorry I can't test this
IfWinActive, Left 4 Dead 2
Loop
{
Send LControl
Sleep 5000
WinGetTitle, theWindow, A
If theWindow != Left 4 Dead 2
Break
}
|
Topic: [Help] with script for "loop key" |
poo_noo
Replies: 8
Views: 203
|
Forum: Ask for Help Posted: Tue Dec 29, 2009 12:08 am Subject: [Help] with script for "loop key" |
LControl::
Sleep, 5000
;return
I think you should remove the RETURN command after the sleep. |
Topic: Restrict Compiled Script - 7 Day Eval - Run 5 Times etc ?? |
poo_noo
Replies: 4
Views: 74
|
Forum: Ask for Help Posted: Tue Dec 15, 2009 12:33 am Subject: Restrict Compiled Script - 7 Day Eval - Run 5 Times etc ?? |
Use the forum search.
Type in 'trial' in the search query box and then select "Search message title only" in the search options and then click the search button.
Seriously, its that e ... |
Topic: Copy text from closed file to clipboard |
poo_noo
Replies: 1
Views: 82
|
Forum: Ask for Help Posted: Tue Dec 01, 2009 4:27 am Subject: Copy text from closed file to clipboard |
Look up FileRead in the help
FileRead, OutputVar, C:\My Documents\My File.txt |
Topic: Loop, rebuild GUI for further user input |
poo_noo
Replies: 7
Views: 189
|
Forum: Ask for Help Posted: Fri Nov 20, 2009 11:34 am Subject: Loop, rebuild GUI for further user input |
Thanks everyone for their help. Below is what I ended up with. Working great !
3daySSP =
(
000001 062197 11960265 1111100
123456789 262197 123456789 09 1234567890
123456789 123456 123456 ... |
| |