<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-6459784511154382334</atom:id><lastBuildDate>Wed, 16 Jan 2013 20:03:44 +0000</lastBuildDate><category>display advertising</category><category>flash</category><category>cpu usage</category><category>action script</category><category>processing power</category><title>Advalidation Blog</title><description /><link>http://blog.advalidation.com/</link><managingEditor>noreply@blogger.com (Advalidation)</managingEditor><generator>Blogger</generator><openSearch:totalResults>16</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/advalidation" /><feedburner:info uri="advalidation" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6459784511154382334.post-9143233396025714188</guid><pubDate>Tue, 14 Jun 2011 21:15:00 +0000</pubDate><atom:updated>2011-06-14T14:20:38.135-07:00</atom:updated><title>AS3 clicktag</title><description>A common problem with flash creatives developed in ActionScript 3 is getting the clicktag right. After extensive research and rigorous testing we've come up with the following ActionScript code:

&lt;code style="color: green;"&gt;&lt;pre&gt;
function handleClick(mouseEvent:MouseEvent):void {
    var interactiveObject:InteractiveObject = mouseEvent.target as InteractiveObject;
    var li:LoaderInfo = LoaderInfo(interactiveObject.root.loaderInfo);
    var url:String = li.parameters.&lt;b&gt;clickTag&lt;/b&gt;;
    if (url) {
        if (ExternalInterface.available) {
            var userAgent:String = ExternalInterface.call('function(){ return navigator.userAgent; }');

            if (userAgent.indexOf("MSIE") &gt;= 0) {
                ExternalInterface.call('window.open', url, '_blank');
            } else {
                navigateToURL(new URLRequest(url), '_blank');
            }
        } else {
            navigateToURL(new URLRequest(url), '_blank');
        }
    }
}
myButton_btn.addEventListener(MouseEvent.MOUSE_UP,handleClick);
&lt;/pre&gt;&lt;/code&gt;

Please change the &lt;span style="color: green;"&gt;clickTag&lt;/span&gt; variable name (in bold) to the formatting required by your ad server (clicktag, clickTag or clickTAG).

&lt;/p&gt;&lt;br&gt;

&lt;span style="font-size: large;"&gt;&lt;b&gt;Requirements&lt;/b&gt;&lt;/span&gt;&lt;br&gt;
&lt;p&gt;For this clicktag to work in all browsers the following two requirements need to be met:
&lt;ul&gt;
  &lt;li&gt;&lt;b&gt;The html object tag needs an id&lt;/b&gt; or Internet Explorer will generate a javascript error of "null is null or not an object".&lt;/li&gt;
  &lt;li&gt;&lt;b&gt;AllowScriptAccess needs to be true&lt;/b&gt; either by setting it to "always" or by setting it to "sameDomain" and loading the flash from the same domain as the hosting page.&lt;/li&gt;
&lt;/ul&gt;&lt;/p&gt;
&lt;br&gt;
&lt;span style="font-size: large;"&gt;&lt;b&gt;HTML to load AS3 flash creative&lt;/b&gt;&lt;/span&gt;&lt;br&gt;
&lt;p&gt;We suggest loading your flash with something similar to the following HTML (important parts in bold):
&lt;code style="color: green;"&gt;&lt;pre&gt;
&amp;lt;object &lt;b&gt;id="flash_file_1"&lt;/b&gt; classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="980" height="120"&amp;gt;
  &amp;lt;param name="movie" value="yourfile.swf"&amp;gt;
  &amp;lt;param name="quality" value="autohigh"&amp;gt;
  &amp;lt;param name="wmode" value="opaque"&amp;gt;
  &lt;b&gt;&amp;lt;param name="allowScriptAccess" value="always"&amp;gt;&lt;/b&gt;
  &amp;lt;param name="FlashVars" value="clickTag=http%3A%2F%2Fexample.com"&amp;gt;
  &amp;lt;embed src="yourfile.swf?clickTag=http%3A%2F%2Fexample.com" quality="autohigh" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="980" height="120"&amp;gt;&amp;lt;/embed&amp;gt;
&amp;lt;/object&amp;gt;
&lt;/pre&gt;&lt;/code&gt;&lt;/p&gt;&lt;br&gt;

&lt;span style="font-size: large;"&gt;&lt;b&gt;More technical details&lt;/b&gt;&lt;/span&gt;&lt;br&gt;
&lt;p&gt;
&lt;ul&gt;
  &lt;li&gt;navigateToURL() will work in IE as long as wmode is set to window. With opaque or transparent wmode the navigateToURL() function will result in the IE popup blocker blocking your click.&lt;/li&gt;
  &lt;li&gt;The default AllowScriptAccess setting is "sameDomain"&lt;/li&gt;
  &lt;li&gt;ExternalInterface will only work if AllowScriptAccess is true&lt;/li&gt;
  &lt;li&gt;The ExternalInterface call to window.open() is unfortunately slightly slower than calling navigateToURL()&lt;/li&gt;
&lt;/ul&gt;
&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/advalidation/~4/87pZllKwgDo" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/advalidation/~3/87pZllKwgDo/as3-clicktag.html</link><author>noreply@blogger.com (Advalidation)</author><thr:total>1</thr:total><feedburner:origLink>http://blog.advalidation.com/2011/06/as3-clicktag.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6459784511154382334.post-8624168128342399860</guid><pubDate>Wed, 02 Mar 2011 19:38:00 +0000</pubDate><atom:updated>2011-03-02T12:32:49.938-08:00</atom:updated><title>News and changes in the latest release</title><description>As you might have noticed we have made som updates to Advalidation.&amp;nbsp;If you find any bugs or have any suggestions please send an email to your Advalidation contact or support@advalidation.com&lt;br /&gt;
&lt;br /&gt;
Below are the most important updates in this release.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: large;"&gt;Improved report&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
We have made the information that is important to you even more accessible. No more pop-ups. Simply click the toggle list/report button to when the validation is done to see how your creatives performed.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh6.googleusercontent.com/-f4Qop-qxA8A/TW6buqppUjI/AAAAAAAAACE/RTky97r-Vdo/s1600/togglebutton.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh6.googleusercontent.com/-f4Qop-qxA8A/TW6buqppUjI/AAAAAAAAACE/RTky97r-Vdo/s1600/togglebutton.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
The link to share the report is located at your top right. You’ll be seeing that link on more pages in future releases.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh3.googleusercontent.com/-qohpawwScOw/TW6b5K9EtPI/AAAAAAAAACI/sDZmHAdhBYM/s1600/sharereport.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh3.googleusercontent.com/-qohpawwScOw/TW6b5K9EtPI/AAAAAAAAACI/sDZmHAdhBYM/s1600/sharereport.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: large;"&gt;Slide show view of creatives&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
You can browse through all creatives in a validation job with our new slide show view. Simply click the view creative link. Once the first creative is shown you can use the arrow keys on your keyboard to quickly browse through all creatives in that validation job.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: large;"&gt;Delete creatives&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
Right next to the view creative link is the new delete creative link.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh3.googleusercontent.com/-u8bK_BwtBg0/TW6cD831DxI/AAAAAAAAACM/tm1j7o-81BY/s1600/showdelete.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh3.googleusercontent.com/-u8bK_BwtBg0/TW6cD831DxI/AAAAAAAAACM/tm1j7o-81BY/s1600/showdelete.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: large;"&gt;Expandable ads&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
If an ad expands beyond it's initial dimension we'll report that under details.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: large;"&gt;Other improvements&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
Experimental support for tags in Excel files.&lt;br /&gt;
Support for Doubleclick internal redirects (inred tags).&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;span class="Apple-style-span" style="font-size: large;"&gt;Tools&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;We have added a new tab for small helpful tools. Go ahead and try the "tag viewer", a quick way to preview a third party tag without a single click. Simply paste the tag and the creative will appear.&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://lh4.googleusercontent.com/-32u8a9k8k2Y/TW6o5ePsWvI/AAAAAAAAACQ/S8K5ba12fPY/s1600/tools.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://lh4.googleusercontent.com/-32u8a9k8k2Y/TW6o5ePsWvI/AAAAAAAAACQ/S8K5ba12fPY/s1600/tools.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/advalidation/~4/06taig6_7J4" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/advalidation/~3/06taig6_7J4/news-and-changes-in-latest-release.html</link><author>noreply@blogger.com (Advalidation)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://lh6.googleusercontent.com/-f4Qop-qxA8A/TW6buqppUjI/AAAAAAAAACE/RTky97r-Vdo/s72-c/togglebutton.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://blog.advalidation.com/2011/03/news-and-changes-in-latest-release.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6459784511154382334.post-4267782163808933292</guid><pubDate>Tue, 14 Sep 2010 20:09:00 +0000</pubDate><atom:updated>2010-09-14T13:11:32.808-07:00</atom:updated><title>A quick note on our third party tag support</title><description>&lt;div class="p1"&gt;From time to time you might hear us say that we’ve added support for new third party vendors. This is not entirely true.&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div class="p2"&gt;&lt;span class="s1"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="p1"&gt;&lt;span class="s1"&gt;Our philosophy has always been "detect everything you throw at us, no matter the format". Because of this there are really no specific requirements for pasted tags, uploaded files or forwarded e-mails.&lt;/span&gt;&lt;br /&gt;
&lt;span class="s1"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div class="p2"&gt;&lt;span class="s1"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="p1"&gt;&lt;span class="s1"&gt;Extensive testing with hundreds of different creatives have been performed to ensure accuracy.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;span class="s1"&gt;&lt;/span&gt;In most cases adding support for a new provider simply means that we verify that everything works as expected and figure out how to name the creatives in a good way.&lt;/div&gt;&lt;div class="p1"&gt;&lt;span class="s1"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div class="p2"&gt;&lt;span class="s1"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="p1"&gt;&lt;span class="s1"&gt;Sometimes we stumble up on more advanced tags though. If that happens you can simply forward them to us and we’ll figure them out and add them to the list.&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/advalidation/~4/VAXa6ruKX4I" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/advalidation/~3/VAXa6ruKX4I/quick-note-on-our-third-party-tag.html</link><author>noreply@blogger.com (Advalidation)</author><thr:total>0</thr:total><feedburner:origLink>http://blog.advalidation.com/2010/09/quick-note-on-our-third-party-tag.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6459784511154382334.post-8671265401986074487</guid><pubDate>Mon, 13 Sep 2010 19:51:00 +0000</pubDate><atom:updated>2010-09-14T12:55:51.362-07:00</atom:updated><title>Updates and bugs</title><description>We added support for Unicast, Interpolls and generic OpenX third party tags.&lt;br /&gt;
&lt;br /&gt;
We've also made it possible to sort your validation job columns. In combination with the automatic deletion of validation jobs this should make it easy to find the creatives you have submitted if you're a large ad ops team.&amp;nbsp;The default order is still date submitted, descending – like your inbox.&lt;br /&gt;
&lt;br /&gt;
A couple of small bugs were squashed in the process.&lt;img src="http://feeds.feedburner.com/~r/advalidation/~4/9iLD_HrcJgg" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/advalidation/~3/9iLD_HrcJgg/bugs-and-updates.html</link><author>noreply@blogger.com (Advalidation)</author><thr:total>0</thr:total><feedburner:origLink>http://blog.advalidation.com/2010/09/bugs-and-updates.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6459784511154382334.post-196793920462420906</guid><pubDate>Tue, 07 Sep 2010 19:46:00 +0000</pubDate><atom:updated>2010-09-14T12:51:28.134-07:00</atom:updated><title>A couple of updates</title><description>We've changed the way creative dimensions are reported for third party tags. Earlier the dimensions of the primary creative (flash or image) were used. From this version we’re instead using the rendered dimensions as reported by the browser.&lt;br /&gt;
&lt;br /&gt;
This fixes the issue where the size of the creative file differs from the element it is served through.&amp;nbsp;It also prepares for the upcoming expandable detection feature.&lt;br /&gt;
&lt;br /&gt;
We also added support for Spongecell, Eyereturn, Adcentric, Adtech/Helios and Pointroll tags.&lt;br /&gt;
&lt;br /&gt;
While we were at it we added support for Doubleclick/DFA internal redirects (inred tags). The “show tag” feature includes the original inred URL as well as the generated tag code.&lt;br /&gt;
&lt;br /&gt;
Happy validating!&lt;img src="http://feeds.feedburner.com/~r/advalidation/~4/KVY2Bm0vh4o" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/advalidation/~3/KVY2Bm0vh4o/couple-of-updates.html</link><author>noreply@blogger.com (Advalidation)</author><thr:total>0</thr:total><feedburner:origLink>http://blog.advalidation.com/2010/09/couple-of-updates.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6459784511154382334.post-3899192976426524293</guid><pubDate>Thu, 20 May 2010 09:50:00 +0000</pubDate><atom:updated>2010-06-03T03:03:26.522-07:00</atom:updated><title>Mouse over events and click testing</title><description>Hello!&lt;br /&gt;
&lt;br /&gt;
Some major updates this time.&lt;br /&gt;
&lt;br /&gt;
As you know we run all creatives in an environment similar to that of your users and monitor stuff like CPU usage and HTTP connections. &lt;br /&gt;
&lt;br /&gt;
With this update we also perform a mouse over event on the creative. This allows us to tell you about anything that happens when a user moves her mouse over an ad (playing sounds, loading files and who knows what).&lt;br /&gt;
&lt;br /&gt;
We also perform a click on the creative. While detecting clicktags through code analysis is good actually clicking the creative is better. By doing this we can verify that the clicktag actually works and make sure that the click is not blocked by a pop-up blocker.&lt;img src="http://feeds.feedburner.com/~r/advalidation/~4/GNH-maWYqtg" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/advalidation/~3/GNH-maWYqtg/mouse-over-events-and-click-testing.html</link><author>noreply@blogger.com (Advalidation)</author><thr:total>0</thr:total><feedburner:origLink>http://blog.advalidation.com/2010/05/mouse-over-events-and-click-testing.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6459784511154382334.post-7976125052667237606</guid><pubDate>Fri, 02 Apr 2010 09:47:00 +0000</pubDate><atom:updated>2010-06-03T02:49:59.765-07:00</atom:updated><title>Support for Action Script 3</title><description>There is now support for decompiling Action Script 3 in Advalidation. Pretty sweet!&lt;img src="http://feeds.feedburner.com/~r/advalidation/~4/EBmeObjHskA" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/advalidation/~3/EBmeObjHskA/support-for-action-script-3.html</link><author>noreply@blogger.com (Advalidation)</author><thr:total>0</thr:total><feedburner:origLink>http://blog.advalidation.com/2010/04/support-for-action-script-3.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6459784511154382334.post-7705513467047536887</guid><pubDate>Mon, 01 Mar 2010 10:44:00 +0000</pubDate><atom:updated>2010-06-03T02:46:53.455-07:00</atom:updated><title>Remove the clutter</title><description>We've added a setting under general settings that allow you to automatically delete old validation jobs. Select between 30, 60 or 90 days.&lt;img src="http://feeds.feedburner.com/~r/advalidation/~4/pim4laT4L9M" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/advalidation/~3/pim4laT4L9M/remove-clutter.html</link><author>noreply@blogger.com (Advalidation)</author><thr:total>0</thr:total><feedburner:origLink>http://blog.advalidation.com/2010/03/remove-clutter.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6459784511154382334.post-6716683306282601487</guid><pubDate>Tue, 09 Feb 2010 21:39:00 +0000</pubDate><atom:updated>2010-02-11T13:47:05.403-08:00</atom:updated><title>Support for images and other updates</title><description>Advalidation now supports jpeg, gif and png images so no matter what type of creative you throw at us you will know if it matches your specs or not.&lt;br /&gt;
&lt;br /&gt;
We also removed validation of clicktag's for third-party tags since you use click macros rather than clicktags to count clicks on third-party tags.&lt;img src="http://feeds.feedburner.com/~r/advalidation/~4/d7MtJXMlBnY" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/advalidation/~3/d7MtJXMlBnY/support-for-images-and-other-news.html</link><author>noreply@blogger.com (Advalidation)</author><thr:total>0</thr:total><feedburner:origLink>http://blog.advalidation.com/2010/02/support-for-images-and-other-news.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6459784511154382334.post-7171847710403415338</guid><pubDate>Sat, 23 Jan 2010 13:32:00 +0000</pubDate><atom:updated>2010-02-09T15:18:41.557-08:00</atom:updated><title>More updates</title><description>We just released a new version of Advalidation.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Time zones (sorry about not having that earlier)&lt;/li&gt;
&lt;li&gt;A progress bar showing the progress of the validation of each creative &lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;A bug when submitting small creatives &lt;br /&gt;
&lt;/li&gt;
&lt;li&gt;Added several third-party tag vendors (Adcentric, Bluestreak, Eyeturn, Eyewonder)&lt;/li&gt;
&lt;/ul&gt;We also made a short video showing how you can use the email functionality we released a couple of weeks ago.&amp;nbsp; &lt;a href="http://www.youtube.com/watch?v=BwTc2AVkkrY"&gt;Check it out here&lt;/a&gt;.&lt;img src="http://feeds.feedburner.com/~r/advalidation/~4/VkOik-RXVpw" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/advalidation/~3/VkOik-RXVpw/more-updates.html</link><author>noreply@blogger.com (Advalidation)</author><thr:total>0</thr:total><feedburner:origLink>http://blog.advalidation.com/2010/01/more-updates.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6459784511154382334.post-8075348105838688088</guid><pubDate>Sun, 10 Jan 2010 17:56:00 +0000</pubDate><atom:updated>2010-01-13T10:29:48.337-08:00</atom:updated><title>Some minor updates today</title><description>Today we updated the validator to be more robust. Creatives that causes IE to display the "A script is causing Internet Explorer to run slowly" dialog will be marked as corrupt. &lt;br /&gt;
&lt;br /&gt;
We also added support for Atlas third-party tags.&lt;img src="http://feeds.feedburner.com/~r/advalidation/~4/VMRSfuAWSSU" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/advalidation/~3/VMRSfuAWSSU/some-minor-updates-today.html</link><author>noreply@blogger.com (Advalidation)</author><thr:total>0</thr:total><feedburner:origLink>http://blog.advalidation.com/2010/01/some-minor-updates-today.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6459784511154382334.post-5925392438792101537</guid><pubDate>Mon, 30 Nov 2009 11:26:00 +0000</pubDate><atom:updated>2010-06-03T02:35:50.467-07:00</atom:updated><title>Better third-party tag support</title><description>We have made some improvements to the way we handle third-party tags.&lt;br /&gt;
&lt;br /&gt;
The new feature is called automatic third-party tag detection. What it does is that it allows you to post multiple tags in a text area and we will automatically find each individual tag and create a separate creative for it.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_rerVONdG5TI/SxOsCO3JYgI/AAAAAAAAABE/hUyVghOfXnc/s1600/Sk%C3%A4rmavbild+2009-11-26+kl.+22.27.47.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_rerVONdG5TI/SxOsCO3JYgI/AAAAAAAAABE/hUyVghOfXnc/s400/Sk%C3%A4rmavbild+2009-11-26+kl.+22.27.47.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This is a time saver if you get huge text documents with multiple tags for multiple dimensions and placements. With this new feature you simply copy the content of the document, paste it in to a text area and click submit. &lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_rerVONdG5TI/SxOsGbhps8I/AAAAAAAAABM/T3uD9W7qA0U/s1600/Sk%C3%A4rmavbild+2009-11-30+kl.+12.19.14.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_rerVONdG5TI/SxOsGbhps8I/AAAAAAAAABM/T3uD9W7qA0U/s400/Sk%C3%A4rmavbild+2009-11-30+kl.+12.19.14.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Pretty neat.&lt;img src="http://feeds.feedburner.com/~r/advalidation/~4/0IusJIL7G7E" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/advalidation/~3/0IusJIL7G7E/better-third-party-tag-support.html</link><author>noreply@blogger.com (Advalidation)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_rerVONdG5TI/SxOsCO3JYgI/AAAAAAAAABE/hUyVghOfXnc/s72-c/Sk%C3%A4rmavbild+2009-11-26+kl.+22.27.47.png" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://blog.advalidation.com/2009/11/better-third-party-tag-support.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6459784511154382334.post-1904740025528327360</guid><pubDate>Tue, 17 Nov 2009 16:31:00 +0000</pubDate><atom:updated>2010-06-03T02:36:10.082-07:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">display advertising</category><category domain="http://www.blogger.com/atom/ns#">flash</category><category domain="http://www.blogger.com/atom/ns#">cpu usage</category><category domain="http://www.blogger.com/atom/ns#">processing power</category><title>The problem with Flash ads and CPU usage</title><description>&lt;span lang="EN-US"&gt;In order to keep the file size of Flash ads as low as possible developers are increasingly turning to action script to generate animations. While this keeps the file size down it might increase the CPU usage on the computer displaying the ad. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;  &lt;br /&gt;
&lt;div class="MsoNormal"&gt;&lt;span lang="EN-US"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span lang="EN-US"&gt;Running one or several Flash ads that use a lot of processing power on the same page view will degrade the user experience significantly. &lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span lang="EN-US"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span lang="EN-US"&gt;To help detect these ads we have added monitoring of CPU usage in Advalidation. To get results that are as realistic as possible all creatives are tested in Internet Explorer 7 on virtual machines running Windows XP. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span lang="EN-US"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span lang="EN-US"&gt;Below is a screenshot&lt;/span&gt;&lt;span lang="EN-US"&gt; of how we display the CPU usage of Flash ads in Advalidation.  This ad clearly uses too much processing power and would slow down the web site significantly.&lt;/span&gt;&lt;br /&gt;
&lt;span lang="EN-US"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span lang="EN-US"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="MsoNormal" style="text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_rerVONdG5TI/SwLVAJ9N3rI/AAAAAAAAAAk/vAJNs6vbYhk/s1600/Sk%C3%A4rmavbild+2009-11-17+kl.+17.49.37.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5405116701447413426" src="http://2.bp.blogspot.com/_rerVONdG5TI/SwLVAJ9N3rI/AAAAAAAAAAk/vAJNs6vbYhk/s400/Sk%C3%A4rmavbild+2009-11-17+kl.+17.49.37.png" style="cursor: pointer; height: 174px; width: 400px;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;br /&gt;
&lt;span lang="EN-US"&gt;In your validation settings you can choose from three levels. Tolerant, moderate or strict.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_rerVONdG5TI/SwLVTwysSCI/AAAAAAAAAAs/aH_bJWpP0xU/s1600/Sk%C3%A4rmavbild+2009-11-17+kl.+17.48.28.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5405117038289766434" src="http://4.bp.blogspot.com/_rerVONdG5TI/SwLVTwysSCI/AAAAAAAAAAs/aH_bJWpP0xU/s400/Sk%C3%A4rmavbild+2009-11-17+kl.+17.48.28.png" style="cursor: pointer; height: 102px; width: 400px;" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="MsoNormal"&gt;&lt;span lang="EN-US"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/advalidation/~4/SZkbndX8D0U" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/advalidation/~3/SZkbndX8D0U/cpu-usage-and-flash-ads.html</link><author>noreply@blogger.com (Advalidation)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_rerVONdG5TI/SwLVAJ9N3rI/AAAAAAAAAAk/vAJNs6vbYhk/s72-c/Sk%C3%A4rmavbild+2009-11-17+kl.+17.49.37.png" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://blog.advalidation.com/2009/11/cpu-usage-and-flash-ads.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6459784511154382334.post-5895816336266216767</guid><pubDate>Tue, 17 Nov 2009 15:39:00 +0000</pubDate><atom:updated>2009-11-17T07:39:54.925-08:00</atom:updated><title>Getting there</title><description>Almost ready for some beta testing.&lt;img src="http://feeds.feedburner.com/~r/advalidation/~4/Us7U61Vx-50" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/advalidation/~3/Us7U61Vx-50/getting-there.html</link><author>noreply@blogger.com (Advalidation)</author><thr:total>0</thr:total><feedburner:origLink>http://blog.advalidation.com/2009/11/getting-there.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6459784511154382334.post-6629291011083415983</guid><pubDate>Mon, 16 Nov 2009 14:56:00 +0000</pubDate><atom:updated>2009-11-19T07:04:12.583-08:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">display advertising</category><category domain="http://www.blogger.com/atom/ns#">action script</category><category domain="http://www.blogger.com/atom/ns#">flash</category><category domain="http://www.blogger.com/atom/ns#">cpu usage</category><category domain="http://www.blogger.com/atom/ns#">processing power</category><title>15 ways of reducing CPU usage in Flash ads</title><description>The complexity of images, gradients, slow animations and detailed animated objects in Flash ads increase the number of calculations the users processor must perform for each frame. Here are 15 ways of reducing the CPU usage of your Flash ads.&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Use fewer animations based on mathematical calculations in Action Script&lt;/li&gt;
&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Remove unnecessary keyframes from the animation and use the Tween function instead of "frame-for-frame” animation.&lt;/li&gt;
&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Lower the frame rate, i.e. the number of frames per second.&lt;/li&gt;
&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Minimize the use of gradients, transparency, masks and animations.&lt;/li&gt;
&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Images used more than once in the movie should be transformed into symbols. Symbols are stored in the file once and used again later. It can reduce the file size and CPU usage.&lt;/li&gt;
&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Minimize the changes between each key frame.&lt;/li&gt;
&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Minimize the information stored in the first frames. Add complex logic later in the movie if possible.&lt;/li&gt;
&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Features that are activated by the user is preferred. For example: Start a complex animation on mouse over, not on load.&lt;/li&gt;
&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Avoid unnecessary timer functions and loops. This is the biggest problems in terms of CPU usage.&lt;/li&gt;
&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Solid lines require less memory than dotted / dashed lines or the brush tool.&lt;/li&gt;
&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Group objects and make calls to the group.&lt;/li&gt;
&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Minimize the number of fonts.&lt;/li&gt;
&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Use vector graphics instead of pixel graphics.&lt;/li&gt;
&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;Optimize vector graphics. Select Modify - Smooth, Straighten or Optimize to reduce the number of vector points.  &lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/advalidation/~4/dDkIaHuaGC4" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/advalidation/~3/dDkIaHuaGC4/15-ways-of-reducing-cpu-usage-in-flash.html</link><author>noreply@blogger.com (Advalidation)</author><thr:total>0</thr:total><feedburner:origLink>http://blog.advalidation.com/2009/11/15-ways-of-reducing-cpu-usage-in-flash.html</feedburner:origLink></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-6459784511154382334.post-6556649589448271734</guid><pubDate>Sun, 15 Nov 2009 12:17:00 +0000</pubDate><atom:updated>2010-02-02T07:08:16.451-08:00</atom:updated><title>A clicktag that actually works with ActionScript 3</title><description>if (root.loaderInfo.parameters["clickTAG"]) {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; var clickTAG:String =&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; root.loaderInfo.parameters["clickTAG"];&lt;br /&gt;
}&lt;br /&gt;
click_btn.addEventListener(MouseEvent.MOUSE_UP, getUrlfunction);&lt;br /&gt;
&lt;br /&gt;
function getUrlfunction(ev:Event = null): void {&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; ExternalInterface.call("window.open", clickTAG, "_blank");&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
click_btn is the name of the link button. You can change it into every name / label you want.&lt;br /&gt;
It is possible to embed the clickTAG via external files.&lt;br /&gt;
&lt;br /&gt;
Notes:&lt;br /&gt;
The command has been tested with Windows XP and various browsers: Internet Explorer 6 and 7: It works (it overrides the pop-up blocker). Firefox: It works (it overrides the pop-up blocker). Opera: The browser asks the user to open the pop-up window manually.&lt;img src="http://feeds.feedburner.com/~r/advalidation/~4/p00rWW0IK7A" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/advalidation/~3/p00rWW0IK7A/clicktag-that-actually-works-with.html</link><author>noreply@blogger.com (Advalidation)</author><thr:total>0</thr:total><feedburner:origLink>http://blog.advalidation.com/2009/12/clicktag-that-actually-works-with.html</feedburner:origLink></item></channel></rss>
