| Author |
Message |
Topic: How to Delete 2D Array |
ranomore
Replies: 21
Views: 1111
|
Forum: Ask for Help Posted: Sun Jan 01, 2006 4:33 am Subject: How to Delete 2D Array |
Can ListVars be written to #ErrorStdOut ? or can you use the method the documentation offers to read it?
However, you can have the command prompt redirect the output to a file as in this example:
... |
Topic: help! Saving and reloading control variables |
ranomore
Replies: 8
Views: 609
|
Forum: Ask for Help Posted: Tue Dec 20, 2005 5:49 pm Subject: help! Saving and reloading control variables |
| And wow, I just realized I've been using Choose this entire time. In the docs, I noticed that if Choose isn't an integer, it will use ChooseString anyways though. I did some testing and it SEEMS like ... |
Topic: CTRL+ALT+ MouseWheel up/Down |
ranomore
Replies: 5
Views: 501
|
Forum: Ask for Help Posted: Tue Dec 20, 2005 5:35 pm Subject: CTRL+ALT+ MouseWheel up/Down |
@Chris - Thanks! I hadn't tried holding down the keys in the opposite order.  |
Topic: help! Saving and reloading control variables |
ranomore
Replies: 8
Views: 609
|
Forum: Ask for Help Posted: Tue Dec 20, 2005 1:41 am Subject: help! Saving and reloading control variables |
I think it would be helpful also if we could see how you are adding these controls in the GUI. Anyway, here is something similar to what I use for working with an ini file
guiTitle := "S ... |
Topic: CTRL+ALT+ MouseWheel up/Down |
ranomore
Replies: 5
Views: 501
|
Forum: Ask for Help Posted: Mon Dec 19, 2005 10:52 pm Subject: CTRL+ALT+ MouseWheel up/Down |
Try this one. It should show you that you do have to press CTRL+ALT repeatedly. I'm also on XP SP2.
~^!WHEELUP::
i++
TrayTip,,%i%
return
~^!WHEELDOWN::
i--
TrayTip,,%i ... |
Topic: CTRL+ALT+ MouseWheel up/Down |
ranomore
Replies: 5
Views: 501
|
Forum: Ask for Help Posted: Mon Dec 19, 2005 8:51 pm Subject: CTRL+ALT+ MouseWheel up/Down |
Why doesn't this work?
~WHEELUP::
If (GetKeyState("Control") AND GetKeyState("Alt"))
msgbox,16,,Up
return
~WHEELDOWN::
If (Ge ... |
Topic: ClassName+NN > Control's V |
ranomore
Replies: 2
Views: 609
|
Forum: Wish List Posted: Fri Dec 16, 2005 2:46 am Subject: ClassName+NN > Control's V |
| Yup, I'd love to see this feature too. |
Topic: Firefox Search Plugin for the Autohotkey Community! |
ranomore
Replies: 3
Views: 922
|
Forum: Utilities & Resources Posted: Fri Nov 18, 2005 4:50 pm Subject: Firefox Search Plugin for the Autohotkey Community! |
@Chris
I can appreciate your reluctance. I just figured it was worth a shot. At least, if anybody really wants it, they can manually install it.  |
Topic: Firefox Search Plugin for the Autohotkey Community! |
ranomore
Replies: 3
Views: 922
|
Forum: Utilities & Resources Posted: Thu Nov 17, 2005 7:29 pm Subject: Firefox Search Plugin for the Autohotkey Community! |
To install manually:
Download and extract Zip File
Close Firefox
Browse to the plugin folder (unzip location\forum\plugin)
Copy both files to your Firefox SearchPlugins directory (like C:\progra ... |
Topic: Run command (obscure error) |
ranomore
Replies: 3
Views: 787
|
Forum: Bug Reports Posted: Thu Sep 08, 2005 3:28 pm Subject: Run command (obscure error) |
| Windows 95/98/Me: ShellExecute is supported by the Microsoft Layer for Unicode. To use this, you must add certain files to your application, as outlined in Microsoft Layer for Unicode on Windows 95/98 ... |
Topic: start up |
ranomore
Replies: 4
Views: 590
|
Forum: Ask for Help Posted: Sat Sep 03, 2005 6:07 am Subject: start up |
| I've seen this issue too, but not necessarily with AHK. I think it's a discrepancy between the programs that start via registry settings at startup, and the ones that run because they are in the start ... |
Topic: Run command (obscure error) |
ranomore
Replies: 3
Views: 787
|
Forum: Bug Reports Posted: Sat Sep 03, 2005 1:36 am Subject: Run command (obscure error) |
This is really obscure, I promise.
So, the IT department where I work moved to a Distributed File System (DFS). Basically it makes server links dynamic, so a UNC name like \\Company\Folder can be lin ... |
Topic: Stumbling Block - ControlSend |
ranomore
Replies: 10
Views: 741
|
Forum: Ask for Help Posted: Fri Sep 02, 2005 8:15 pm Subject: Stumbling Block - ControlSend |
If someone knows how to avoid the Sleep, I would like to get a pointer.
First, let me say that I've never actually tried this, I've kind of just absorbed it from the forum.
Second, I don't know ... |
Topic: Checking for updates |
ranomore
Replies: 4
Views: 469
|
Forum: Ask for Help Posted: Fri Sep 02, 2005 7:45 pm Subject: Checking for updates |
It seems easier to me to just read line 1 of the file (that way you don't have to deal with any accidental linefeeds):
FileDelete, version.txt
URLDownloadToFile, http://www.aikscroll.reality-sho ... |
Topic: help: I need to join numerous txt files into a single txt bu |
ranomore
Replies: 12
Views: 739
|
Forum: Ask for Help Posted: Fri Sep 02, 2005 7:29 pm Subject: help: I need to join numerous txt files into a single txt bu |
inFileLocation = C:\Temp\*.txt
Loop,%inFileLocation%,0,1
{
FileRead,fileContents,%A_LoopFileFullPath%
if a_index = 1
FileAppend,File %a_index%: %A_LoopFileFullPath%`n`n%fileConte ... |
| |