Jump to content

Recommended Posts

Posted

Is it possible to make all windows transparent?, i do know how to make one by specific name transparent, but can you make all windows transparent no matter what window name thay have?

Posted (edited)

That's a difficult one because at the moment we can't enumerate windows.

Else we could do:

$AllWindows = WinEnum()
For $w = 1 To $AllWindows[0]
   WinSetTrans($AllWindows[$w], "", 100)
Next
$value = Round(100 / 255 * 100)
MsgBox(64, "Set Transparency", "All windows now have " & $value & "% transparency!")
Edited by SlimShady
Posted (edited)

That's a difficult one because at the moment we can't enumerate windows.

Else we could do:

$AllWindows = WinEnum()
For $w = 1 To $AllWindows[0]
   WinSetTrans($AllWindows[$w], "", 100)
Next
$value = Round(100 / 255 * 100)
MsgBox(64, "Set Transparency", "All windows now have " & $value & "% transparency!")

<{POST_SNAPBACK}>

Yeah, would be nice/easy.....:) Edited by josbe
  • 2 weeks later...
  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...