<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on BlockFlash-Revisited | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/6532</link>
    <description>Recent comments on userscript: BlockFlash-Revisited</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Archived Comments, replied by jasn @ Sat, 06 Oct 2007 16:38:39 +0000</title>
      <description>&lt;p&gt;This is definitely my favorite script method for blocking flash stuff on the internet. However I am not able to install this as a regular user on my system. (latest Gentoo Linux, Firefox, Greasemonkey, as well as Adblock Plus and Noscript extensions installed). I am able to install it as root user, and was able to get it installed for my regular user account, by copying the script and config.xml from the gm_scripts directory for root's firefox config directory, to my regular user's firefox config directory. But not by doing the regular click to install.&lt;/p&gt;

&lt;p&gt;Any idea of what's going on?&lt;/p&gt;</description>
      <pubDate>Sat, 06 Oct 2007 16:38:39 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76394</guid>
      <author>jasn</author>
      <link>http://userscripts.org/topics/17423</link>
    </item>
    <item>
      <title>Archived Comments, replied by varanasi @ Fri, 28 Sep 2007 13:46:36 +0000</title>
      <description>&lt;p&gt;I posted an update that deals with embeds and adds pix's modification, see below, here:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://userscripts.org/scripts/show/12617&quot;&gt;http://userscripts.org/scripts/show/12617&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 28 Sep 2007 13:46:36 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76395</guid>
      <author>varanasi</author>
      <link>http://userscripts.org/topics/17423</link>
    </item>
    <item>
      <title>Archived Comments, replied by easier_rhino @ Tue, 17 Jul 2007 19:44:07 +0000</title>
      <description>&lt;p&gt;This might be a minor thing, but while the script handles the &quot;object&quot; tag just fine, it doesn't deal with the &quot;embed&quot; tag at all.  I don't know the semantic differences between the two tags.&lt;/p&gt;</description>
      <pubDate>Tue, 17 Jul 2007 19:44:07 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76396</guid>
      <author>easier_rhino</author>
      <link>http://userscripts.org/topics/17423</link>
    </item>
    <item>
      <title>Archived Comments, replied by pix @ Tue, 22 May 2007 07:00:57 +0000</title>
      <description>&lt;p&gt;&lt;i&gt;So that would enable/disable all flash movies? What if you want to watch flash movies and block other flash ads on a site?&lt;/i&gt;&lt;/p&gt;

&lt;p&gt;with the current code, as it iterates through the list of flash movies on a site, it keeps overwriting the &lt;tt&gt;placeholder&lt;/tt&gt; and &lt;tt&gt;flash&lt;/tt&gt; variables. so if you have more than one flash movie on a page, clicking the &lt;b&gt;[Play Flash]&lt;/b&gt; button only activates/deactivates the last flash movie on the page.&lt;/p&gt;

&lt;p&gt;with my fix, it doesn't use this variable from the click listener anymore, but rather finds these elements relative to the element calling the handler, so you can activate and deactivate individual movies on a page individually.&lt;/p&gt;

&lt;p&gt;ahh, i use flashblock now anyway ;)&lt;/p&gt;

&lt;p&gt;pix.&lt;/p&gt;</description>
      <pubDate>Tue, 22 May 2007 07:00:57 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76397</guid>
      <author>pix</author>
      <link>http://userscripts.org/topics/17423</link>
    </item>
    <item>
      <title>Archived Comments, replied by Andrew Pennebaker @ Wed, 04 Apr 2007 03:17:50 +0000</title>
      <description>&lt;p&gt;So that would enable/disable all flash movies? What if you want to watch flash movies and block other flash ads on a site?&lt;/p&gt;</description>
      <pubDate>Wed, 04 Apr 2007 03:17:50 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76398</guid>
      <author>Andrew Pennebaker</author>
      <link>http://userscripts.org/topics/17423</link>
    </item>
    <item>
      <title>Archived Comments, replied by pix @ Sun, 04 Mar 2007 18:11:53 +0000</title>
      <description>&lt;p&gt;here is a small fix to make this work with pages containing multiple flash movies.&lt;/p&gt;

&lt;p&gt;change these lines:&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;
    placeholder.addEventListener(
        'click',
        function() {
            if (flash.on) {
&lt;/pre&gt;
&lt;br /&gt;        
&lt;br /&gt;to&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;
    placeholder.addEventListener(
        'click',
        function() {
            placeholder=this;
            flash=this.nextSibling;
            if (flash.on) {
&lt;/pre&gt;&lt;/p&gt;</description>
      <pubDate>Sun, 04 Mar 2007 18:11:53 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76399</guid>
      <author>pix</author>
      <link>http://userscripts.org/topics/17423</link>
    </item>
    <item>
      <title>Archived Comments, replied by Andrew Pennebaker @ Sun, 25 Feb 2007 17:16:18 +0000</title>
      <description>&lt;p&gt;Sure! Pick whichever colors you like.&lt;/p&gt;</description>
      <pubDate>Sun, 25 Feb 2007 17:16:18 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76400</guid>
      <author>Andrew Pennebaker</author>
      <link>http://userscripts.org/topics/17423</link>
    </item>
    <item>
      <title>Archived Comments, replied by simon! @ Wed, 21 Feb 2007 11:43:18 +0000</title>
      <description>&lt;p&gt;cool!! it's much much better than Flashblock (&lt;a href=&quot;https://addons.mozilla.org/firefox/433/&quot;&gt;https://addons.mozilla.org/firefox/433/&lt;/a&gt;) but it'll be very helpful to block flv players flash based like on youtube&lt;/p&gt;

&lt;p&gt;if I'll want to allow this kinda flash objects (those flv players) than I'll do it manualy, till then I'll use Flashblock at the same time with BlockFlash-Revisited (and BlockFlash {&lt;a href=&quot;http://userscripts.org/scripts/show/3204&quot;&gt;http://userscripts.org/scripts/show/3204&lt;/a&gt;} lol)&lt;/p&gt;

&lt;p&gt;BTW - thnX for the great color (I'm redhead, so its fit pretty well lol)&lt;/p&gt;

&lt;p&gt;if ya can, build another one in azure, light blue color. or you can give us a list of what color do you want and just pike it...&lt;/p&gt;</description>
      <pubDate>Wed, 21 Feb 2007 11:43:18 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76401</guid>
      <author>simon!</author>
      <link>http://userscripts.org/topics/17423</link>
    </item>
    <item>
      <title>Archived Comments, replied by Jesse Andrews @ Wed, 17 Nov 2004 01:05:49 +0000</title>
      <description>&lt;p&gt;The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)&lt;/p&gt;</description>
      <pubDate>Wed, 17 Nov 2004 01:05:49 +0000</pubDate>
      <guid isPermaLink="false">userscripts.org:17423:76393</guid>
      <author>Jesse Andrews</author>
      <link>http://userscripts.org/topics/17423</link>
    </item>
  </channel>
</rss>
