屏蔽lingoes的弹窗.

这个软件挺好用的,更新2.71版后频繁弹窗在右下角.解决办法


1:先搜索下lingoes 下面的tip.xml文件 (xp用户在C:\Documents and Settings\Administrator\Application Data\Lingoes\Translator ,win7用户类似的路径)


2:按照网上说明,删除掉tip.xml,新建一个tip.xml,可是过会重新打开这个又弹出来.于是分析原因


3:打开tip.xml

<?xml version="1.0" encoding="UTF-8" ?>
<tip update="2010-08-11 01:01:00" updatefile_md5="ad6c79a543c7c8e960cfaf95338228b8">
<item lang="zh-CN">
<timer begin="180" step="21600" loop="y" order="0" />
<content type="url" window_style="0" width="320" height="310" align="rb" title="新词锐词">http://dict.hudong.com/xml/rc.html?hf=lgs_fuchuang</content>
</item>
<version_1>
<item lang="zh-CN">
<timer begin="180" step="21600" loop="y" order="0" />
<content type="url" window_style="0" width="350" height="0" align="rb" show_time="60" title="新词锐词">http://dict.hudong.com/xml/rc.html?hf=lgs_fuchuang</content>
<content type="url" window_style="1" width="250" height="250" align="rb" show_time="30" title="Ads by Lingoes">http://www.lingoes.cn/zh/translator/trans_downsoft.php?id=60</content>
</item>
</version_1>
</tip>

4:原来这个文件提供了一个md5码校验,做了个实验,如果全部删除掉,那么lingoes会重新下载一个新的tip.xml并且替换掉你的tip.xml

<?xml version="1.0" encoding="UTF-8" ?>
<tip update="2010-08-11 01:01:00" updatefile_md5="7a4757fd89c84ffcf57d4350e11ef0f8">

<item lang="zh-CN">
<timer begin="180" step="21600" loop="y" order="0" />
<content type="url" window_style="0" width="320" height="310" align="rb" title="新词锐词">http://dict.hudong.com/xml/rc.html?hf=lgs_fuchuang</content>
</item>
<version_1>
<item lang="zh-CN">
<timer begin="180" step="21600" loop="y" order="0" />
<content type="url" window_style="0" width="350" height="0" align="rb" show_time="60" title="新词锐词">http://dict.hudong.com/xml/rc.html?hf=lgs_fuchuang</content>
<content type="url" window_style="1" width="250" height="250" align="rb" show_time="30" title="Ads by Lingoes">http://www.lingoes.cn/zh/translator/trans_downsoft.php?id=60</content>
</item>
</version_1>
</tip>


5.于是解决办法来了,要么直接给你新建的tip.xml加一个只读权限(右键属性 只读),要么直接修改掉tip.xml里面的内容并且保存,然后预防万一再加个只读.或者把xml里面的地址在hosts里面指向0.0.0.0让它无法访问

去掉了弹窗出现的时间,timer begin从0,去掉http://dict.hudong.com/xml/rc.html?hf=lgs_fuchuang 和http://dict.hudong.com/xml/rc.html?hf=lgs_fuchuang 这两个弹窗取得内容的链接.xml文件如下,去掉show_time时间. 这下应该没辙了.

<?xml version="1.0" encoding="UTF-8" ?>
<tip update="2010-08-11 01:01:00" updatefile_md5="7a4757fd89c84ffcf57d4350e11ef0f8">
<item lang="zh-CN">
<timer begin="0" step="0" loop="y" order="0" />
<content type="url" window_style="0" width="320" height="310" align="rb" title="kill"></content>
</item>
<version_1>
<item lang="zh-CN">
<timer begin="0" step="0" loop="y" order="0" />
<content type="url" window_style="0" width="350" height="0" align="rb" show_time="0" title="kill agin"></content>
<content type="url" window_style="1" width="250" height="250" align="rb" show_time="0" title="Ads by Lingoes"></content>
</item>
</version_1>
</tip>





你可能感兴趣的:(timer,kill,application,url,encoding,2010)