AutoHotkey Community

It is currently May 27th, 2012, 12:56 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 4 posts ] 
Author Message
 Post subject:
PostPosted: January 28th, 2006, 11:49 am 
Hold LButton and press wheelup.
This is a built-in menu for my radialm project, but I think that can be useful for many people.

Edit: This code work. The one before(also mine) had some errors :oops:.

Code:
;author: Salvatore Agostino Romeo
selTask:
WinActivate, %A_ThisMenuItem%
return

;make it your favourite hotkey
~LButton & WheelUp::
Menu,kiu,add
Menu,kiu,deleteall
;get windows list
Winget, ids, list, , , Program Manager
Loop, %ids%
{
 id:=ids%A_Index%
 Wingettitle, title, ahk_id %id%
 ;exclude docks window and not needed ones
 If title not contains dock
 if(title!="")
 Menu,kiu,add, %title%,selTask
}
Menu,kiu,show
return


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: January 29th, 2006, 3:12 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
Thanks for sharing it.
Quote:
I don't know how to delete the [old version]
You have to be logged in to edit or delete your own posts.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 5th, 2009, 12:46 pm 
Offline

Joined: June 11th, 2005, 9:34 am
Posts: 264
Location: England ish
Thank you, this'll come in handy.

_________________
::
I Have Spoken
::


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 6th, 2009, 12:22 am 
A simple popup menu as an Alt-Tab replacement.. Awesome idea! I changed the hotkey to Tab & RButton.


Report this post
Top
  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: Bing [Bot], Bon, bowen666, Google [Bot], sks and 23 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group