AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Putting a gui in the taskbar
Goto page 1, 2, 3  Next
 
Reply to topic    AutoHotkey Community Forum Index -> Wish List
View previous topic :: View next topic  
Author Message
Phoenix



Joined: 23 Sep 2005
Posts: 55

PostPosted: Thu Oct 06, 2005 12:07 pm    Post subject: Putting a gui in the taskbar Reply with quote

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? Smile
Back to top
View user's profile Send private message
Chris
Site Admin


Joined: 02 Mar 2004
Posts: 10716

PostPosted: Fri Oct 07, 2005 12:54 pm    Post subject: Reply with quote

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.
Back to top
View user's profile Send private message Send e-mail
Dewi Morgan



Joined: 03 Oct 2005
Posts: 186

PostPosted: Sat Oct 08, 2005 5:17 am    Post subject: Reply with quote

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.
Back to top
View user's profile Send private message
Phoenix



Joined: 23 Sep 2005
Posts: 55

PostPosted: Fri Oct 14, 2005 3:03 pm    Post subject: Reply with quote

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.
Back to top
View user's profile Send private message
Laszlo



Joined: 14 Feb 2005
Posts: 4710
Location: Boulder, CO

PostPosted: Fri Oct 14, 2005 4:35 pm    Post subject: Reply with quote

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".
Back to top
View user's profile Send private message
corrupt



Joined: 29 Dec 2004
Posts: 2485

PostPosted: Sat Oct 15, 2005 4:17 am    Post subject: Reply with quote

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.
Back to top
View user's profile Send private message Visit poster's website
Dewi Morgan



Joined: 03 Oct 2005
Posts: 186

PostPosted: Sat Oct 15, 2005 2:59 pm    Post subject: Reply with quote

I believe the multilevel thing is an XP feature. Drives/folders on the bar open explorer on my win2k box.
_________________
Yet another hotkeyer.
Back to top
View user's profile Send private message
corrupt



Joined: 29 Dec 2004
Posts: 2485

PostPosted: Sat Oct 15, 2005 3:33 pm    Post subject: Reply with quote

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...
Back to top
View user's profile Send private message Visit poster's website
Dewi Morgan



Joined: 03 Oct 2005
Posts: 186

PostPosted: Sat Oct 15, 2005 3:47 pm    Post subject: Reply with quote

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.
Back to top
View user's profile Send private message
corrupt



Joined: 29 Dec 2004
Posts: 2485

PostPosted: Sat Oct 15, 2005 4:01 pm    Post subject: Reply with quote

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 Smile

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?
Back to top
View user's profile Send private message Visit poster's website
Dewi Morgan



Joined: 03 Oct 2005
Posts: 186

PostPosted: Sat Oct 15, 2005 5:34 pm    Post subject: Reply with quote

Quote:
Do the subfolders have an arrow next to them for you?
Nope.
_________________
Yet another hotkeyer.
Back to top
View user's profile Send private message
Phoenix



Joined: 23 Sep 2005
Posts: 55

PostPosted: Wed Oct 19, 2005 9:10 pm    Post subject: Reply with quote

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?
Back to top
View user's profile Send private message
corrupt



Joined: 29 Dec 2004
Posts: 2485

PostPosted: Wed Oct 19, 2005 10:19 pm    Post subject: Reply with quote

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?
Back to top
View user's profile Send private message Visit poster's website
Phoenix



Joined: 23 Sep 2005
Posts: 55

PostPosted: Thu Oct 20, 2005 3:06 am    Post subject: Reply with quote

No I am running XP SP2 maybe I should have said that..
Back to top
View user's profile Send private message
corrupt



Joined: 29 Dec 2004
Posts: 2485

PostPosted: Thu Oct 20, 2005 3:43 am    Post subject: Reply with quote

Do you have a bit of code to share that we could play with Smile ?
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Wish List All times are GMT
Goto page 1, 2, 3  Next
Page 1 of 3

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group