Re: Hide tray icon
Posted: Sun Jul 16, 2017 3:48 am
Cool thanks!kgschlosser wrote:ok you can always create a script and install the keyboard plugin so you can set a specific key combination to bring it back up
so install the keyboard plugin. press the key combination you want to use to open EG back up. create a macro with a Python Command action put the code below into the action grab the event for the key combo put it into the macro.. and Viola! instant key combo shows EG again..
Code: Select all
eg.document.ShowFrame()
and the only thing you should have to do to hide the icon is the code below. you shouldn't have to do any of that other stuff it's not necessary and could be causing the issue
Code: Select all
eg.taskBarIcon.Hide()