| Author |
Message |
Topic: Changing an edit box color if it's not empty. |
TedStriker
Replies: 1
Views: 59
|
Forum: Ask for Help Posted: Thu Feb 09, 2012 4:41 pm Subject: Changing an edit box color if it's not empty. |
Yes, there is a way.
First you need the function "control_colors"
English thread:
http://www.autohotkey.com/forum/topic33777.html&postdays=0&postorder=asccont ... |
Topic: BFrame [ Desktop pictures gadget ] |
TedStriker
Replies: 1
Views: 490
|
Forum: Scripts & Functions Posted: Mon Jan 16, 2012 4:02 pm Subject: BFrame [ Desktop pictures gadget ] |
This isn't a script, this is a full application... thank you for sharing!!  |
Topic: [Function] Custom Msgbox / Custom Buttons |
TedStriker
Replies: 15
Views: 5161
|
Forum: Scripts & Functions Posted: Tue Dec 20, 2011 1:56 pm Subject: [Function] Custom Msgbox / Custom Buttons |
Hi Ryanmm50,
you'll need an installation of Autohotkey to make the script work.
This will probably help you: http://www.autohotkey.com/docs/Tutorial.htm
Have fun!  |
Topic: AHK Syntax Highlighting for AkelPad |
TedStriker
Replies: 10
Views: 3470
|
Forum: Scripts & Functions Posted: Wed Dec 14, 2011 2:11 pm Subject: Re: AutoHotkey highlighting for AkelPad Coder plugin |
http://akelpad.sourceforge.net/files/plugs/Coder/ahk.coder
Thank you!
Akelpad is already a great editor, but now being able to use it with colors, code folding and auto-complete is ... |
Topic: [Function] Custom Msgbox / Custom Buttons |
TedStriker
Replies: 15
Views: 5161
|
Forum: Scripts & Functions Posted: Tue Dec 13, 2011 4:02 pm Subject: [Function] Custom Msgbox / Custom Buttons |
Thanks @AmourSpirit for replying to a 3 years old thread. I'd have never found it. I love it.
Since I'm on dual screen I hate it when GUIs appear on the wrong screen. I've added some little code, ... |
Topic: How are two If-Else scripts correctly combined into one? |
TedStriker
Replies: 3
Views: 156
|
Forum: Ask for Help Posted: Thu Sep 22, 2011 12:42 pm Subject: How are two If-Else scripts correctly combined into one? |
Or try this:
SetTitleMatchMode, 2
IfWinExist, Inbox
WinActivate
else IfWinExist, Contacts
WinActivate
else
WinActivate, Outlook
Return |
Topic: Colored Controls (no bitmaps needed) |
TedStriker
Replies: 18
Views: 5220
|
Forum: Scripts & Functions Posted: Thu Dec 02, 2010 12:02 pm Subject: Colored Controls (no bitmaps needed) |
I used this function for quite a while but recently had to abandon it. There appears to be a bug that causes a script to hang when you try to resize a GUI window.
When you eliminate this function ... |
Topic: Activate Hotstrings ONLY while a window is open... |
TedStriker
Replies: 15
Views: 667
|
Forum: Ask for Help Posted: Tue Mar 23, 2010 6:07 pm Subject: Activate Hotstrings ONLY while a window is open... |
Guess that's the problem, since your script relies on DetectHiddenWindows...
This should work anywhere.
; Form Filler
#IfWinExist,FormFiller
:c*:A::Andrew
: ... |
Topic: Activate Hotstrings ONLY while a window is open... |
TedStriker
Replies: 15
Views: 667
|
Forum: Ask for Help Posted: Tue Mar 23, 2010 2:54 pm Subject: Activate Hotstrings ONLY while a window is open... |
Neat idea with the hidden window.
Here's your code modified with 3 seconds traytips. Please read the help file entry for TrayTip to learn why it's necessary to do it in this way.
; Form F ... |
Topic: Activate Hotstrings ONLY while a window is open... |
TedStriker
Replies: 15
Views: 667
|
Forum: Ask for Help Posted: Tue Mar 23, 2010 11:34 am Subject: Activate Hotstrings ONLY while a window is open... |
Here's the same without suspend. Working, but not beautiful. I'm sure it can be done better. Guess the "Hotkey" command isn't working for Hotstrings. I can't figure that out.
Using ... |
Topic: Activate Hotstrings ONLY while a window is open... |
TedStriker
Replies: 15
Views: 667
|
Forum: Ask for Help Posted: Tue Mar 23, 2010 9:50 am Subject: Activate Hotstrings ONLY while a window is open... |
Many ways lead to Rome...
Here's how I'd do your script:
SetTitleMatchMode, 2
TrayTip,,Yo! I'll fill forms in application WHATEVER.`nHit Win+F to enable or disable.`nHit WIN+X to kill m ... |
Topic: Activate Hotstrings ONLY while a window is open... |
TedStriker
Replies: 15
Views: 667
|
Forum: Ask for Help Posted: Tue Mar 23, 2010 9:21 am Subject: Activate Hotstrings ONLY while a window is open... |
Guess the "FormFiller" window was still there, somewhere...
Try this. This makes sure to get rid of all "FormFiller" windows.
#IfWinExist,FormFiller
:*:a: ... |
Topic: Activate Hotstrings ONLY while a window is open... |
TedStriker
Replies: 15
Views: 667
|
Forum: Ask for Help Posted: Mon Mar 22, 2010 1:59 pm Subject: Activate Hotstrings ONLY while a window is open... |
#IfWinExist,FormFiller
:*:a::Andrew
:*:g::Grainger
#IfWinExist
+#F::
IfWinExist, FormFiller
Gui, Destroy
else
{
Gui, Add ... |
Topic: Monthcal - Week numbers wrong |
TedStriker
Replies: 4
Views: 1923
|
Forum: Bug Reports Posted: Thu Mar 11, 2010 8:07 pm Subject: Monthcal - Week numbers wrong |
FWIW... I found a solution for Win7 in this old thread: http://www.autohotkey.com/forum/topic991.html
HKEY_CURRENT_USER\Control Panel\International\iFirstWeekOfYear
Set it to 1 and voila... Co ... |
Topic: Monthcal - Week numbers wrong |
TedStriker
Replies: 4
Views: 1923
|
Forum: Bug Reports Posted: Mon Mar 01, 2010 2:16 pm Subject: Monthcal - Week numbers wrong |
Thanks for your post, PhiLho.
This is interesting. I tried the same script at my workplace (Windows XP, same region setting (German), Monday = first day of week) and it displays the correct week.
... |
| |