| Author |
Message |
Topic: Ceil Function |
Litmus Red
Replies: 2
Views: 627
|
Forum: Bug Reports Posted: Thu Nov 03, 2005 11:58 pm Subject: Ceil Function |
| Super. Thanks. |
Topic: Ceil Function |
Litmus Red
Replies: 2
Views: 627
|
Forum: Bug Reports Posted: Thu Nov 03, 2005 5:00 pm Subject: Ceil Function |
I'm having trouble with the following...
Var1 := Ceil(62/61)
MsgBox, , , Var1 is %Var1%., 2
Var1 ends up being 1. |
Topic: help please |
Litmus Red
Replies: 7
Views: 528
|
Forum: Ask for Help Posted: Sat Sep 24, 2005 2:31 am Subject: help please |
You might also check out this topic ...
http://www.autohotkey.com/forum/viewtopic.php?t=3300
Chris's script, posted 02 Mar 2004, works in some apps, but I haven't been able to get it to work in ... |
Topic: help please |
Litmus Red
Replies: 7
Views: 528
|
Forum: Ask for Help Posted: Sat Sep 24, 2005 2:19 am Subject: help please |
NewImage =
OldImage =
The above clears the variables NewImage and OldImage.
My last script takes a screenshot of the active window between every page down command. When the screenshots are ide ... |
Topic: help please |
Litmus Red
Replies: 7
Views: 528
|
Forum: Ask for Help Posted: Fri Sep 23, 2005 3:56 pm Subject: help please |
How about this?
F3::
Sleep, 2000
Loop
{
Send, {PgDn}
Sleep, 200
Send, !{PrintScreen}
NewImage := ClipboardAll
If NewImage = %OldImage%
Break
OldImag ... |
Topic: Multiple if statements....need help please |
Litmus Red
Replies: 5
Views: 473
|
Forum: Ask for Help Posted: Wed Sep 21, 2005 6:19 pm Subject: Multiple if statements....need help please |
Oh. This searches the last line, but only once.
F3::
Loop, read, C:\logs\kharras.txt
CurrentLine = %A_LoopReadLine%
IfInString, CurrentLine, CH
Send,single
IfInString, Curr ... |
Topic: Multiple if statements....need help please |
Litmus Red
Replies: 5
Views: 473
|
Forum: Ask for Help Posted: Fri Sep 16, 2005 3:52 am Subject: Multiple if statements....need help please |
Mighty-f, could you put your question under a new topic?  |
Topic: Multiple if statements....need help please |
Litmus Red
Replies: 5
Views: 473
|
Forum: Ask for Help Posted: Fri Sep 16, 2005 1:30 am Subject: Multiple if statements....need help please |
How about this?
F3::
Loop, Read, C:\logs\kharras.txt
{
IfInString, A_LoopReadLine, CH
Send, single
IfInString, A_LoopReadLine, QH
Send, double
}
Return |
Topic: Need help with date setting script |
Litmus Red
Replies: 7
Views: 603
|
Forum: Ask for Help Posted: Sun Sep 11, 2005 7:25 pm Subject: Need help with date setting script |
It's OK. It was my mistake.  |
Topic: Need help with date setting script |
Litmus Red
Replies: 7
Views: 603
|
Forum: Ask for Help Posted: Sun Sep 11, 2005 3:07 pm Subject: Need help with date setting script |
this didnt work.
My fault. This works, though you've got a more complete solution from Rabiator above.
SuperDate = 06/08/1995
StringSplit, SuperDatePart, SuperDate, /
SuperDate = %SuperDatePa ... |
Topic: My dear US americans ... |
Litmus Red
Replies: 22
Views: 2490
|
Forum: General Chat Posted: Sat Sep 10, 2005 3:47 pm Subject: My dear US americans ... |
I started
Gosh. |
Topic: My dear US americans ... |
Litmus Red
Replies: 22
Views: 2490
|
Forum: General Chat Posted: Fri Sep 09, 2005 11:16 pm Subject: My dear US americans ... |
The book "Climbing Mount Improbable" by Richard Dawkins contains a nice chapter on the eye's evolution.
Thanks. I've ordered it. |
Topic: Calendar control |
Litmus Red
Replies: 4
Views: 743
|
Forum: Ask for Help Posted: Fri Sep 09, 2005 8:09 pm Subject: Calendar control |
This is a sloppy method, but it works OK.
Gui, Add, MonthCal, gCalendar vmycalendar ,20050101
gui, show
Return
Calendar:
MouseGetPos, , YPos
If YPos < 60
Return
gui, submit
ms ... |
Topic: help: I need to join numerous txt files into a single txt bu |
Litmus Red
Replies: 12
Views: 798
|
Forum: Ask for Help Posted: Wed Sep 07, 2005 12:31 am Subject: help: I need to join numerous txt files into a single txt bu |
Based on BoBo/Ranomore's script:
inFileLocation = C:\Temp\*.txt
Loop,%inFileLocation%,0,1
{
FileRead,fileContents,%A_LoopFileFullPath%
if a_index = 1
FileAppend,File ... |
Topic: msgbox showing number of loops? |
Litmus Red
Replies: 2
Views: 329
|
Forum: Ask for Help Posted: Wed Sep 07, 2005 12:05 am Subject: msgbox showing number of loops? |
Maybe something like this?
Loop
{
MsgBox, , , A_Index is %A_Index%., 1
If A_Index = 5
{
LastNo := A_Index
Break
}
}
MsgBox, , , Last A_Index was %LastNo%.
Return
... |
| |