| Author |
Message |
Topic: Script to search outlook? |
charliemopps
Replies: 2
Views: 48
|
Forum: Ask for Help Posted: Tue Feb 16, 2010 8:29 pm Subject: Script to search outlook? |
| Nah, I'm not that great at VBA and there's nothing even remotely like what I want to do in that thread. |
Topic: Script to search outlook? |
charliemopps
Replies: 2
Views: 48
|
Forum: Ask for Help Posted: Tue Feb 16, 2010 7:35 pm Subject: Script to search outlook? |
I need to write a script that will search a particular outlook folder.
I need the script to look for the first IP address listed in the message body and then insert that IP Address into the beginning ... |
Topic: Need help with a simple counter |
charliemopps
Replies: 6
Views: 142
|
Forum: Ask for Help Posted: Mon Nov 16, 2009 8:26 pm Subject: Need help with a simple counter |
| thank you! That worked. I don't know why... but it worked! |
Topic: Need help with a simple counter |
charliemopps
Replies: 6
Views: 142
|
Forum: Ask for Help Posted: Mon Nov 16, 2009 6:45 pm Subject: Need help with a simple counter |
Still no worky:
SetTitleMatchMode, 1
Time1 = 0
Gui, +AlwaysOnTop +toolwindow
Gui, Add, Text, vTextvar_Time1, %Time1%
Gui, Add, Button, x6 y30 w100 h20 ,Add
; Generated using SmartGUI ... |
Topic: Need help with a simple counter |
charliemopps
Replies: 6
Views: 142
|
Forum: Ask for Help Posted: Mon Nov 16, 2009 6:06 pm Subject: Need help with a simple counter |
I just want to push a button and add 1 to the variable, then update the GUI.
What am I doing wrong here?
SetTitleMatchMode, 1
Time1 = 0
Gui, +AlwaysOnTop +toolwindow
Gui, Add, Text, vTex ... |
Topic: Need help figuring out this error |
charliemopps
Replies: 1
Views: 83
|
Forum: Ask for Help Posted: Tue Jul 28, 2009 8:21 pm Subject: Need help figuring out this error |
| Nevermind, once again I figured it out right after I posted it. It was what came AFTER that line that was causing the problem. |
Topic: Need help figuring out this error |
charliemopps
Replies: 1
Views: 83
|
Forum: Ask for Help Posted: Tue Jul 28, 2009 8:14 pm Subject: Need help figuring out this error |
AHK is erroring out on the very last line of this, and it says
Specifically:;
But that character is not in the code... The character it's referring to is a bracket! So I don't get it.
Jscript ... |
Topic: Concatenate carriage returns and quotes |
charliemopps
Replies: 13
Views: 328
|
Forum: Ask for Help Posted: Tue Jul 28, 2009 4:17 pm Subject: Concatenate carriage returns and quotes |
ok, wow... I put an extra space in there and now it works. How weird.
I'll post the code when I get done with it. |
Topic: Concatenate carriage returns and quotes |
charliemopps
Replies: 13
Views: 328
|
Forum: Ask for Help Posted: Tue Jul 28, 2009 4:02 pm Subject: Concatenate carriage returns and quotes |
no, that errors out.
I don't want carriage returns there. What I want there is the Javascript code for carriage returns which is \n
So what I want it to litterally output is:
<html>
... |
Topic: Concatenate carriage returns and quotes |
charliemopps
Replies: 13
Views: 328
|
Forum: Ask for Help Posted: Fri Jul 24, 2009 10:56 pm Subject: Concatenate carriage returns and quotes |
Stuck again...
So, after I got the code from above in... I now want to loop through a text file and build Javascript/HTML based on what the lines say.
Jscript =
( Join`r`n
<html>
... |
Topic: Concatenate carriage returns and quotes |
charliemopps
Replies: 13
Views: 328
|
Forum: Ask for Help Posted: Fri Jul 24, 2009 10:10 pm Subject: Concatenate carriage returns and quotes |
| To open a continuation section, ( must begin on a new line and can only be followed by options for the continuation section. Rather than appending `r to each line, you can override the default "j ... |
Topic: Concatenate carriage returns and quotes |
charliemopps
Replies: 13
Views: 328
|
Forum: Ask for Help Posted: Thu Jul 23, 2009 10:38 pm Subject: Concatenate carriage returns and quotes |
Ok, I got this far:
Jscript := ("<html> `r
<body text=""#00FF00""bgcolor=""#000000""> `r
<script type="" ... |
Topic: Concatenate carriage returns and quotes |
charliemopps
Replies: 13
Views: 328
|
Forum: Ask for Help Posted: Thu Jul 23, 2009 10:31 pm Subject: Concatenate carriage returns and quotes |
I'm nub here so forgive me
but maybe....
http://www.autohotkey.com/docs/commands/_EscapeChar.htm
Yes, that helps.
Try quotes around the text...
Jscript = ("
< ... |
Topic: Concatenate carriage returns and quotes |
charliemopps
Replies: 13
Views: 328
|
Forum: Ask for Help Posted: Thu Jul 23, 2009 10:02 pm Subject: Concatenate carriage returns and quotes |
or like this
Jscript = (
<html>
<body text="#00FF00" bgcolor="#000000">
<script type="text/javascript">
function ClipBoar ... |
Topic: Concatenate carriage returns and quotes |
charliemopps
Replies: 13
Views: 328
|
Forum: Ask for Help Posted: Thu Jul 23, 2009 9:55 pm Subject: Concatenate carriage returns and quotes |
I'm writing a script to dynamically build Javascript.
How do I concatenate carriage returns and Quote marks together?
I know how to do it in other languages... just not AHK
So I'd like
Var ... |
| |