I can see nice transparency (with border and body) when I open "Add gadgets windows". Why not all other window like "my computer"? is it possible to add bluer transparent to 'my computer' like gadgets window?
I can see nice transparency (with border and body) when I open "Add gadgets windows". Why not all other window like "my computer"? is it possible to add bluer transparent to 'my computer' like gadgets window?
The only real way to have transparent windows is to download or install programs that have transparent windows by default. One of these is the Firefox 3.7 Alpha 4 Preview available for Windows. You can enable Aero Gass in this, so it is transparent. You can download it here. Other than that, it is up to an individual program to have transparency enabled. There may be some people online that have a transparent copy of Windows Explorer, so just ask for that more specifically.
Thread Starter Thank u. is it possible to bluer transparent to explorer windows like my computer, drives... without any other apps?
Thread Starter Thank u very much. Don't understand why Microsoft don't add this to all windows, only in gadget.
Thread Starter Thanks, nice to know it can be done without 3rd party software. Can u pls explain how to do window transparent using (0 - 255)? i love to know.
Now I've learned something!
There is no way without doing some programing, e.g. ShowWindow Function (MSDN) or WinSet (autohotkey).Thanks, nice to know it can be done without 3rd party software.
Autohotkey (very easy to use, very popular):
n=0
!+t::
WinGetActiveTitle, T
if n=0
{
WinSet, Transparent, 222, %T%
n=1
Exit
}
WinSet, Transparent, Off, %T%
n=0
Exit
It'll make your active window semitransparent (or whatever value you set 0-255) when you press Alt-Shift-t. If the active window is already transparent, it'll make it opaque.
Thread Starter Thank u very much for ur info.