Messages - YetAnotherUser [ switch to compact view ]

Pages: [1] 2next
1
Circle Dock / Re: Major impact on Graphics Speed.
« on: May 10, 2009, 07:22 AM »
You might want to try the following workaround that really HIDES the dock and not just makes it transparent: https://www.donationcoder.com/forum/index.php?topic=16007.0

2
The problem I see is that the middle button is typically used to hide/show the dock and Circle Dock won't know if you intended to hide/show the dock or if you wanted to open a program.
-VideoInPicture (November 12, 2008, 11:27 AM)
I won't agree on that: a lot of people use middle button to open/close tabs in Firefox, for example, or in ICQ messengers like QIP, and these got used to "open in a tab or new window and leave what I have here untouched" behavior when middle-click, so an option to "open and hide" when left-clicked and "open and stay" when (e.g.) middle-clicked would be nice.

3
Circle Dock / Re: Cool iris problem
« on: January 05, 2009, 07:04 AM »
Here is the beginning of the script:


GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a ; this is just my list - here you should list and put all the elements of your CD as it might not work with my list. This is the sickest part of the script - I found their ahk_class through launching http://www.autohotkey.com/docs/scripts/MinimizeToTrayMenu.ahk script, then hiding all elements using it, then rewriting all the classes from the script's tray (printscreen and OCR will do fine as well) here. I bet there should be an easier way, but I don't know it, and this might also cause you problems if you add new elements...
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 2b04c8
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a c0444
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 2603a0
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 130474
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 11035a
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 23064c
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 60d3e
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 160376
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 2503a6
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 66067c
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 24039c
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 33056a
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a ld0438
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 507cc
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 80cc2
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 40d52
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 40d4a
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 2907a8
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 3705f2
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 507b4
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a lf07ba
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 5079e
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 507ae
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 40d02
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 60778
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 40d22
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 14059a
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 507c4
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 21045e
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a e0ce4
GroupAdd, Dock, ahk_class WindowsForms10.Window.88.app.0.378734a 37052e

F13:: ;put your hotkey for launching the script here
if OnOff != 1
{
WinHide, ahk_group Dock
OnOff := 1
}
else
{
WinShow, ahk_group Dock
WinActivate, ahk_group Dock
OnOff := 0
}
return

#IfWinActive ahk_group Dock ;this part tells the dock to hide when left-mouse is clicked
LButton::
Click
Sleep, 50
if OnOff != 1
{
WinHide, ahk_group Dock
OnOff := 1
}
return


DRAWBACKS: This is the script itself, but you ALSO must turn off the option "auto hide CD when application is launched or folder is opened" - that is, we disable CD's auto-hiding mechanism which is independent of OUR ahk-script - so, if you lose your CD and it won't toggle, it could have auto-hidden itself... In case it's lost, just exit the CD and AHK and relaunch them. It also goes without saying that you need to have Autohotkey installed on your machine. And also note that you will have to exit the script if you are going to drag-drop something as otherwise it will be hidden by the AHK-script... Yes, I know it's SICK, but the redrawing issues are even worse.

4
Circle Dock / Re: Cool iris problem
« on: December 11, 2008, 08:02 AM »
dazzaa, take a look here: https://www.donationcoder.com/forum/index.php?topic=15748.msg141435#msg141435
I've had the same problem and dealt with it by writing an Autohotkey script that REALLY hides Circle dock, but I do hope future CD releases would somehow fix it.

5
Circle Dock / Re: [bug] Circle Dock screen redraw problem - GDI Issue?
« on: December 09, 2008, 08:05 AM »
CircleDock was causing artifacts in CoolIris extension for Firefox as well, so I worked out a lame workaround - I made an Autohotkey script that would WinHide and WinShow all the ahk_class Window titles that I had to find manually. Implementing transparency fade in-out should not be much of a problem, I believe, but actually HIDING CircleDock in the future release would help a lot.
P.S. Anyone here?..

Pages: [1] 2next
Go to full version