| Author |
Message |
Topic: Small and fast Text File Encryptor |
Klaus
Replies: 50
Views: 9798
|
Forum: Scripts & Functions Posted: Wed Mar 03, 2010 11:23 am Subject: Small and fast Text File Encryptor |
Hi, Community,
I was glad to find Laszlo's encrypt-/decrypt-module and I directly startet to attach it to a password application, but a problem came around:
At run time, the passwords and some oth ... |
Topic: Small and fast Text File Encryptor |
Klaus
Replies: 50
Views: 9798
|
Forum: Scripts & Functions Posted: Tue Mar 02, 2010 6:25 pm Subject: Small and fast Text File Encryptor |
HI, newpie,
possibly you've lost the "Autotrim, Off" while altering the code?
Sounds like!
Regards,
Klaus |
Topic: static variable error |
Klaus
Replies: 6
Views: 101
|
Forum: Ask for Help Posted: Wed Feb 24, 2010 1:15 pm Subject: static variable error |
Hi, lostworld,
static variables can be used in functions only. If you need to have a continuous content of a variable in your main programme persistent over several programme ends and starts, you hav ... |
Topic: Trouble with #IfWinActive and java applications |
Klaus
Replies: 2
Views: 107
|
Forum: Ask for Help Posted: Wed Feb 24, 2010 7:33 am Subject: Trouble with #IfWinActive and java applications |
Hi, ahkc,
I understand your problem, I stumbled into it some time ago.
To explain it in short:
For Windows (and therefore for AHK) all Java-windows are not the same as native Windows-windows, they ... |
Topic: subract list 1 from list 2 |
Klaus
Replies: 2
Views: 67
|
Forum: Ask for Help Posted: Thu Jan 07, 2010 7:14 am Subject: subract list 1 from list 2 |
Hi, Guest (a nick would be nice),
I assume you've got your lists in memory.
Now you parse the first one (have a look at the loop-command) with the admins to access the admins one by one. For each fo ... |
Topic: What command helps keeping GUI over all other opened windows |
Klaus
Replies: 3
Views: 113
|
Forum: Ask for Help Posted: Fri Nov 13, 2009 7:06 am Subject: What command helps keeping GUI over all other opened windows |
Hi, Benny-D,
for your request have a look in the manual where you can find the command WinSet with it's attribute AlwaysOnTop.
I hope I could help,
Klaus |
Topic: buttons in random time |
Klaus
Replies: 8
Views: 425
|
Forum: Ask for Help Posted: Tue Nov 03, 2009 4:13 pm Subject: buttons in random time |
Hi, azio,
have a look at this
; initialize two timers to do the typing
SetTimer, pushF1, 100
SetTimer, pushF2, 100
; an infinite loop to keep the programme alive
Loop
{
a=1
}
; ... |
Topic: disable a hotkey when in text mode |
Klaus
Replies: 4
Views: 111
|
Forum: Ask for Help Posted: Thu Oct 01, 2009 8:17 am Subject: disable a hotkey when in text mode |
Hi, Guest (a nice nick would be nice!),
try something like this and play around with itSetTitleMatchMode, 2
Settimer, detectFocus, 3000 ; or a shorter cycle
Gui, Add, Edit, w100 h20
Gui, Add, Bu ... |
Topic: Adding controls dynamically |
Klaus
Replies: 4
Views: 275
|
Forum: Ask for Help Posted: Mon Sep 14, 2009 1:27 pm Subject: Adding controls dynamically |
Hi, Community,
playing around with some simplifying ideas around Gui's I stumbled into the following which I can't explain (well, it works, but why).
Here's my code
c1=1,Add, Button, w100 h20 x1 ... |
Topic: Array usage question |
Klaus
Replies: 2
Views: 243
|
Forum: Ask for Help Posted: Fri Jul 24, 2009 10:56 am Subject: Array usage question |
Hi, GFilkins,
just open the AHK-help file and search for "Arrays", there you'll find everything about the array-concept in AHK so far. From these explanations you can deduce the possibiliti ... |
Topic: help needed. |
Klaus
Replies: 3
Views: 111
|
Forum: Ask for Help Posted: Thu Jul 23, 2009 9:39 am Subject: help needed. |
Hi, LazyGuest,
please surround you code examples with code tags to improve readability.
Your code seems to be ok. It types four times TAB4 followed by one 8 in an endless loop until F8 is typed. Pro ... |
Topic: LVA: Color individual cells of a ListView, and more ... |
Klaus
Replies: 25
Views: 3828
|
Forum: Scripts & Functions Posted: Wed Jul 22, 2009 11:57 am Subject: LVA: Color individual cells of a ListView, and more ... |
Forgot to mention the function names:
lva_hWndInfo and lva_Info
Regards,
Klaus |
Topic: LVA: Color individual cells of a ListView, and more ... |
Klaus
Replies: 25
Views: 3828
|
Forum: Scripts & Functions Posted: Wed Jul 22, 2009 11:57 am Subject: LVA: Color individual cells of a ListView, and more ... |
Hi, dadepp,
a real useful lib, your lva, but there a two functions in the lva.ahk
which start with a single "Static" without any variable names. That
causes an error on loading time.
Co ... |
Topic: can someone make me a simple infinite loop macro please |
Klaus
Replies: 2
Views: 148
|
Forum: Ask for Help Posted: Tue Jul 21, 2009 1:50 pm Subject: can someone make me a simple infinite loop macro please |
Hi, chafeking,
try something like this; your hotkeys
[::Mouseclick, left, ...
]::Mouseclick, right, ...
; loop forever
loop
{
Send, [
Sleep, 1000
Send, ]
... |
Topic: can AHK handle left and right channels of Soundcard? |
Klaus
Replies: 2
Views: 167
|
Forum: Ask for Help Posted: Sat Jul 18, 2009 1:47 pm Subject: can AHK handle left and right channels of Soundcard? |
Hi, mlracing,
have a look in the manual at "SoundSet", there you will find a little passage mentioning "channels". Controlling a single channel does not
seem to be possible with ... |
| |