topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday March 28, 2024, 6:06 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: Aero effects without Aero  (Read 5117 times)

pilgrim

  • Supporting Member
  • Joined in 2008
  • **
  • Posts: 316
  • Cogito ergo ?
    • View Profile
    • Pilgrim's Page
    • Donate to Member
Aero effects without Aero
« on: April 12, 2013, 07:53 AM »
I have Aero disabled in Windows 7 because most of it I would never use, however there are two things that I use in both XP and 7.

The first is the snap option for which I use AquaSnap in both OS'.

The second is transparency. In XP I have long used PowerMenu, one of the reasons I have always liked this is because it puts the transparency option in the context menu of taskbar icons as well as in open windows, unfortunately it has not been updated since 1998 and will not work correctly in Windows 7, the developer has had countless requests to update it which they have so far ignored.

When I was looking for an alternative I came across a number of things, from an AHK script which I might go back and look at sometime, I like the idea but I'm interested in possible modifications to it particularly the possibility of adding it to the context menu, to Glass2k which I am currently using, it does the job and it has its own right click menu, the trouble is that when it is enabled it opens when you right click on anything, even links on webpages.

I am aware of other programs that include transparency but I already have programs that do just about everything else such as resizing etc, so all I need is a dedicated transparency program.
I wondered if anyone used or knew of any other programs that would do the job without doing lots of other things as well?
I spent 25 years training to be an eccentric then I woke up one morning and realised that I'd cracked it.
I've not had to try since.

I wonder what happens if I click on thi

Curt

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 7,566
    • View Profile
    • Donate to Member
Re: Aero effects without Aero
« Reply #1 on: April 12, 2013, 03:17 PM »
What is wrong with the AquaGlass you already have in AquaSnap - is it maybe a too different kind of transparency? I have never tested it.
 

Curt

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 7,566
    • View Profile
    • Donate to Member
Re: Aero effects without Aero
« Reply #2 on: April 12, 2013, 04:23 PM »
-sorry, visitors made me have to abort my answer.

Here at DC we have been offered a generous 50% discount on Actual Window Manager, read the first post on https://www.donation....msg173478#msg173478 for instructions. Check out the comparison chart, it is quite awesome: http://www.actualtoo...products/comparison/

Personally I purchased a key for the full AWM: http://www.actualtoo...s.com/windowmanager/, but of course you can also have what you merely asked for: http://www.actualtoo...m/transparentwindow/



pilgrim

  • Supporting Member
  • Joined in 2008
  • **
  • Posts: 316
  • Cogito ergo ?
    • View Profile
    • Pilgrim's Page
    • Donate to Member
Re: Aero effects without Aero
« Reply #3 on: April 13, 2013, 05:48 AM »
AquaGlass in AquaSnap makes a window transparent only when you are moving it, you choose a default setting that works for all windows.

Interesting that you should mention Actual Window Manager as yesterday I was looking at THIS.

Buying software at any price is not something I even think about these days, the government seems to be trying to turn poverty into an art form.

As I said in my previous post I will have a look at the AHK script I found, since an exchange with skwire nearly two years ago I have numerous bookmarks on AHK which I go back to from time to time although at the moment it still means little more to me than Chinese. (I can feel the brain cells dying every time I look at it.)
I spent 25 years training to be an eccentric then I woke up one morning and realised that I'd cracked it.
I've not had to try since.

I wonder what happens if I click on thi

pilgrim

  • Supporting Member
  • Joined in 2008
  • **
  • Posts: 316
  • Cogito ergo ?
    • View Profile
    • Pilgrim's Page
    • Donate to Member
Re: Aero effects without Aero
« Reply #4 on: April 17, 2013, 06:06 AM »
I wasn't sure whether or not to start a new thread for this, if the 'Powers that be' think I should perhaps someone would be kind enough to move it to wherever is appropriate.

Since my last post on transparency I have been looking into the AHK script that I found and discovered several others that are similar, after trying various things by making some very minor modifications to make it easier for me to use I have got as far as this:

; changing window transparencies
^WheelUp::  ; Increments transparency up by 3.125% (with wrap-around)
    DetectHiddenWindows, on
    WinGet, curtrans, Transparent, A
    if ! curtrans
        curtrans = 255
    newtrans := curtrans + 8
    if newtrans > 0
    {
        WinSet, Transparent, %newtrans%, A
    }
    else
    {
        WinSet, Transparent, OFF, A
        WinSet, Transparent, 255, A
    }
return

^WheelDown::  ; Increments transparency down by 3.125% (with wrap-around)
    DetectHiddenWindows, on
    WinGet, curtrans, Transparent, A
    if ! curtrans
        curtrans = 255
    newtrans := curtrans - 8
    if newtrans > 0
    {
        WinSet, Transparent, %newtrans%, A
    }
    ;else
    ;{
    ;    WinSet, Transparent, 255, A
    ;    WinSet, Transparent, OFF, A
    ;}
return

^o::  ; Reset Transparency Settings
    WinSet, Transparent, 255, A
    WinSet, Transparent, OFF, A
return

^g::  ; Press Ctrl+G to show the current settings of the window under the mouse.
    MouseGetPos,,, MouseWin
    WinGet, Transparent, Transparent, ahk_id %MouseWin%
    ToolTip Translucency:`t%Transparent%`n
   Sleep 2500
   ToolTip
return

In spite of spending several hours looking for answers, mainly on the AHK website, I still have unanswered questions:

1) All the scripts and information that I have looked at show transparency settings in values between 0 & 255, what I was looking for is a way to set it by percentage. Is that possible?
    I know that skwire did this with Frameless but I cannot find where I put the source code to see how he did it.
    What I had in mind was using hotkeys, say Alt + 1 - 9 for each 10% and using Alt + 0 as reset/off.
2) If 1 is possible is there a way to add the transparency settings to a window's context menu?
3) Is there a way that ALL transparency settings can be reset to opaque if you exit the script or reboot?
I spent 25 years training to be an eccentric then I woke up one morning and realised that I'd cracked it.
I've not had to try since.

I wonder what happens if I click on thi

pilgrim

  • Supporting Member
  • Joined in 2008
  • **
  • Posts: 316
  • Cogito ergo ?
    • View Profile
    • Pilgrim's Page
    • Donate to Member
Re: Aero effects without Aero
« Reply #5 on: April 18, 2013, 11:05 AM »
Is it possible to use both Alt and Alt Gr to trigger the same command in AHK without duplicating the whole command? :tellme:
I spent 25 years training to be an eccentric then I woke up one morning and realised that I'd cracked it.
I've not had to try since.

I wonder what happens if I click on thi

pilgrim

  • Supporting Member
  • Joined in 2008
  • **
  • Posts: 316
  • Cogito ergo ?
    • View Profile
    • Pilgrim's Page
    • Donate to Member
Re: Aero effects without Aero
« Reply #6 on: April 20, 2013, 04:54 AM »
My first and last program.



Pilgrim.
AHK (retired)
I spent 25 years training to be an eccentric then I woke up one morning and realised that I'd cracked it.
I've not had to try since.

I wonder what happens if I click on thi
« Last Edit: May 17, 2013, 09:14 AM by pilgrim »

Ath

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 3,612
    • View Profile
    • Donate to Member
Re: Aero effects without Aero
« Reply #7 on: April 20, 2013, 05:12 AM »
My first and last program.
Would you mind publishing/including the source too?

Ath

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 3,612
    • View Profile
    • Donate to Member
Re: Aero effects without Aero
« Reply #8 on: April 20, 2013, 03:33 PM »
I now see you've replaced the file, thanks. :o