| Author |
Message |
Topic: Using a variable as the default value for Hotkey GUI box |
albedoa
Replies: 5
Views: 132
|
Forum: Ask for Help Posted: Thu Aug 28, 2008 2:17 pm Subject: Using a variable as the default value for Hotkey GUI box |
| Again, thank you for your help. I have read those docs and have a pretty good understanding of the Hotkey box, but pressing Enter, Backspace, Escape, etc. in a Hotkey box reverts the hotkey selection ... |
Topic: Using a variable as the default value for Hotkey GUI box |
albedoa
Replies: 5
Views: 132
|
Forum: Ask for Help Posted: Tue Aug 26, 2008 8:03 pm Subject: Using a variable as the default value for Hotkey GUI box |
Wow, that was confusing. I was reading the hotkey from a file and added a space to it by mistake. Thank you.
Soif I want to allow a user to choose keys such as {Enter} and {Backspace} as hotkeys, I ... |
Topic: Using a variable as the default value for Hotkey GUI box |
albedoa
Replies: 5
Views: 132
|
Forum: Ask for Help Posted: Tue Aug 26, 2008 7:01 pm Subject: Using a variable as the default value for Hotkey GUI box |
myHotkey = ^C
Gui Add, Hotkey, someVar, %myHotkey%
Why can't I do this? It seems reasonable that if you can do:
Hotkey %myHotkey%, SomeLabel
That I should be able to also show that v ... |
Topic: [Solved] How to add many buttons on a gui using a loop |
albedoa
Replies: 9
Views: 227
|
Forum: Ask for Help Posted: Tue Aug 26, 2008 5:56 pm Subject: [Solved] How to add many buttons on a gui using a loop |
I don't think the second variable can be Button%A_Index%. Wrong format I believe.
Your example assigns the labels button1 thru button16.
I don't want my button labels to be named button1 thru ... |
Topic: Can't grasp basic understanding of SetWindowPos() |
albedoa
Replies: 13
Views: 217
|
Forum: Ask for Help Posted: Thu Aug 14, 2008 1:29 am Subject: Can't grasp basic understanding of SetWindowPos() |
Is there an AHK command to place a window second from the top? I thought my search was extensive.
The DllCall command is specifically for those calls which AHK lacks a command for, no? |
Topic: Can't grasp basic understanding of SetWindowPos() |
albedoa
Replies: 13
Views: 217
|
Forum: Ask for Help Posted: Wed Aug 06, 2008 8:17 pm Subject: Can't grasp basic understanding of SetWindowPos() |
Ah, that's where my confusion lies. Thanks so much for the help. If you read this, can you tell me why the SetWindowPos() pages says:
HWND_TOP
Places the window at the top of the Z order.
... |
Topic: Can't grasp basic understanding of SetWindowPos() |
albedoa
Replies: 13
Views: 217
|
Forum: Ask for Help Posted: Wed Aug 06, 2008 7:57 pm Subject: Can't grasp basic understanding of SetWindowPos() |
Heh, I did. It must be something simple. This is my code:
f1::
hWnd := WinExist("ahk_class Notepad") ;get handle
DllCall("SetWindowPos"
, "UInt&q ... |
Topic: Can't grasp basic understanding of SetWindowPos() |
albedoa
Replies: 13
Views: 217
|
Forum: Ask for Help Posted: Wed Aug 06, 2008 7:42 pm Subject: Can't grasp basic understanding of SetWindowPos() |
| Now I am thinking I am completely lost. Is the code you posted supposed to do something? Because it doesn't on my system. |
Topic: Can't grasp basic understanding of SetWindowPos() |
albedoa
Replies: 13
Views: 217
|
Forum: Ask for Help Posted: Wed Aug 06, 2008 4:14 pm Subject: Can't grasp basic understanding of SetWindowPos() |
I appreciate the attempt at helping me, but my confusion must run a bit deeper than you presume. With what you gave me, I did this:
WinGet id,, Untitled - Notepad
DllCall("SetWindowPos&qu ... |
Topic: Can't grasp basic understanding of SetWindowPos() |
albedoa
Replies: 13
Views: 217
|
Forum: Ask for Help Posted: Wed Aug 06, 2008 3:37 pm Subject: Can't grasp basic understanding of SetWindowPos() |
| I have just discovered DLLCall, and I read the Microsoft documentation for SetWindowPos() ( http://msdn.microsoft.com/en-us/library/ms633545(VS.85).aspx ), but still don't understand what any of it me ... |
Topic: Cannot recreate GUI after closing it |
albedoa
Replies: 1
Views: 75
|
Forum: Ask for Help Posted: Thu Jul 03, 2008 3:28 pm Subject: Cannot recreate GUI after closing it |
| This is driving me nuts. This script brings up a tooltip menu when ctrl+` is hit. From there, you can hit 1 to begin another process I haven't implemented yet. Then you can press ctrl+` again to close ... |
Topic: Hotkey turned off at start of script |
albedoa
Replies: 1
Views: 117
|
Forum: Ask for Help Posted: Fri Jun 27, 2008 3:33 am Subject: Hotkey turned off at start of script |
I want a bunch of my hotkeys to be toggled off when my script begins. Is this the most efficient way to do it?
hotkey ~, toggle
~::
msgbox
return
Or is there a method of having ... |
Topic: Navigating tiled windows with the keyboard |
albedoa
Replies: 2
Views: 108
|
Forum: Ask for Help Posted: Tue May 20, 2008 7:45 pm Subject: Navigating tiled windows with the keyboard |
Thanks for your response. All of the windows I will be using this with will have equal width and height. This is what I got. I don't know if it can be easier:
Run notepad.exe
WinWait Untitled - No ... |
Topic: Navigating tiled windows with the keyboard |
albedoa
Replies: 2
Views: 108
|
Forum: Ask for Help Posted: Tue May 20, 2008 5:53 pm Subject: Navigating tiled windows with the keyboard |
I've searched extensively, but producing meaningful keywords for this problem is difficult. Sorry if I missed it.
I am trying to make a script that will allow me to navigate a tiled group of window ... |
Topic: Moving the Windows task bar from the bottom to the right |
albedoa
Replies: 9
Views: 268
|
Forum: Ask for Help Posted: Sun May 18, 2008 6:00 pm Subject: Moving the Windows task bar from the bottom to the right |
| Right, I know how to search for pages in a particular site, and I saw that post. It's great that I can copy and paste that code and have it work, but that post does not explain what any of the code me ... |
| |