igitpl 发表于 2009-3-31 15:07:47

怎么用AU3去掉任务栏右下角图标

怎么用AU3去掉任务栏右下角运行程序图标
比如:阿里旺旺图标、QQ图标(QQ参数里改的不算)、UUCall网络电话   等等

songsh 发表于 2009-4-2 12:50:12

回复 1# igitpl 的帖子

这给问题我也搞不懂,希望大家指点下啊!

techbytnt 发表于 2009-4-7 16:15:09

刷新方面我不太熟悉,必须关掉explorer.exe后,再重开explorer.exe 就能见效了

Local $_REG_MAIN="\Microsoft\Windows\CurrentVersion\Policies\Explorer",$_REG=["HKEY_CURRENT_USER","HKEY_LOCAL_MACHINE"]
Local $_REG_String=["REG_DWORD","NoTrayItemsDisplay","NoTrayItemDisplay","NoAutoTrayNotify"],$_REG_Value=1
for $i=1 to 3
RegWrite($_REG_MAIN&$_REG,$_REG_String[$i],$_REG_String,$_REG_Value)
RegWrite($_REG_MAIN&$_REG,$_REG_String[$i],$_REG_String,$_REG_Value)
Next
Exit

igitpl 发表于 2009-5-1 15:50:39

我试过了,还是没有用

lynfr8 发表于 2009-6-21 08:27:38

用UDF可以做到
例子:
#include "SysTray_UDF.au3"
;$tbxs 可以是 0或 1 , $st_process 你所需要隐藏的图标进程的名字
_SysTrayIconVisible($tbxs, _SysTrayIconIndex($st_process))

传送门:http://www.autoitx.com/forum.php?mod=viewthread&tid=640&extra=page%3D1
隐藏任务栏托盘图标的UDF
页: [1]
查看完整版本: 怎么用AU3去掉任务栏右下角图标