Jump to content

Right click on top


Recommended Posts

right click on a windows in addition to the usual things like "Restore, Move, Size, Minimize, Maximize & Close", I would like to have "Always on Top".

A few applications already have this feature available, but not all.

Any possibility of doing this with autoit ?

Link to comment
Share on other sites

I am not quite sure I am understanding what you are asking...

If you are asking if AutoIt can send right mouse clicks then that is a yes. If you are asking if AutoIt can manipulate a window via maximize, minimize, and so on the answer is yes. If you are asking if AutoIt can make a certain window be "Always On Top" I would assume the answer is yes, but for a lack of knowledge of the language yet I cannot fully answer that question if indeed that is what you are asking.

JS

AutoIt Links

File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out.

ComputerGetInfo UDF's Updated! 11-23-2006

External Links

Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more)

Link to comment
Share on other sites

I use the program PowerMenu to add "Always On Top" and "Minimize to Tray"

For a scripted solution, you could use hotkeys to make the active window on top:

HotKeySet("^!q", "Terminate")
Func Terminate()
   Exit
EndFunc

HotKeySet("^!t", "TopMost")
Func Topmost()
   WinSetOnTop("","",1)
EndFunc

HotKeySet("^!n", "Normal")
Func Topmost()
   WinSetOnTop("","",0)
EndFunc


While 1
   sleep(100)
Wend
Exit
Use Mozilla | Take a look at My Disorganized AutoIt stuff | Very very old: AutoBuilder 11 Jan 2005 prototype I need to update my sig!
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...