| Author |
Message |
Forum: Scripts Topic: Control Winamp via systray icons |
| Pallie |
|
Posted: February 24th, 2005, 12:21 am
|
|
Replies: 9 Views: 18732
|
Serenity
I love it. There is no substitute for having you own version of existing programs so that you can build in your own functions. I plan to use this as a basis for controlling WINAMP remotely over the LAN.
Mike |
|
 |
Forum: Suggestions Topic: echo |
| Pallie |
|
Posted: February 23rd, 2005, 11:52 pm
|
|
Replies: 1 Views: 907
|
| Hi Would it be easy/possible to add a feature so that a script could be called from the command prompt and issue output to the command prompt? For example: c:\> sayhello.exe Hello from autohotkey script c:\> I guess something like echo, hello from autohotkey script So that autohotkey scripts could b... |
|
 |
Forum: Support Topic: passing all events from one window to other one (crosshair) |
| Pallie |
|
Posted: February 21st, 2005, 9:51 pm
|
|
Replies: 5 Views: 1161
|
| I tried adding the following to the end of the script. $LButton:: WinSet,TransColor, cc9900,ScreenRulerY WinSet,TransColor, cc9900,ScreenRulerX mouseclick, left WinSet,TransColor, off, ScreenRulerY WinSet,TransColor, off, ScreenRulerX Return The idea is that when you click, it makes the lines transp... |
|
 |
Forum: Scripts Topic: Run a script on a remote computer |
| Pallie |
|
Posted: February 21st, 2005, 5:07 pm
|
|
Replies: 18 Views: 45084
|
| Thanks BoBo I think that would work. I downloaded it and tried psexec \\192.168.0.3 c:\mute from the command prompt and it muted the sound. An advantage of doing it this way is that it would be easy to pass parameters over so you could say whether to toggle, mute on, mute off (which you could do wit... |
|
 |
Forum: Scripts Topic: Run a script on a remote computer |
| Pallie |
|
Posted: February 21st, 2005, 2:54 pm
|
|
Replies: 18 Views: 45084
|
| I wanted to be able to run a script on a remote computer over the local network. This example is so that I can mute the sound on the PC on the computer upstairs from the laptop downstairs. Until now I used VNC to do it. Thought I'd share it in case anyone wanted to do anything similar. I managed to ... |
|
 |
Forum: Support Topic: Echo |
| Pallie |
|
Posted: February 21st, 2005, 10:56 am
|
|
Replies: 6 Views: 1002
|
BoBo
Thanks for the reply, but it is not quite what I need
Instead of Code: c:\> sayhello.exe
Hello from autohotkey script c:\> I getCode: c:\> sayhello.exe
c:\> Hello from autohotkey script
Mike |
|
 |
Forum: Support Topic: Echo |
| Pallie |
|
Posted: February 21st, 2005, 8:59 am
|
|
Replies: 6 Views: 1002
|
Thanks, but it being in a new window doesn't do the job for me.
For the time being I have a workaround - write the output to a temp file then output the file using the dos "type" command.
Mike |
|
 |
Forum: Support Topic: Echo |
| Pallie |
|
Posted: February 20th, 2005, 9:32 pm
|
|
Replies: 6 Views: 1002
|
Hi
I want to run a script from the command line and have it "echo" some data, like this
Code: c:\> sayhello.exe
Hello from autohotkey script c:\>
I tried
Code: RunWait, %comspec% /C echo Hello from autohotkey script
But to no avail. Any ideas welcome
Mike |
|
 |
Forum: Scripts Topic: IntelliSense III |
| Pallie |
|
Posted: February 17th, 2005, 6:20 pm
|
|
Replies: 76 Views: 74030
|
| Instead of building the array of commands using Cmd%a_index% = %CurrCmd% which gives an array like this Cmd106[5 of 63]: Sleep Cmd107[9 of 63]: RegDelete Cmd108[7 of 63]: RegRead Cmd109[8 of 63]: RegWrite Cmd11[11 of 63]: FileRecycle Cmd110[8 of 63]: SoundGet you could do it the other way round to b... |
|
 |
Forum: Scripts Topic: Display media in a web gallery one at a time |
| Pallie |
|
Posted: January 15th, 2005, 3:46 pm
|
|
Replies: 1 Views: 3342
|
| This script determines if there are any jpeg or mpeg links on a web page,and then displays them one at a time. So if you find a gallery such as this http://www.xmission.com/~waynew/gallery1.htm and you want to look at each image one at a time without having to go back to the gallery page, you press ... |
|
 |
Forum: Support Topic: mode based hotkeys |
| Pallie |
|
Posted: October 16th, 2004, 9:57 am
|
|
Replies: 4 Views: 836
|
| Hi guest Nice idea I guess you just need to keep track of what mode you are in and send the appropriate commands accordingly. !e:: mode = e !w:: mode = w !x:: mode = $f:: if mode = e msgbox, f pressed in email mode if mode = w msgbox, f pressed in windows mode if mode = send, f Return $b:: if mode =... |
|
 |
Forum: Support Topic: Map "Ctrl Ctrl" to "ScrollLock ScrollLock UpA |
| Pallie |
|
Posted: September 30th, 2004, 10:46 pm
|
|
Replies: 3 Views: 2180
|
| I'd be interested to hear if it works. I have a KVmswitch too where you have to use PrtSc to swap. The trouble is that it keeps capturing the screen to the clipbaord so something like dbl cntrl would be better. I would have thought that the KVM switch would capture the screenpress, not the PC so unl... |
|
 |
Forum: Support Topic: Parsing html files...an easier way? |
| Pallie |
|
Posted: September 29th, 2004, 10:43 am
|
|
Replies: 5 Views: 1432
|
| Depending on what it is you want to do, you may want to take a look at this post. http://www.autohotkey.com/forum/viewtopic.php?t=923 or this one http://www.autohotkey.com/forum/viewtopic.php?t=911 . I have had some success entering JavaScript in the address bar to get information about the page's H... |
|
 |
Forum: Support Topic: Binary data on the clipboard |
| Pallie |
|
Posted: September 28th, 2004, 1:55 pm
|
|
Replies: 17 Views: 2551
|
| Thanks Rajat, it beats the program I was using by far. |
|
 |
Forum: Support Topic: Close script if program closes! |
| Pallie |
|
Posted: September 28th, 2004, 1:54 pm
|
|
Replies: 2 Views: 719
|
| Hi This works for me SetTimer, close, 1000 #t:: msgbox, win + t pressed Return Close: IfWinNotExist, Untitled - Notepad exitapp Return This keeps running as long as there is an untitled notepad window open but closes when there is no such window. You need to put the set time bit at the top of your s... |
|
 |
| Sort by: |