| Author |
Message |
Topic: online ahk chat room ftp and local |
Mucka Knows
Replies: 18
Views: 2407
|
Forum: Scripts & Functions Posted: Sun Jan 06, 2008 3:40 am Subject: online ahk chat room ftp and local |
for me, users.ini looks like this:
; The following example demonstrates how to automate FTP uploading using the operating
; system's built-in FTP command. This script has been tested on Windows ... |
Topic: online ahk chat room ftp and local |
Mucka Knows
Replies: 18
Views: 2407
|
Forum: Scripts & Functions Posted: Sun Jan 06, 2008 2:45 am Subject: online ahk chat room ftp and local |
| from what I can see, looks nice. good idea, but ive nvr used a lan and have only basic knowledge of how it works. If you could get ahk's ftp function to work, you could ideally just edit a few filenam ... |
Topic: Runescape Assistant |
Mucka Knows
Replies: 1
Views: 657
|
Forum: Scripts & Functions Posted: Sun Jan 06, 2008 1:56 am Subject: Runescape Assistant |
I made this script during the summer and updated it accordingly as things changed.
This program is designed for use with Runescape, www.runescape.com
It does not break any of the jagex rules. I had ... |
Topic: help with an auto repeat script |
Mucka Knows
Replies: 1
Views: 239
|
Forum: Ask for Help Posted: Mon Oct 29, 2007 1:18 pm Subject: help with an auto repeat script |
insted of just
pause
use:
pause, toggle
saying just pause makes the script pause while still accepting hotkeys. when you press f3 again the script will pause. which means it will not unp ... |
Topic: listvars stops after 65536 chars |
Mucka Knows
Replies: 5
Views: 248
|
Forum: Ask for Help Posted: Mon Oct 29, 2007 1:06 pm Subject: listvars stops after 65536 chars |
according to the help file, listvars stops after 10k vars
maybe you could split the script into several shorter ones and retrieve the vars that way. |
Topic: any way to extract a script currently in memory |
Mucka Knows
Replies: 5
Views: 347
|
Forum: Ask for Help Posted: Mon Oct 29, 2007 12:56 pm Subject: any way to extract a script currently in memory |
soz for the spam. 4got to log in so i can edit
if the script is running and you have deleted the exe, there is no way i know of to retrieve it.
but if its running in .ahk form, right click the ... |
Topic: Basic Script building question- more or less |
Mucka Knows
Replies: 6
Views: 298
|
Forum: Ask for Help Posted: Mon Oct 29, 2007 12:31 am Subject: Basic Script building question- more or less |
nothing  |
Topic: C# versus AHK - opinions? |
Mucka Knows
Replies: 4
Views: 442
|
Forum: Ask for Help Posted: Mon Oct 29, 2007 12:24 am Subject: C# versus AHK - opinions? |
i really don't like c#
too many rules to follow such as case sensitive, declaring all variables at the start... ending each line with;... etc
far too many rules, it gets annoying.
I like AHK beca ... |
Topic: Gui, add, text, 50% variable is missing its end |
Mucka Knows
Replies: 3
Views: 180
|
Forum: Ask for Help Posted: Mon Oct 29, 2007 12:17 am Subject: Gui, add, text, 50% variable is missing its end |
thnx alot  |
Topic: Basic Script building question- more or less |
Mucka Knows
Replies: 6
Views: 298
|
Forum: Ask for Help Posted: Sun Oct 28, 2007 8:11 pm Subject: Basic Script building question- more or less |
| one long script seperated into hotkeys/strings is best. as loading a new script each time will use resources. When the script first runs, it will read from top to bottom, on my 10k line script this on ... |
Topic: How Do I Change a String Variable's Contents? |
Mucka Knows
Replies: 3
Views: 170
|
Forum: Ask for Help Posted: Sun Oct 28, 2007 8:07 pm Subject: How Do I Change a String Variable's Contents? |
stringtrimright, windownamevar, windownamevar, 4
eg:
windownamevar = mozilla firefox.exe
stringtrimright, windownamevar, windownamevar, 4
;takes four letters off the string from the right
;wi ... |
Topic: Gui, add, text, 50% variable is missing its end |
Mucka Knows
Replies: 3
Views: 180
|
Forum: Ask for Help Posted: Sun Oct 28, 2007 8:04 pm Subject: Gui, add, text, 50% variable is missing its end |
i want the text "50%" to be added to a gui. I don't know how to without triggering the following error msg:
Error: This parameter contains a variable name missing its ending percent sign. ... |
Topic: Automation in Core DRAW 11 Take 2 |
Mucka Knows
Replies: 2
Views: 178
|
Forum: Ask for Help Posted: Sun Jun 24, 2007 1:03 pm Subject: Automation in Core DRAW 11 Take 2 |
try this:
#R::
Input, number, I, {enter},
loop %number%
{
Send, {CTRLDOWN}d{CTRLUP}
}
when you press windows+R, it waits for you to press ... |
Topic: Flag that count how many time the script passed by + goto. |
Mucka Knows
Replies: 10
Views: 219
|
Forum: Ask for Help Posted: Sun Jun 24, 2007 12:57 pm Subject: Flag that count how many time the script passed by + goto. |
try creating variable time:= 0 at start of script
at start of sub do time: = time + 1
that should count how many times it was launched.
if time = 5 will do something when it was launched 5 times. ... |
Topic: Capturing typed text and using as variable, any ideas? |
Mucka Knows
Replies: 2
Views: 192
|
Forum: Ask for Help Posted: Fri Jun 22, 2007 11:28 pm Subject: Capturing typed text and using as variable, any ideas? |
| Thnx alot, works a charm |
| |