SDL Trados Studio
SDL Trados GroupShare
SDL Trados Business Manager
SDL Trados Live
SDL MultiTerm
SDL Passolo
SDL Speech to Text
SDL Managed Translation - Enterprise
SDL MultiTrans
SDL TMS
SDL WorldServer
Translation Management Connectors
SDL LiveContent S1000D
SDL Contenta S1000D
SDL XPP
SDL Tridion Docs
SDL Tridion Sites
SDL Content Assistant
SDL Machine Translation Cloud
SDL Machine Translation Connectors
SDL Machine Translation Edge
Language Developers
Tridion Developers
Tridion Docs Developers
Xopus Developers
Community Help
SDL User Experience
Language Products - GCS Internal Community
SDL Community Internal Group
SDL Access Customer Portal
SDL Professional Services
SDL Training & Certification
Style Guides
Language Technology Partner Group
SDL Academic Partners
SDL Enterprise Technology Partners
XyUser Group
ETUG (European Trados User Group) Public Information
Machine Translation User Group
Nordic SDL Tridion Docs User Group
SDL Tridion UK Meetup
SDL Tridion User Group New England
SDL Tridion West Coast User Group
SDL WorldServer User Group
Tridion Docs Europe & APAC User Group
Tridion User Group Benelux
Tridion User Group Ohio Valley
SDL MultiTerm Ideas
SDL Passolo Ideas
SDL Trados GroupShare Ideas
SDL Trados Studio Ideas
SDL Machine Translation Cloud Ideas
SDL Machine Translation Edge Ideas
SDL Language Cloud TMS Ideas
SDL Language Cloud Terminology Ideas
SDL Language Cloud Online Editor Ideas
SDL Managed Translation - Enterprise Ideas
SDL TMS Ideas
SDL WorldServer Ideas
SDL Tridion Docs Ideas
SDL Tridion Sites Ideas
SDL LiveContent S1000D Ideas
SDL XPP Ideas
Events & Webinars
To SDL Documentation
To SDL Support
What's New in SDL
Detecting language please wait for.......
Hi,
I came across this ahk script and I am really enjoying it so I wanted to share.
It lets you make any window (including Trados) transparent. You can vary the amount of transparency by holding down the windows key and using the mouse scroll wheel.
Whats really nice is to have your favourite wallpaper behind so it shows through, or even a "background" type relaxing youtube video in full screen.
For me, this is a way nicer visual effect than just staring at boring white windows while working.
; [Win+WheelUp] Increase opacity#WheelUp:: 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; [Win+WheelDown] Decrease opacity#WheelDown:: DetectHiddenWindows, on WinGet, curtrans, Transparent, A if ! curtrans curtrans = 255 newtrans := curtrans - 8 if newtrans > 0 { WinSet, Transparent, %newtrans%, A }return
Thanks James Plastow , Im sure some users will like this.
Will be nice to hear feedback from users on this.
I love it! Thanks for the scripts!I couldn’t get it to work as written and had to make a small change to the first script to get it to work :
#WheelUp:: DetectHiddenWindows, on WinGet, curtrans…
Thank you! Glad you liked them. I actually changed to Windows key+Up/Down arrow rather than the mouse wheel as another way of doing it, but I agree, it can be much nicer to have a picture in the background…
#WheelUp:: DetectHiddenWindows, on WinGet, curtrans, Transparent, A if ! curtrans curtrans = 255 newtrans := curtrans + 8 if newtrans > 0 { WinSet, Transparent, %newtrans%, Areturn
I’m an AHK beginner however, so maybe I didn’t input the scripts as they were meant to be.
Great scripts, I love seeing a nice image in the background or being able to quickly see a reference document opened behind another window!
Thank you! Glad you liked them. I actually changed to Windows key+Up/Down arrow rather than the mouse wheel as another way of doing it, but I agree, it can be much nicer to have a picture in the background while you are working than just boring white.