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 

making all menu's transparent

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
Newb
Guest





PostPosted: Wed Mar 16, 2005 10:59 am    Post subject: making all menu's transparent Reply with quote

How can i make all of the windows menu's transparent i managed to get the taskbar t charge, but not the start menu and sub menu's, anyone know how?

Thx
Back to top
Newb
Guest





PostPosted: Wed Mar 16, 2005 10:59 am    Post subject: correction Reply with quote

err to change even
Back to top
Serenity



Joined: 08 Nov 2004
Posts: 1007

PostPosted: Wed Mar 16, 2005 11:22 am    Post subject: Reply with quote

http://www.autohotkey.com/forum/viewtopic.php?p=7415

Board search Wink
_________________
"Anything worth doing is worth doing slowly." - Mae West
Back to top
View user's profile Send private message Visit poster's website
Newb
Guest





PostPosted: Wed Mar 16, 2005 11:43 am    Post subject: Making all windows Reply with quote

thx ...
now i needa make all off the existing windows transparent.
if u could help ?)
Back to top
Serenity



Joined: 08 Nov 2004
Posts: 1007

PostPosted: Wed Mar 16, 2005 12:06 pm    Post subject: Reply with quote

This makes all existing windows transparent. Ctrl+Enter to make all windows transparent, Ctrl+Space to turn transparency off.

Code:
^enter::
WinGet, id, list
Loop, %id%
{
  StringTrimRight, this_id, id%a_index%, 0
  WinSet, Transparent, 200, ahk_id %this_id%
  sleep, 100
}
return

^space::
WinGet, id, list
Loop, %id%
{
  StringTrimRight, this_id, id%a_index%, 0
  WinSet, Transparent, off, ahk_id %this_id%
  sleep, 100
}
return


You'll need to tweak it. Adding the sleep command helps, it probably needs to also refresh the windows after applying the transparency to reduce the glitches.
_________________
"Anything worth doing is worth doing slowly." - Mae West
Back to top
View user's profile Send private message Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
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