【发布时间】:2010-12-14 21:28:25
【问题描述】:
我有一个 AIR 应用程序正在加载 mx:HTMLs。我想像 Adblock Plus for Firefox 一样阻止其中显示的广告(请参阅http://adblockplus.org/en/)。我订阅了 Easylist USA 过滤器。
var req:URLRequest = new URLRequest("http://www.google.com");
thisHtmlWindow.open();
thisHtmlWindow.htmlContent.htmlLoader.load(req);
我不知道从哪里开始中断 actionscript 中的 HTML GET-ting 过程。这是我怀疑我可以添加 HTTP 过滤器的地方。订阅过滤器并定期下载/更新它以确保主要广告网络被阻止会很好。
【问题讨论】:
标签: html apache-flex actionscript