| View previous topic :: View next topic |
| Author |
Message |
Nuwan
Joined: 08 Oct 2005 Posts: 29 Location: Sri Lanka
|
Posted: Tue Sep 19, 2006 5:05 pm Post subject: Hide Icon |
|
|
Hai..
Is there any method to hide the Icon shown in taskbar(right side) when a compiled script (exe) running
[I want to hide autohot key icon]
pls reply:o
Nuwan |
|
| Back to top |
|
 |
philou
Joined: 26 Jul 2006 Posts: 68 Location: Wuppertal
|
Posted: Tue Sep 19, 2006 5:24 pm Post subject: |
|
|
RTFM
 |
|
| Back to top |
|
 |
PhiLho
Joined: 27 Dec 2005 Posts: 6836 Location: France (near Paris)
|
Posted: Tue Sep 19, 2006 6:42 pm Post subject: |
|
|
Read The Fine Manual, indeed, but I admit it is not always obvious to find a command when searching a task to do... This is true for AutoHotkey but also for the WinAPI and all docs in general. _________________
vPhiLho := RegExReplace("Philippe Lhoste", "^(\w{3})\w*\s+\b(\w{3})\w*$", "$1$2") |
|
| Back to top |
|
 |
philou
Joined: 26 Jul 2006 Posts: 68 Location: Wuppertal
|
Posted: Tue Sep 19, 2006 7:18 pm Post subject: |
|
|
I agree with you PhiLho, but a simple search for icon in the fine manual would at least helped him on the right track, but nevermind  |
|
| Back to top |
|
 |
SKAN
Joined: 26 Dec 2005 Posts: 8688
|
Posted: Tue Sep 19, 2006 7:40 pm Post subject: Re: Hide Icon |
|
|
| Nuwan wrote: | Is there any method to hide the Icon shown in taskbar(right side) when a compiled script (exe) running
[I want to hide autohot key icon] |
Just add these lines to the beginning of the script:
| Code: | #NoTrayIcon
IfNotEqual,A_IsCompiled,1, Menu,Tray,Icon |
Regards,  _________________ URLGet - Internet Explorer based Downloader |
|
| Back to top |
|
 |
Avalon
Joined: 11 May 2007 Posts: 26
|
Posted: Wed May 30, 2007 12:11 pm Post subject: hide after every ballontip |
|
|
I have a similar question. I want to hide the icon of a script, but I can't use #NoTrayIcon, becouse I want to use ballontips. What I want, is to hide again after each ballontip, also hide after I recompile and launch it through cmd. I tried to search after some kind of registry solution, but no difference. Any idea?
Ps.: Of course, when I say hide, I mean like when you set it in the taskbar properties. |
|
| Back to top |
|
 |
Grumpy Guest
|
Posted: Wed May 30, 2007 12:18 pm Post subject: |
|
|
Again, RTFM.
| #NoTrayIcon page wrote: | | The tray icon can be made to disappear or reappear at any time during the execution of the script by using the command menu, tray, Icon or menu, tray, NoIcon. |
|
|
| Back to top |
|
 |
Avalon
Joined: 11 May 2007 Posts: 26
|
Posted: Wed May 30, 2007 12:24 pm Post subject: |
|
|
| Grumpy wrote: | Again, RTFM.
| #NoTrayIcon page wrote: | | The tray icon can be made to disappear or reappear at any time during the execution of the script by using the command menu, tray, Icon or menu, tray, NoIcon. |
|
Yeah, my fault I wasn't exact. It's not jus AHK script. It also applies to other programs tray icons. So I still need a global solution. |
|
| Back to top |
|
 |
Grumpy Guest
|
Posted: Wed May 30, 2007 12:44 pm Post subject: |
|
|
So search the forum for tray icon or notification area (the correct name).
I recall some solutions might have been given. |
|
| Back to top |
|
 |
|