| Author |
Message |
Forum: Support Topic: Need help in sending a key to a text field in a specific win |
| sri |
|
Posted: April 15th, 2009, 6:46 am
|
|
Replies: 2 Views: 332
|
Thanks Vifon.
I just had to increase the milliseconds value and it works fine now. |
|
 |
Forum: Support Topic: Need help in sending a key to a text field in a specific win |
| sri |
|
Posted: April 14th, 2009, 11:22 am
|
|
Replies: 2 Views: 332
|
| I have tried writing a simple script that will press Tab whenever the cursor is having IBeam shape inside one specific window. Below is my attempt: #Persistent SetTitleMatchMode, 2 #IfWinActive, Executive Demo Player, SetTimer, timer_MonitorCursor, 30 return timer_MonitorCursor: If A_Cursor = IBeam ... |
|
 |
Forum: Scripts Topic: [How To] Accelerate bookmarking to delicious from Chrome |
| sri |
|
Posted: September 8th, 2008, 8:27 pm
|
|
Replies: 2 Views: 3324
|
| I am pretty new to AutoHotKey. So please spare me if this script is trivial. The delicious add-on for Firefox lets us select some text on a web page and click on a button to add the page to your online bookmarks at delicious.com. The selected text will then be auto populated in the NOTES field of th... |
|
 |
Forum: Support Topic: How is hash (#) key represented in AutoHotKey? |
| sri |
|
Posted: September 8th, 2008, 6:01 pm
|
|
Replies: 8 Views: 1772
|
| trenton: I have already looked for it in the "List of Keys, Mouse Buttons, and Joystick Controls" section of the help file and couldn't locate it. And doesn't # stand for windows key? I am asking about the AutoHotKey symbol for the actual pound key on the keyboard. Edit : Got confused, wha... |
|
 |
Forum: Support Topic: How is hash (#) key represented in AutoHotKey? |
| sri |
|
Posted: September 8th, 2008, 5:09 pm
|
|
Replies: 8 Views: 1772
|
| like ^ stands for control, what is it for hash/pound key? |
|
 |
Forum: Support Topic: Restricting code to act only a rectangular area on screen |
| sri |
|
Posted: September 7th, 2008, 4:58 pm
|
|
Replies: 7 Views: 1113
|
Thanks Suresh. It works. I just pasted your code as is into a new .ahk file and it worked. I made a blog post about this.  |
|
 |
Forum: Support Topic: Restricting code to act only a rectangular area on screen |
| sri |
|
Posted: September 7th, 2008, 10:16 am
|
|
Replies: 7 Views: 1113
|
When I load the script you provided, I get the following Suresh:
 |
|
 |
Forum: Support Topic: Restricting code to act only a rectangular area on screen |
| sri |
|
Posted: September 7th, 2008, 8:54 am
|
|
Replies: 7 Views: 1113
|
| Thanks. I have tried the following unsuccessfully: #SingleInstance, force #Persistent CoordMode, Mouse, Relative settimer, checkmouse, 250 return checkmouse: IfWinActive ("ahk_class Chrome_XPFrame") { MouseGetPos, x,y if (%y% < 23) { ~WheelDown::Send ^{PgDn... |
|
 |
Forum: Support Topic: Restricting code to act only a rectangular area on screen |
| sri |
|
Posted: September 7th, 2008, 6:47 am
|
|
Replies: 7 Views: 1113
|
I want to restrict couple of lines of code to only a rectangular region on the screen
i.e., if mouse is between (x1,y1) and (x2,y2) {;do something}
Help please. |
|
 |
Forum: Support Topic: Controlling Google Chrome browser via keyboard |
| sri |
|
Posted: September 5th, 2008, 8:04 pm
|
|
Replies: 10 Views: 3501
|
I made a blog post about the progress so far here.
It would be great if it can be improved by using Sean's suggestion. |
|
 |
Forum: Support Topic: Controlling Google Chrome browser via keyboard |
| sri |
|
Posted: September 5th, 2008, 9:52 am
|
|
Replies: 10 Views: 3501
|
| Suresh: It's definitely a improvement. I can type 'z' in this box without going back. But this only works as long as the cursor is inside the text box (i.e., with the pointer having IBeam shape). If I move the mouse outside typable area (i.e., regular pointer shape), but with blinking cursor still i... |
|
 |
Forum: Support Topic: Controlling Google Chrome browser via keyboard |
| sri |
|
Posted: September 5th, 2008, 7:20 am
|
|
Replies: 10 Views: 3501
|
I tried:
Code: #IfWinActive ahk_class Chrome_XPFrame
if !(A_Cursor = "IBeam") z::Send !{Left} #IfWinActive
but the if condition is not working  |
|
 |
Forum: Support Topic: Controlling Google Chrome browser via keyboard |
| sri |
|
Posted: September 5th, 2008, 6:27 am
|
|
Replies: 10 Views: 3501
|
| Hi guys, I want to set 'z' key to take me back in Chrome. i.e., something like z::Send !{Left} But the problem with the above is that 'z' key works everywhere in Chrome, even inside text input fields/areas. Is there a way to check for placement of cursor inside text input fields and modify... |
|
 |
Forum: Support Topic: Move mouse to a tray icon? |
| sri |
|
Posted: October 24th, 2007, 9:14 am
|
|
Replies: 1 Views: 477
|
| Is there a command to move the mouse to a tray icon based on its title (the mouse over text)? Upon pressing win+w, I would like to bring forth windows messenger. Currently I achieve this using a macro program like so: http://aycu15.webshots.com/image/31534/2004704353117181628_rs.jpg |
|
 |
Forum: Support Topic: How to do simple Winamp controls while winamp is minimized? |
| sri |
|
Posted: October 24th, 2007, 8:09 am
|
|
Replies: 9 Views: 4814
|
| I found the code to control winamp when it's minimized to the tray right in AHK help file, titled 'Automating Winamp'. #z:: ; Previous song IfWinNotExist ahk_class Winamp v1.x return ; Otherwise, the above has set the "last found" window for use below. ControlSend, ahk_parent, z ; Previous... |
|
 |
| Sort by: |