AutoHotkey Community

It is currently May 27th, 2012, 5:04 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 36 posts ]  Go to page 1, 2, 3  Next
Author Message
PostPosted: October 6th, 2005, 1:07 pm 
Offline

Joined: September 23rd, 2005, 8:18 pm
Posts: 55
It would be very good to add a autohotkey gui as a toolbar in the taskbar is this possible or could it be made possible? :)


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 7th, 2005, 1:54 pm 
Offline

Joined: March 2nd, 2004, 3:36 pm
Posts: 10720
You could have an always-on-top window that sits on top of the taskbar. You could even make such a window an on-screen display (transparent background) as demonstrated in one of the examples at the bottom of the Gui page.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 8th, 2005, 6:17 am 
Offline

Joined: October 3rd, 2005, 2:42 am
Posts: 186
Or you could use the duct-tape solution: create a folder; put that folder on the taskbar (rightclick taskbar, click "toolbars"->"add toolbar"); in that folder, put a bunch of shortcuts to your .ahk scripts with commandline parameters set to tell the cript what they are meantto do, and icons set to show the user.

This will look like your quicklaunch toolbar.

You can dynamically create more scripts or links in there, or change the icons of shortcuts, and the taskbar menu will update (after a brief pause). Rightclick the toolbar to change properties: You can have it show or hide filenames, use large/small icons, and show or hide the foldername as a title for the toolbar. The filename, or shortcut comment if any, will appear as a tooltip when mouseovered. You can tie hotkeys to activate the script either using ahk or the shortcut properties: the latter seems more sensible.

Ordering is last-in, last-listed.

So, if you wanted a collection of desktops, then creating a bunch of .ico file miniaturised screengrabs in dir 1, and a bunch of script shortcuts in dir2, would let you show all your virtual desktops as icins, regularly updates to show the screen layout.

Advantage: nothing needs to be running when you're not switching between desktops.

Disadvantage: really crap way of doing it.

_________________
Yet another hotkeyer.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 14th, 2005, 4:03 pm 
Offline

Joined: September 23rd, 2005, 8:18 pm
Posts: 55
Well I decided to make a small bar over the taskbar. I have a pretty big screen and very high resolution so I think I can afford it. Another way that could be cool is to use DesktopSidebar. It has a plugin that can capture other windows like a AutoHotKey guis.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 14th, 2005, 5:35 pm 
Offline

Joined: February 14th, 2005, 4:05 pm
Posts: 4710
Location: Boulder, CO
I did not know how flexible this private toolbar solution is. Thanks Dewi! With its multi level structure it really speeds up the navigation. I don't think it is "really crap way of doing it".


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 15th, 2005, 5:17 am 
Offline
User avatar

Joined: December 29th, 2004, 1:28 pm
Posts: 2545
Laszlo wrote:
I did not know how flexible this private toolbar solution is. Thanks Dewi! With its multi level structure it really speeds up the navigation.

It's pretty quick until it gets really loaded up and allows scrolling. Then it can really drag its ...

If you haven't tried already, you can also add "My Computer" to the taskbar to browse to folders/files on any drive.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 15th, 2005, 3:59 pm 
Offline

Joined: October 3rd, 2005, 2:42 am
Posts: 186
I believe the multilevel thing is an XP feature. Drives/folders on the bar open explorer on my win2k box.

_________________
Yet another hotkeyer.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 15th, 2005, 4:33 pm 
Offline
User avatar

Joined: December 29th, 2004, 1:28 pm
Posts: 2545
Dewi Morgan wrote:
I believe the multilevel thing is an XP feature. Drives/folders on the bar open explorer on my win2k box.

Multilevel works ok on Win2k Pro here (unless I'm misunderstanding what you mean by multilevel)... Right-click on taskbar, go to Toolbars->New Toolbar... then select a folder and click Ok... If the folder selected has subfolders you can browse the subfolders also...


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 15th, 2005, 4:47 pm 
Offline

Joined: October 3rd, 2005, 2:42 am
Posts: 186
Ah, ok: I've modified the default action of folders to be "explore", not "open". So if the folder that's used as a toolbar has subfolders, then clicking on them in the toolbar will open explorer. So long as that's my fault, and not a win2k thing, then fair enough :)

_________________
Yet another hotkeyer.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 15th, 2005, 5:01 pm 
Offline
User avatar

Joined: December 29th, 2004, 1:28 pm
Posts: 2545
Dewi Morgan wrote:
Ah, ok: I've modified the default action of folders to be "explore", not "open". So if the folder that's used as a toolbar has subfolders, then clicking on them in the toolbar will open explorer. So long as that's my fault, and not a win2k thing, then fair enough :)

Ah, that makes sense. I think... I don't have to click on the folder here though. I just hold the mouse on it for a second then the contents show. Similar to using the Start menu. Do the subfolders have an arrow next to them for you?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 15th, 2005, 6:34 pm 
Offline

Joined: October 3rd, 2005, 2:42 am
Posts: 186
Quote:
Do the subfolders have an arrow next to them for you?
Nope.

_________________
Yet another hotkeyer.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 19th, 2005, 10:10 pm 
Offline

Joined: September 23rd, 2005, 8:18 pm
Posts: 55
Chris wrote:
You could have an always-on-top window that sits on top of the taskbar. You could even make such a window an on-screen display (transparent background) as demonstrated in one of the examples at the bottom of the Gui page.


When I make it always on top the taskbar still becomes on top of it when I click it. Is there any way around this?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 19th, 2005, 11:19 pm 
Offline
User avatar

Joined: December 29th, 2004, 1:28 pm
Posts: 2545
Phoenix wrote:
When I make it always on top the taskbar still becomes on top of it when I click it. Is there any way around this?

Out of curiosity, are you running Win2k?


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 20th, 2005, 4:06 am 
Offline

Joined: September 23rd, 2005, 8:18 pm
Posts: 55
No I am running XP SP2 maybe I should have said that..


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: October 20th, 2005, 4:43 am 
Offline
User avatar

Joined: December 29th, 2004, 1:28 pm
Posts: 2545
Do you have a bit of code to share that we could play with :) ?


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 36 posts ]  Go to page 1, 2, 3  Next

All times are UTC [ DST ]


Who is online

Users browsing this forum: No registered users and 3 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