Skip to content

Instantly share code, notes, and snippets.

@tablacus
Created August 20, 2020 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tablacus/ac8e4f95580bd8babcfaf6921f1b9e43 to your computer and use it in GitHub Desktop.
Save tablacus/ac8e4f95580bd8babcfaf6921f1b9e43 to your computer and use it in GitHub Desktop.
Change toolbar background color on activation/deactivation - Tablacus Explorer
AddEvent("SystemMessage", function (Ctrl, hwnd, msg, wParam, lParam) {
if (msg == WM_ACTIVATE) {
document.body.style.backgroundColor = wParam ? "#F0F0F0" : "#757575";
}
});
@tablacus
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment