| Author |
Message |
Topic: (Solved) Tooltip while key is held, or hotkey is pressed |
Pierre
Replies: 10
Views: 413
|
Forum: Ask for Help Posted: Fri Jan 25, 2008 5:09 pm Subject: (Solved) Tooltip while key is held, or hotkey is pressed |
I have my window key showing a tooltip.
~LWin::
CoordMode, ToolTip, Screen
ToolTip %tooltip_text%,600,100
KeyWait, LWin
ToolTip
return
and hotkeys like #a, #Space ... running just fine. |
Topic: AppsKeys - a "suite" of simple utility hotkeys |
Pierre
Replies: 11
Views: 3006
|
Forum: Scripts & Functions Posted: Tue Jan 22, 2008 3:21 pm Subject: AppsKeys - a "suite" of simple utility hotkeys |
Nevermind, that was a spaces/tabs issue in my editor (the scite version configured for AHK)
P. |
Topic: AppsKeys - a "suite" of simple utility hotkeys |
Pierre
Replies: 11
Views: 3006
|
Forum: Scripts & Functions Posted: Tue Jan 22, 2008 3:11 pm Subject: AppsKeys - a "suite" of simple utility hotkeys |
I get some "This line does not contain a recognized action." e.g. on line 143 RegRead, BrowserPath, HKCR, HTTP\Shell\Open\Command or line 205 If SubStr(TempText, 1, 4) != "http"
... |
Topic: Out Of Keys |
Pierre
Replies: 7
Views: 316
|
Forum: Ask for Help Posted: Thu Dec 13, 2007 4:45 pm Subject: Out Of Keys |
| In a related way: I tried to map #! where ! would be the actual key but I did not find a way to espace the ! to the actual key. Any tip? |
Topic: Limiting kid's time on computer |
Pierre
Replies: 7
Views: 1309
|
Forum: Scripts & Functions Posted: Tue Dec 11, 2007 7:50 am Subject: Limiting kid's time on computer |
| Well, kids are pretty smart about computers, so simply hiding your ini file might not work all that well. Either A) hard-code the days/time with your program so there's only the exe, or, B) encrypt th ... |
Topic: Limiting kid's time on computer |
Pierre
Replies: 7
Views: 1309
|
Forum: Scripts & Functions Posted: Mon Dec 10, 2007 4:51 pm Subject: Limiting kid's time on computer |
Hi,
I know this has been discussed a bit and some solutions have been suggested. There are also software like Vigibou that does some of it. Nonetheless I wrote my own solution to accomodate some re ... |
Topic: why is the GUI not created if code placed at this position? |
Pierre
Replies: 2
Views: 232
|
Forum: Ask for Help Posted: Fri Nov 23, 2007 6:37 pm Subject: why is the GUI not created if code placed at this position? |
I found a work around:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
#SingleInstance,Force
SendMode Input ; Recommended for new scripts due t ... |
Topic: why is the GUI not created if code placed at this position? |
Pierre
Replies: 2
Views: 232
|
Forum: Ask for Help Posted: Fri Nov 23, 2007 1:28 pm Subject: why is the GUI not created if code placed at this position? |
Hi,
I have a script that "almost works". It works if I keep the "gui add" stuff near the top but not if I put it lower. And keeping it at the top means some variables are not se ... |
Topic: dynamically assign hotkeys |
Pierre
Replies: 3
Views: 201
|
Forum: Ask for Help Posted: Thu Nov 22, 2007 12:23 pm Subject: dynamically assign hotkeys |
Thanks
It seems "hotkey" requires a function label and does not allow more dirrect assignment of action like this:
Loop, read, %MyIni%
{
StringSplit, word_array, A_LoopReadL ... |
Topic: if a = x or a = b or a=... more efficient case structure? |
Pierre
Replies: 6
Views: 360
|
Forum: Ask for Help Posted: Thu Nov 22, 2007 11:49 am Subject: if a = x or a = b or a=... more efficient case structure? |
I don't understand a think of this INI_ReadSection but your example seems manageable. Will try that and the error stuff suggested by jballi as well.
Thx! |
Topic: dynamically assign hotkeys |
Pierre
Replies: 3
Views: 201
|
Forum: Ask for Help Posted: Thu Nov 22, 2007 11:44 am Subject: dynamically assign hotkeys |
Hi,
I try to setup hotkeys from an "ini" file (not a real ini fine in iniread format)
Here is the "ini" file
#s; salamander; D:\temp-pl\bin\utilities\file_management ... |
Topic: if a = x or a = b or a=... more efficient case structure? |
Pierre
Replies: 6
Views: 360
|
Forum: Ask for Help Posted: Wed Nov 21, 2007 4:32 pm Subject: if a = x or a = b or a=... more efficient case structure? |
One more question if I dare: Iwould like now to move my settings to an ini file (because the script should be compiled for servant salamander to use is as a viewer).
If my ini file is like this:
... |
Topic: if a = x or a = b or a=... more efficient case structure? |
Pierre
Replies: 6
Views: 360
|
Forum: Ask for Help Posted: Wed Nov 21, 2007 4:10 pm Subject: if a = x or a = b or a=... more efficient case structure? |
Super, Thanks a lot!
Here is my updated code:
;applications definition
irfan=D:\temp-pl\bin\multimedia\irfan\i_view32.exe
notepad=D:\temp-pl\bin\editors\Notepad2.exe
vlc=D:\temp-p ... |
Topic: if a = x or a = b or a=... more efficient case structure? |
Pierre
Replies: 6
Views: 360
|
Forum: Ask for Help Posted: Wed Nov 21, 2007 3:44 pm Subject: if a = x or a = b or a=... more efficient case structure? |
Hi I'm writing a small wrapper to bind to my viewer in servant salamander (the old 1.5 version, still my favorite).
I detect extension of selected file and run a give application. Is there a more eff ... |
Topic: GUI text: 1st column repeating under last column |
Pierre
Replies: 2
Views: 166
|
Forum: Ask for Help Posted: Sun Nov 18, 2007 6:46 pm Subject: GUI text: 1st column repeating under last column |
I found the issue. I removed the gui components listing out of the hotkey. Now the hotkey only does the show, not the add.
#NoEnv ; Recommended for performance and compatibility with future Au ... |
| |