| Author |
Message |
Forum: Scripts Topic: Keystroke spamming (WoW) |
| Tsurphr |
|
Posted: November 18th, 2008, 5:32 am
|
|
Replies: 6 Views: 3844
|
| Hey all, thought I'd share this little gem of a script. Nothing overtly fancy, just a functional keystring-repeater tool. This can be used to repeat sequences of keystrokes by holding down a single button. Designed as a workaround for the WoW UI preventing you from putting multiple GCD-triggering sp... |
|
 |
Forum: Support Topic: Updating ListView over Network |
| Tsurphr |
|
Posted: July 24th, 2008, 10:59 pm
|
|
Replies: 1 Views: 407
|
| Hey just thought I'd bump the thread a little, I still haven't solved my problem. All I really need is a basic framework for TCP/IP comms using AHK similar to what is used in the chat script I linked. I've been studying the chat script a lot but it is a bit advanced for me. All I really need is a me... |
|
 |
Forum: Support Topic: Updating ListView over Network |
| Tsurphr |
|
Posted: July 19th, 2008, 9:57 pm
|
|
Replies: 1 Views: 407
|
| Hi All, I'm an AHK novice, eviscerating my brain trying to make sense of the code from this script and learn how to implement TCP/IP in my scripts. I'm trying to make a simple client/server application that will allow multiple clients to update a ListView over the LAN. The ListView serves as a call ... |
|
 |
Forum: Support Topic: Telnet without PuTTY |
| Tsurphr |
|
Posted: July 5th, 2008, 6:13 pm
|
|
Replies: 3 Views: 817
|
After looking into things more, I think AutoIT might be a better tool for this, as it has some built in tcp functions. I'd still prefer to use AHK though as I'm more familiar with it, so if anybody has any good suggestions I would be very grateful  |
|
 |
Forum: Support Topic: Telnet without PuTTY |
| Tsurphr |
|
Posted: June 24th, 2008, 3:51 pm
|
|
Replies: 3 Views: 817
|
| Sounds like the plink/cmdret method is what I need, although I'm still a bit newbish and trying to understand how to use cmdret. TN5250 works by drawing screenful of information at a time, clearing the screen in between, as opposed to the normal line-by-line emulation of telnet. If I could load each... |
|
 |
Forum: Support Topic: Telnet without PuTTY |
| Tsurphr |
|
Posted: June 23rd, 2008, 4:10 pm
|
|
Replies: 3 Views: 817
|
| Hi guys, I know this topic has been beaten to death, but despite my forum trolling I have yet to find a solution so I thought I'd post on it. I work for a cable contractor, and we obtain information from the MSO's AS/400 system on a daily basis, which is accessed through Telnet using the TN5250 prot... |
|
 |
Forum: Support Topic: Syncing CSV files over FTP |
| Tsurphr |
|
Posted: June 3rd, 2008, 1:19 pm
|
|
Replies: 2 Views: 393
|
| Aye, that is my current method, just looking for a more efficient one but I guess it will have to do until I get it working with MySQL. Thanks for the help. |
|
 |
Forum: Support Topic: Syncing CSV files over FTP |
| Tsurphr |
|
Posted: May 31st, 2008, 8:17 pm
|
|
Replies: 2 Views: 393
|
| Hello all, I have a very simple script I made for use at work which is basically just a data entry form that collects data into a CSV file which later gets uploaded daily to the company FTP site with a datestamped name. So I wind up with a collection of CSV files from various users. I am looking for... |
|
 |
Forum: Scripts Topic: Install AHK syntax highlighting and clips for PSPad v2 |
| Tsurphr |
|
Posted: January 24th, 2008, 9:41 pm
|
|
Replies: 81 Views: 33451
|
This may be a little late coming, but those of you still afflicted by the PSpad keybindings oddity who couldn't fix it with keymap.ini, here's what worked for me:
Settings => Program Settings => Keymap
Just click "Default" button to reset keys |
|
 |
Forum: Support Topic: help with variable checking |
| Tsurphr |
|
Posted: December 1st, 2007, 10:28 pm
|
|
Replies: 6 Views: 537
|
Aye, thanks for that lexikos. I already solved this one though, my working statement looks like this:
Code: IF (check1a > 0 AND check1b = "510" or check1b = "520" or check1b = "480") |
|
 |
Forum: Support Topic: IF AND OR problem |
| Tsurphr |
|
Posted: December 1st, 2007, 8:29 pm
|
|
Replies: 2 Views: 406
|
Much obliged sir always something simple |
|
 |
Forum: Support Topic: IF AND OR problem |
| Tsurphr |
|
Posted: December 1st, 2007, 7:12 pm
|
|
Replies: 2 Views: 406
|
| While struggling with my syntax in another script, I made this test script to make sure I had it right (my apologies if this is construed as a double post): ^K:: test1value = 0000100003 test2value = hsd if (test1value > 0 AND test2value = hsd) { test3value = Yes } else test3value =... |
|
 |
Forum: Support Topic: help with variable checking |
| Tsurphr |
|
Posted: December 1st, 2007, 2:57 pm
|
|
Replies: 6 Views: 537
|
| Ah, thanks for clearing that one up. I wasn't sure how to handle the array in a loop. Note that due to the overhead of function calls, it would be more efficient to pass svcsX to CheckSVCS() and have it parse the string. You mean rather than split the clipboard contents into an array just parse it a... |
|
 |
Forum: Support Topic: help with variable checking |
| Tsurphr |
|
Posted: December 1st, 2007, 2:42 pm
|
|
Replies: 6 Views: 537
|
Quote: The "checkhsd" should be declared Global inside the function.
Aye, I had previously tried using global, but since my first post I learned I had it declared in the wrong spot. So I just stuck global checkhsd at the top of my function and it is now readable outside of it. |
|
 |
Forum: Support Topic: help with variable checking |
| Tsurphr |
|
Posted: November 30th, 2007, 8:17 pm
|
|
Replies: 6 Views: 537
|
| I'm having a problem with this script: CheckSVCS(check1) { StringGetPos, check1pos2, check1, `: StringGetPos, check1pos3, check1, `) check1pos2a := check1pos2+2 check1pos3a := check1pos3-1 check1posX := check1pos3a-check1pos2 StringMid, check1a, check1, check1pos2a, check1posX Strin... |
|
 |
| Sort by: |