| Author |
Message |
Topic: Fetch windows theme |
a_h_k
Replies: 2
Views: 112
|
Forum: Ask for Help Posted: Wed Jan 04, 2012 5:36 am Subject: Fetch windows theme |
Thanks for that, but what i needed was a way to find the name of theme in use but without knowing the theme file path.
Anyway, i found it in the registry (don't know why didn't think of that before ... |
Topic: Fetch windows theme |
a_h_k
Replies: 2
Views: 112
|
Forum: Ask for Help Posted: Tue Jan 03, 2012 2:56 am Subject: Fetch windows theme |
Happy new year AutoHotkey! I wonder what great things will be done with with AutoHotkey 2012???
Anyone know how to get the name of the current Windows theme in use?
Might be a job for DllCall() ... |
Topic: Need Someone To Write a Script |
a_h_k
Replies: 5
Views: 232
|
Forum: Ask for Help Posted: Wed Dec 21, 2011 6:53 pm Subject: Need Someone To Write a Script |
| What's this for exactly? (if you don't mind) |
Topic: <SOLVED> IfWinActive, ahk_class, Title (exact name) Co |
a_h_k
Replies: 14
Views: 414
|
Forum: Ask for Help Posted: Wed Dec 21, 2011 6:44 pm Subject: <SOLVED> IfWinActive, ahk_class, Title (exact name) Co |
Made a few alterations, replacing Loop with Timer, & GetKeyState with just hotkeys. Try it out...
~Mbutton & LButton::
WinGet, WinID, ID, A
MyWin = ahk_id %WinID% ;%WinID ... |
Topic: Unreliable Mouse/Key Commands |
a_h_k
Replies: 2
Views: 113
|
Forum: Ask for Help Posted: Wed Dec 21, 2011 6:11 pm Subject: Unreliable Mouse/Key Commands |
Couple of possible bugs:
• send ^+v ---> send ^v
• Clipboard := ---> Clipboard := "" (or Clipboard =) |
Topic: Couple questions regarding AutoHotkey from beginner |
a_h_k
Replies: 24
Views: 697
|
Forum: Ask for Help Posted: Mon Oct 10, 2011 2:48 pm Subject: Couple questions regarding AutoHotkey from beginner |
| When you say 'sidebar' do you mean the treeview (ie the "explorer bar") or common tasks sidebar of and explorer window? |
Topic: Couple questions regarding AutoHotkey from beginner |
a_h_k
Replies: 24
Views: 697
|
Forum: Ask for Help Posted: Mon Oct 10, 2011 2:10 pm Subject: Couple questions regarding AutoHotkey from beginner |
You mean the width of the taskbar (sidebar)?
That & a whole bunch of other settings, are stored as a SINGLE BINARY value ( ) in a registry key. Maybe some Windows expert (on some windows forum) ... |
Topic: RunWait problem |
a_h_k
Replies: 30
Views: 924
|
Forum: Ask for Help Posted: Fri Sep 23, 2011 9:56 am Subject: RunWait problem |
How about "Send {alt}x" or similar, to exit  |
Topic: AHK & Identifying Windows |
a_h_k
Replies: 15
Views: 2039
|
Forum: Ask for Help Posted: Sat Aug 06, 2011 3:19 am Subject: AHK & Identifying Windows |
This method SEEMS to work, but not fully tested...
SetTitleMatchMode, RegEx
If WinExist("[]")
MsgBox BLANK-TITLED WINDOW DETECTED !!!
 |
Topic: Tricky StringSplit problem |
a_h_k
Replies: 3
Views: 185
|
Forum: Ask for Help Posted: Mon Jun 06, 2011 3:24 pm Subject: Tricky StringSplit problem |
This is what i want:
StringSplit, results, inputVar, `n`,`r(inputVar is the contents of a text file)
But want to be able to specify Delimiters & OmitChars instead with a single variable
ie
S ... |
Topic: Tricky StringSplit problem |
a_h_k
Replies: 3
Views: 185
|
Forum: Ask for Help Posted: Mon Jun 06, 2011 10:09 am Subject: Tricky StringSplit problem |
The code should be self-explanatory about what i'm wanting to achieve, versus what actually happens.
inputVar =
(
line 1: some data 1a, some data 2a, some data 3a
line 2: some data ... |
Topic: Button-Menu type of control needed |
a_h_k
Replies: 3
Views: 205
|
Forum: Ask for Help Posted: Sun May 29, 2011 3:48 pm Subject: Button-Menu type of control needed |
I had another think and realised i could use a standard menu (not menubar), as that can be positioned (via "Menu, MenuName, Show, x, y" - which you also detailed in your code).
I just (agai ... |
Topic: AddButtonMenu() |
a_h_k
Replies: 0
Views: 321
|
Forum: Scripts & Functions Posted: Sun May 29, 2011 3:30 pm Subject: AddButtonMenu() |
This is just some basic code I threw-up in response to my post in "Ask for Help" ---> ButtonMenu"...
AddButtonMenu(buttonText="ButtonMenu", x=0, y=0, menuText1=&q ... |
Topic: Button-Menu type of control needed |
a_h_k
Replies: 3
Views: 205
|
Forum: Ask for Help Posted: Thu May 26, 2011 2:24 pm Subject: Button-Menu type of control needed |
| I'm trying to add a pop-up button-menu type control to my gui. Basically it will be a selector that looks/acts just like a 1-menu Menu (just 1 menu item in the "menu bar"), which looks/acts ... |
Topic: Runas |
a_h_k
Replies: 3
Views: 237
|
Forum: Ask for Help Posted: Sat Apr 23, 2011 11:49 pm Subject: Runas |
We aim to please......  |
| |