AutoHotkey Community

It is currently May 22nd, 2012, 1:46 pm

All times are UTC [ DST ]


Search found 14 matches
Search these results:

Author Message

 Forum: Support   Topic: distinguish different Applikation Specifig Mouse Cursors?

Posted: February 21st, 2011, 9:58 pm 

Replies: 0
Views: 170


Hi, I have written an script that does extract the text under the mouse cursor in Adobe Reader using a brute force method: It simulates the keystrokes to select the text, and copies it in the clipboard. This works good enough to be usable. But if the Text Cursor can not be selected Adobe Reader jump...

 Forum: Scripts   Topic: Improved Show Desktop (WIN+D / WIN+M) with Z-Order

Posted: February 9th, 2011, 11:41 pm 

Replies: 2
Views: 1304


I set up my show/hide desktop script to only minimize windows that are on the taskbar. Interesting idea. What are the benefits compared to the WinMinimizeAll approach? Are there applications that do have a Minimize Button, but are not on the Taskbar and should not be minimized? I can't think of win...

 Forum: Scripts   Topic: Improved Show Desktop (WIN+D / WIN+M) with Z-Order

Posted: February 5th, 2011, 6:52 pm 

Replies: 2
Views: 1304


Improved Show Desktop Features: + Z-Order of windows is retained after restore + Lets you restore the minimized windows even after opening new ones Draw Backs: - The script does not minimize windows that are lacking the minimize button (The original WIN+M shortcut from Windows XP is also lacking th...

 Forum: Scripts   Topic: Send mouse scrolls to window under mouse

Posted: February 2nd, 2011, 7:14 pm 

Replies: 119
Views: 35879


Great Update Scoox. It works now perfectly well on everything I tried so far. Focusless Scroll & Zoom is such a great addition to the overall Windows user experience that I wouldn't want to miss it. Thanks for the explanation of the momentum scroll issue. It now makes sense, why only the AHK Hel...

 Forum: Scripts   Topic: Send mouse scrolls to window under mouse

Posted: February 1st, 2011, 9:29 pm 

Replies: 119
Views: 35879


Wow. Very impressive Update. And it Works great. OpenOffice, AHK Help and Opera work and also focusless Zoom is working. But you need to make a small change in the code to get the negative coordinates working. Since you are now using m_x for the DLL call as well as for the lParam the masking must ha...

 Forum: Scripts   Topic: Send mouse scrolls to window under mouse

Posted: January 30th, 2011, 11:19 pm 

Replies: 119
Views: 35879


Anonymous wrote:
1 & 1 = 0
A & 1 = A


1 ^ 1 = 0 (exclusive OR)
but
1 & 1 = 1 (AND)

So A (1010) & 1 (0001) results in 0

-John

 Forum: Scripts   Topic: Send mouse scrolls to window under mouse

Posted: January 30th, 2011, 11:08 pm 

Replies: 119
Views: 35879


This fix will always work. To get the lParam, you are or-ing two 16bit integers in one 32bit integer. lParam := (m_y << 16) | m_x ;Compute this just once But if m_x is negative, all upper bits are 1. So you are losing the m_y information completely. Therefore you have to use m_x:=m_x & 0...

 Forum: Scripts   Topic: Send mouse scrolls to window under mouse

Posted: January 30th, 2011, 9:30 pm 

Replies: 119
Views: 35879


Hi Scoox, you have to add the following line after the MouseGetPos to get the negative coordinates working: m_x:=m_x & 0xFFFF With that change and the update from Fri Jan 28, 2011 8:05 am, everything works. Even OpenOffice, if it does not have the focus an is on the 2nd Monitor. :D -John

 Forum: Scripts   Topic: Send mouse scrolls to window under mouse

Posted: January 30th, 2011, 9:07 pm 

Replies: 119
Views: 35879


Hi Scoox. Thanks for all your hard work on the Script. I have just discovered a strange effect. If the Main Pane of the AHK File works depends if the Window is on my primary or secondary Monitor. Since I usually open the help File on the 2nd one, I have not noticed this earlier. So I mad some more t...

 Forum: Scripts   Topic: Send mouse scrolls to window under mouse

Posted: January 29th, 2011, 12:43 pm 

Replies: 119
Views: 35879


Hi Scoox, thanks for the code. The script works great on most of the Windows I have tested. Unfortunately it does not work at all on the "Internet Explorer_Server1" Class that is used in the AutoHotkey_L Help. It does scroll the Index List, but not the Main Text Window of the AutoHotkey_L ...

 Forum: Scripts   Topic: Image conversions and capturing with GDI+

Posted: March 3rd, 2007, 11:28 pm 

Replies: 107
Views: 33880


Sean wrote:
OK, I converted the script to AHK. It'll work only with JPEG files.

Thanks a lot!
But how do I enable the JPEG Quality settings? If I activate the part that is commented out in your script, the rotation is no longer working.
What I'm doing wrong?

-John

 Forum: Support   Topic: How to Rotate or flip an Image?

Posted: March 1st, 2007, 11:52 pm 

Replies: 5
Views: 648


Thanks for the tip, but I would like to do this without going to the "save picture -> rotate picture -> load picture" chain if possible.

-John

 Forum: Scripts   Topic: Image conversions and capturing with GDI+

Posted: March 1st, 2007, 11:48 pm 

Replies: 107
Views: 33880


Thanks for your really great work. I'm using it to capture parts of a window and save it as picture. However, I would like to rotate and/or flipp the Image. I found something promissing in your warper script that might do the job: ; For a JPEG image, specifies lossless 90-degree clockwise rotation. ...

 Forum: Support   Topic: How to Rotate or flip an Image?

Posted: March 1st, 2007, 8:38 pm 

Replies: 5
Views: 648


Hello I'm trying to write a script that captures a part of the screen and shows it in a GUI much like the "ScreenMagnifier" or the "LiveWindows" scripts. The only difference is that I need to rotate (90° steps) and/or flip the Image that is displayed. Does anyone know how I could...
Sort by:  
Page 1 of 1 [ Search found 14 matches ]


All times are UTC [ DST ]


Powered by phpBB® Forum Software © phpBB Group