| Author |
Message |
Topic: Gui window with no border |
robcheese
Replies: 4
Views: 294
|
Forum: Ask for Help Posted: Fri Feb 25, 2011 3:46 am Subject: Gui window with no border |
Thanks . I wish all my questions had an answer this simple. |
Topic: Gui window with no border |
robcheese
Replies: 4
Views: 294
|
Forum: Ask for Help Posted: Thu Feb 24, 2011 9:55 pm Subject: Gui window with no border |
Is it possible to create a gui with no border and a picture covering the entire thing? I tried the following but there is still a small grey border around the edges:
Gui, -0x800000
Gui, Add, Pictu ... |
Topic: Stop application redraw |
robcheese
Replies: 2
Views: 137
|
Forum: Ask for Help Posted: Tue Feb 22, 2011 9:58 pm Subject: Stop application redraw |
I haven't had any luck with post/sendmessage yet but using WinMenuSelectItem made things significantly less flickery.
Thanks! |
Topic: Stop application redraw |
robcheese
Replies: 2
Views: 137
|
Forum: Ask for Help Posted: Fri Feb 18, 2011 9:28 pm Subject: Stop application redraw |
Is it possible to stop an application or the screen from redrawing while an AHK script is doing some processing?
I just want to automate something that goes through file menus and dialogs and it wo ... |
Topic: Get text from AutoIt3 Window Spy in AHK |
robcheese
Replies: 2
Views: 313
|
Forum: Ask for Help Posted: Fri Feb 18, 2011 3:55 pm Subject: Get text from AutoIt3 Window Spy in AHK |
Thanks sinkfaze. I still can't seem to differentiate the text from "Visible Window Text" and the text from "TitleMatchMode=slow Visible Text".
I tried the following code but I a ... |
Topic: Get text from AutoIt3 Window Spy in AHK |
robcheese
Replies: 2
Views: 313
|
Forum: Ask for Help Posted: Fri Feb 18, 2011 3:08 pm Subject: Get text from AutoIt3 Window Spy in AHK |
Hi,
In AutoIt3 Window Spy there is a field called "TitleMatchMode=slow Visible Text". Is there any way to get the contents of this field in an AHK script (without running AutoIt3 Window S ... |
Topic: List View not working with RunWait |
robcheese
Replies: 18
Views: 349
|
Forum: Ask for Help Posted: Thu Jul 15, 2010 4:37 pm Subject: List View not working with RunWait |
| Changing the max number of threads for my message worked!! That's weird that I would have a different default then you. Anyway thanks for all the help. |
Topic: List View not working with RunWait |
robcheese
Replies: 18
Views: 349
|
Forum: Ask for Help Posted: Thu Jul 15, 2010 4:12 pm Subject: List View not working with RunWait |
main.ahk
;
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
; Author: A.N.Other <myemail@nowhere.com>
;
; Script Function:
; Tem ... |
Topic: List View not working with RunWait |
robcheese
Replies: 18
Views: 349
|
Forum: Ask for Help Posted: Thu Jul 15, 2010 4:00 pm Subject: List View not working with RunWait |
| The message isn't even being caught by my message handeling function. I even tried putting in a single click message handler that displays a message box and it stops doing anything once RunWait is cal ... |
Topic: List View not working with RunWait |
robcheese
Replies: 18
Views: 349
|
Forum: Ask for Help Posted: Thu Jul 15, 2010 3:48 pm Subject: List View not working with RunWait |
What are you trying to run while the runwait is going on?
I am running a file called Wyg.exe but I tried just running calc.exe and I get the same results.
Do you think this could be an OS issue? ... |
Topic: List View not working with RunWait |
robcheese
Replies: 18
Views: 349
|
Forum: Ask for Help Posted: Thu Jul 15, 2010 3:21 pm Subject: List View not working with RunWait |
For some reason the message is only being sent when RunWait isn't running.
Any ideas how that could happen? |
Topic: List View not working with RunWait |
robcheese
Replies: 18
Views: 349
|
Forum: Ask for Help Posted: Thu Jul 15, 2010 2:33 pm Subject: List View not working with RunWait |
OnMessage(0x203, "FunctionName")
RunWait, ...
...
return
FunctionName()
{
MouseGetPos,,,, OutputVarControl
; code here
}
Thanks. I'll give that a shot. |
Topic: List View not working with RunWait |
robcheese
Replies: 18
Views: 349
|
Forum: Ask for Help Posted: Thu Jul 15, 2010 2:17 pm Subject: List View not working with RunWait |
Post your code
Not sure how useful this will be but here it is:
GUI:
Gui, font, s18
Gui, Add, Text, x12 y12 w440 h50 +Center, Revision History
Gui, font, s9
Gui, Add, Text, x12 y72 w50 h20 ... |
Topic: List View not working with RunWait |
robcheese
Replies: 18
Views: 349
|
Forum: Ask for Help Posted: Thu Jul 15, 2010 2:08 pm Subject: List View not working with RunWait |
OnMessage(0x201, "FunctionName")
RunWait, ...
FunctionName()
{
; code here
}
Thanks. Do you know of a way to tell which GUI element my mouse is over w ... |
Topic: List View not working with RunWait |
robcheese
Replies: 18
Views: 349
|
Forum: Ask for Help Posted: Thu Jul 15, 2010 2:05 pm Subject: List View not working with RunWait |
the script will wait until you close whatever you launched with Runwait.
The thread that I called RunWait from waits for the program to stop running which is what I want but AHK just creates a new ... |
| |