| Author |
Message |
Forum: Support Topic: network file grab |
| Bobmonkey07 |
|
Posted: January 13th, 2012, 5:19 pm
|
|
Replies: 3 Views: 134
|
@guest
that's an iteration i've been through, but it doesn't seem to help...
@codekiller
that might be better, but is still coming up blank. :/ |
|
 |
Forum: Support Topic: network file grab |
| Bobmonkey07 |
|
Posted: January 12th, 2012, 7:09 pm
|
|
Replies: 3 Views: 134
|
| i'm trying to make a script that runs on an admin computer, and will look to see if the public computers have a file in a specific place. the public computers are named sequentially, so i tried a wild card type thing, but ahk doesn't seem to look over to the other machines at all. here's the little ... |
|
 |
Forum: Support Topic: text format? |
| Bobmonkey07 |
|
Posted: May 3rd, 2010, 7:34 pm
|
|
Replies: 12 Views: 755
|
| upon further research, WMIC outputs only unicode. however, there is an easy way to go from unicode to ansi without DLL's refer to line #6 #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. SendMode Input ; Recommended for new scripts due to its superior speed and... |
|
 |
Forum: Support Topic: How to capture windows that are off screen? |
| Bobmonkey07 |
|
Posted: April 30th, 2010, 6:33 pm
|
|
Replies: 8 Views: 807
|
| try it, see if it works, then put it into your script with a "send" command? |
|
 |
Forum: Support Topic: Cut & Paste / filemove |
| Bobmonkey07 |
|
Posted: April 30th, 2010, 6:31 pm
|
|
Replies: 2 Views: 239
|
Code: FileMove, C:\Documents and Settings\Randy\My Documents\netKar PRO\cfg\nkservercfg.ini, C:\nkpro11\cfg\nkservercfg.ini
i think you still need to name the file the second time. |
|
 |
Forum: Support Topic: text format? |
| Bobmonkey07 |
|
Posted: April 28th, 2010, 5:26 pm
|
|
Replies: 12 Views: 755
|
this now returns "S"
also, if it were the default, how is one ANSI and the other unicode... |
|
 |
Forum: Support Topic: text format? |
| Bobmonkey07 |
|
Posted: April 28th, 2010, 4:44 pm
|
|
Replies: 12 Views: 755
|
| Well Billy Bob the 'ÿþS' looks remarkbly like unicode, so that might be the problem? Do you use AHK_L or the regular AHK. Regular AHK might have a problem with reading a unicode file unless you transform it first. If the tmpFile.txt contains the info you need and you can see it notepad that might b... |
|
 |
Forum: Support Topic: text format? |
| Bobmonkey07 |
|
Posted: April 27th, 2010, 4:37 pm
|
|
Replies: 12 Views: 755
|
| RunWait, %comspec% /c wmic BIOS get SerialNumber > tmpFile.txt,,Hide FileReadline, L1, tmpFile.txt, 1 FileReadLine, L2, tmpFile.txt, 2 FileAppend, %L1%`n, service FileAppend, %L2%`n, service this code gives me this in service: ÿþS and tmpfile.txt has: SerialNumber XXXXXXX when i make it service.txt... |
|
 |
Forum: Support Topic: text format? |
| Bobmonkey07 |
|
Posted: April 27th, 2010, 4:25 pm
|
|
Replies: 12 Views: 755
|
| RunWait, %comspec% /c systeminfo > tmpFile,,Hide FileReadLine, L2, tmpFile, 2 FileReadLine, L3, tmpFile, 3 FileReadLine, L4, tmpFile, 4 FileReadLine, L13, tmpFile, 13 FileReadLine, L14, tmpFile, 14 FileReadLine, L18, tmpFile, 18 FileDelete, tmpFile FileAppend, %L2%`n, ^PATH^\%A_ComputerName%.txt Fi... |
|
 |
Forum: Support Topic: text format? |
| Bobmonkey07 |
|
Posted: April 27th, 2010, 3:32 pm
|
|
Replies: 12 Views: 755
|
| here's the code i'm working with. it's going through each line for debugging purposes. RunWait, %comspec% /c wmic BIOS get SerialNumber > tmpFile,,Hide FileReadLine, tmpFile1, tmpFile, 1 FileReadLine, tmpFile2, tmpFile.txt, 2 FileAppend, %tmpFile1%`n, service.txt FileAppend, %tmpFile2%`n, service.tx... |
|
 |
Forum: Support Topic: Can autohotkey scripts do this? |
| Bobmonkey07 |
|
Posted: April 27th, 2010, 2:50 pm
|
|
Replies: 5 Views: 354
|
| would it work better for you to find the input from the IR receiver, and set that to run your script, and then at the end of your script, put in something to run MCE? |
|
 |
Forum: Support Topic: How software made with AHK store datas |
| Bobmonkey07 |
|
Posted: April 26th, 2010, 9:29 pm
|
|
Replies: 18 Views: 1222
|
| The exe is NOT the compiled version of the script, it is actually a copy of autohotkey.exe renamed to catena.exe Why? Because a compiled script can NOT include a dynamic file such as catena.txt because it changes all the time (each time you edit it). So catena.exe starts autohotkey.ini (which is ac... |
|
 |
Forum: Support Topic: read appEvent.evt |
| Bobmonkey07 |
|
Posted: April 26th, 2010, 5:13 pm
|
|
Replies: 1 Views: 601
|
| is AHK able to read appEvent.evt (Windows application log) to get time stamped information? from checking the documentation, it looks like AHK will handle txt and html, but i didn't see other file types. it seems reasonable that it can, however, when i double click that file, windows doesn't handle ... |
|
 |
Forum: Support Topic: Press F1 to make F2 go and F3 rapidly after |
| Bobmonkey07 |
|
Posted: April 23rd, 2010, 5:19 pm
|
|
Replies: 16 Views: 2263
|
| that's doable, but how about something you use F1 to toggle the whole thing on/off and does approximately this: Begin pseudo-code on click, get mouse position, save to x send F2 send mouse click position x send F3 this strikes me as simpler for you to use, but i haven't yet delved into mouse positio... |
|
 |
Forum: Support Topic: detect device/disable network |
| Bobmonkey07 |
|
Posted: April 23rd, 2010, 5:09 pm
|
|
Replies: 9 Views: 1827
|
| Here's what i've got. i feel like there should be a way to seriously cut this down, but i'm not sure how to implement it...:? (probably something with DriveGet, List should do, but i don't know how to bend that to suit my purpose... YET!!) #NoTrayIcon ;Disables Tray Icon #NoEnv ; Recommended for per... |
|
 |
| Sort by: |