| Author |
Message |
Topic: Loop keystrokes |
Sephiroth2906
Replies: 3
Views: 94
|
Forum: Ask for Help Posted: Thu Oct 09, 2008 8:42 pm Subject: Loop keystrokes |
#x::
Loop 5
{
SendInput, +{tab}
SendInput, y
SendInput, {Enter}
SendInput, {F8}
}
try something like that. I am not sure h ... |
Topic: Help Pausing and Resuming an Infinite Loop |
Sephiroth2906
Replies: 5
Views: 149
|
Forum: Ask for Help Posted: Thu Oct 09, 2008 8:26 pm Subject: Help Pausing and Resuming an Infinite Loop |
Put the #z at the end of the script, here is an example
loop 60
{
FileAppend, `n, notepad.txt
Run, notepad.txt
WinWaitActive, notepad.txt
SendInput, I Typed This
WinClose, notepad. ... |
Topic: Redrawing a window. |
Sephiroth2906
Replies: 2
Views: 73
|
Forum: Ask for Help Posted: Thu Oct 09, 2008 7:49 pm Subject: Redrawing a window. |
| Can you post what code you have written so far? I can't think out of context, it is a failing of mine. |
Topic: Need your help for create BF2 Macro |
Sephiroth2906
Replies: 2
Views: 98
|
Forum: Ask for Help Posted: Thu Oct 09, 2008 1:54 am Subject: Need your help for create BF2 Macro |
Chances are, you will find what you are looking for if you start reading through this topic:
http://www.autohotkey.com/forum/viewtopic.php?t=11390
Even if what you are looking for has not been c ... |
Topic: Adding days to the date.. |
Sephiroth2906
Replies: 12
Views: 351
|
Forum: Ask for Help Posted: Tue Oct 07, 2008 5:33 pm Subject: Adding days to the date.. |
I appriciate the help garry, but I am sorry to say, the code there is above my head and I can't figure out how to utilize it. It did get my mind working however, and I came up with this:
Gui, Add ... |
Topic: Adding days to the date.. |
Sephiroth2906
Replies: 12
Views: 351
|
Forum: Ask for Help Posted: Tue Oct 07, 2008 3:21 pm Subject: Adding days to the date.. |
I am having a problem with Saturday and Sunday. I have a script that adds 30 days to a date of my choosing:
Gui, Add, DateTime, x26 y20 w100 h20 vDate,
Gui, Add, Button, x66 y200 w100 h30 , Find ... |
Topic: Gui multiple variables |
Sephiroth2906
Replies: 3
Views: 114
|
Forum: Ask for Help Posted: Tue Oct 07, 2008 2:00 pm Subject: Gui multiple variables |
This is how I solve the problem
Gui, Add, Text,, Table Name:
Gui, Add, Text,, Column Name:
Gui, Add, Text,, Description:
Gui, Add, Edit, vedit1 ym ; The ym option starts a new ... |
Topic: Convert the date |
Sephiroth2906
Replies: 4
Views: 100
|
Forum: Ask for Help Posted: Mon Oct 06, 2008 9:09 pm Subject: Convert the date |
Ahh man, I can't believe I didn't catch that! Sometime it is the simplest things that are the easiest to overlook.
BTW, you forgot to remove my original message box, so the code should look like t ... |
Topic: Convert the date |
Sephiroth2906
Replies: 4
Views: 100
|
Forum: Ask for Help Posted: Mon Oct 06, 2008 8:26 pm Subject: Convert the date |
| Well, that did set the format, the problem is that it gives me a due date of today, apparrently it does not run the addition, no matter how I adjust the code. I appricate the effort though, any other ... |
Topic: Convert the date |
Sephiroth2906
Replies: 4
Views: 100
|
Forum: Ask for Help Posted: Mon Oct 06, 2008 8:15 pm Subject: Convert the date |
In the documentation, I found a script that does almost exactly what I need.
var1 = ; Make it blank so that the below will use the current time instead.
var1 += 30, days
MsgBox, Due %var1%. ; The ... |
Topic: How to add multiple variables together |
Sephiroth2906
Replies: 5
Views: 221
|
Forum: Ask for Help Posted: Sun Oct 05, 2008 12:51 am Subject: How to add multiple variables together |
| Huh, that is marvelous. I appreciate the help. I am curious, is there some kind of step by step tutorial that introduces the advanced capability of the program? I looked up A_Index, and the descrip ... |
Topic: How to add multiple variables together |
Sephiroth2906
Replies: 5
Views: 221
|
Forum: Ask for Help Posted: Fri Oct 03, 2008 9:30 pm Subject: How to add multiple variables together |
| I am sure that this is likely easy, but when searching the forum, I could not find any examples. I have a script that has 7 variables, lables var1, var2, etc. I need to add them together to make an ... |
Topic: Simple key stroke recorder |
Sephiroth2906
Replies: 26
Views: 3622
|
Forum: Scripts & Functions Posted: Fri Sep 19, 2008 9:02 pm Subject: How about timestamps? |
Here is shajul's code modified to place a timestamp everytime a new window is opened and input is entered.
#Persistent
#InstallKeybdHook
oldtitle=nothing
Loop
{
Input, Use ... |
Topic: ComputerDiscipline - Advanced Window Blocking to help u work |
Sephiroth2906
Replies: 5
Views: 605
|
Forum: Scripts & Functions Posted: Fri Jul 18, 2008 8:13 pm Subject: ComputerDiscipline - Advanced Window Blocking to help u work |
I am getting this error
---------------------------
ComputerDiscipline.ahk
---------------------------
Error: The following variable name contains an illegal character:
"CDC-INDX-D004" ... |
Topic: How to tell that a window's content has changed |
Sephiroth2906
Replies: 3
Views: 112
|
Forum: Ask for Help Posted: Thu Jul 17, 2008 8:13 pm Subject: How to tell that a window's content has changed |
| I like the screenshot idea, but I have the window invisible, because I am trying to translate the information on the window into a more readable format. Will imagesearch still be able to find an invi ... |
| |