<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>TweenUI Knowledge base</title>
	<atom:link href="https://tweenui.com/knowledge-base/feed/" rel="self" type="application/rss+xml" />
	<link>https://tweenui.com/knowledge-base</link>
	<description></description>
	<lastBuildDate>Tue, 04 Sep 2018 10:23:21 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.0</generator>
	<item>
		<title>Setting clickthrough URL in a banner ad</title>
		<link>https://tweenui.com/knowledge-base/cloud-publishad-server/setting-clickthrough-url-in-a-published-banner-ad/</link>
		<comments>https://tweenui.com/knowledge-base/cloud-publishad-server/setting-clickthrough-url-in-a-published-banner-ad/#comments</comments>
		<pubDate>Mon, 03 Sep 2018 10:06:50 +0000</pubDate>
		<dc:creator><![CDATA[erik@tweenui.com]]></dc:creator>
				<category><![CDATA[Cloud Publish (Ad server)]]></category>

		<guid isPermaLink="false">http://tweenui.com/knowledge-base/?p=141</guid>
		<description><![CDATA[Managing clickthrough URLs are an important part of building your ad campaigns. In this article, we discuss the different configurations supported by TweenUI. The clickthrough URL is simply the URL that should be loaded when a user click on your banner ad. There are a few ways to specify and handle clickthrough URLs within TweenUI. [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Managing clickthrough URLs are an important part of building your ad campaigns. In this article, we discuss the different configurations supported by TweenUI.</p>
<p>The clickthrough URL is simply the URL that should be loaded when a user click on your banner ad. There are a few ways to specify and handle clickthrough URLs within TweenUI. The simplest option is to set the clickthrough URL directly inside the editor (under File->Settings) while you&#8217;re building your banner. This way, the URL will be a hard-coded part of the banner when you later publish it.</p>
<p>When you publish a banner ad you will get a short snippet of code called ad tags or the embed script. This is the code snippet your share with parties who should traffic your ad, and it looks similar to this:</p>
<p><code>&lt;script id="tui-spmn"&gt;<br />
(function(t){t.spmn={<br />
"cid":"46501524-b7b1-44ae-8342-9cdfcd0b9700",<br />
"pid":"d96e410a-eb8a-47e8-9501-8ee8cae84c17",<br />
"width":"500",<br />
"height":"90"<br />
}}(window.tweenui=window.tweenui||{}));&lt;/script&gt;<br />
&lt;script src="https://s3-eu-west-1.amazonaws.com/display.tweenui.com/s.js" async&gt;&lt;/script&gt;</code></p>
<p>Embedding the snippet above in a webpage results in:</p>
<p><script id="tui-yfhy"> 
(function(t){t.yfhy={ 
"cid":"46501524-b7b1-44ae-8342-9cdfcd0b9700",
"pid":"d96e410a-eb8a-47e8-9501-8ee8cae84c17", 
"width":"500", 
"height":"90" 
}}(window.tweenui=window.tweenui||{}));</script><br />
<script src="https://s3-eu-west-1.amazonaws.com/display.tweenui.com/s.js" async></script></p>
<p>In the example above, the URL &#8220;https://tweenui.com/this-url-was-hard-coded&#8221; was set as the clickthrough url in the ad editor under File->Settings. Many times however, more flexibility than that is needed. </p>
<p>You can configure the clickthrough URL directly in the ad tags by adding a new parameter called &#8220;link&#8221;. For instance, if you wanted the clickthrough URL for this banner ad to be http://tweenui.com/my-landing-page, this is how you would add the link parameter (don&#8217;t miss the trailing comma):</p>
<p><code>&lt;script id="tui-spmn"&gt;<br />
(function(t){t.spmn={<br />
<strong>"link":"http://tweenui.com/my-landing-page",</strong><br />
"cid":"46501524-b7b1-44ae-8342-9cdfcd0b9700",<br />
"pid":"d96e410a-eb8a-47e8-9501-8ee8cae84c17",<br />
"width":"500",<br />
"height":"90"<br />
}}(window.tweenui=window.tweenui||{}));&lt;/script&gt;<br />
&lt;script src="https://s3-eu-west-1.amazonaws.com/display.tweenui.com/s.js" async&gt;&lt;/script&gt;</code></p>
<p>The snippet above gives this result:</p>
<p><script id="tui-yfhz"> 
(function(t){t.yfhz={ 
"link":"http://tweenui.com/my-landing-page",
"cid":"46501524-b7b1-44ae-8342-9cdfcd0b9700",
"pid":"d96e410a-eb8a-47e8-9501-8ee8cae84c17", 
"width":"500", 
"height":"90" 
}}(window.tweenui=window.tweenui||{}));</script><br />
<script src="https://s3-eu-west-1.amazonaws.com/display.tweenui.com/s.js" async></script></p>
<p>You can also use the link parameter to insert click macros into the ad tags. Let&#8217;s say you have a publisher who has the following click macro: %%CLICK_URL%%. To support this macro, set the macro as the value of the link parameter in the ad tags:</p>
<p><code>&lt;script id="tui-spmn"&gt;<br />
(function(t){t.spmn={<br />
"link":"%%CLICK_URL%%",<br />
"cid":"46501524-b7b1-44ae-8342-9cdfcd0b9700",<br />
"pid":"d96e410a-eb8a-47e8-9501-8ee8cae84c17",<br />
"width":"500",<br />
"height":"90"<br />
}}(window.tweenui=window.tweenui||{}));&lt;/script&gt;<br />
&lt;script src="https://s3-eu-west-1.amazonaws.com/display.tweenui.com/s.js" async&gt;&lt;/script&gt;</code></p>
<p>Adding a link parameter to the ad tags will normally override any clickthrough URL that was hard coded in the banner. But some platforms use a slightly different setup and require that the final destination URL is provided by the banner and appended to the end of a clickthrough URL. For instance, some platforms will use a click macro to insert a clickthrough URL that may look similar to this:</p>
<p><code>http://ad-platform.com/banner-id/123/click?dest=</code></p>
<p>Here, it is required that the destination URL is appended at the end of the clickthrough URL. Adding a new parameter to the ad tags will help us with this use case.</p>
<p>This parameter is called append_ct and can only be used together with the link parameter. Adding the append_ct parameter will cause any originally hard coded clickthrough URL to be appended to the URL specified by the link parameter. This is how the ad tags will look:</p>
<p><code>&lt;script id="tui-spmn"&gt;<br />
(function(t){t.spmn={<br />
"link":"http://tweenui.com/banner/123/click-counter?dest=",<br />
<strong>"append_ct":1,</strong><br />
"cid":"46501524-b7b1-44ae-8342-9cdfcd0b9700",<br />
"pid":"d96e410a-eb8a-47e8-9501-8ee8cae84c17",<br />
"width":"500",<br />
"height":"90"<br />
}}(window.tweenui=window.tweenui||{}));&lt;/script&gt;<br />
&lt;script src="https://s3-eu-west-1.amazonaws.com/display.tweenui.com/s.js" async&gt;&lt;/script&gt;</code></p>
<p>And the result is below:</p>
<p><script id="tui-yfhq"> 
(function(t){t.yfhq={ 
"link":"http://tweenui.com/banner/123/click-counter?dest=",
"append_ct":1,
"cid":"46501524-b7b1-44ae-8342-9cdfcd0b9700",
"pid":"d96e410a-eb8a-47e8-9501-8ee8cae84c17", 
"width":"500", 
"height":"90" 
}}(window.tweenui=window.tweenui||{}));</script><br />
<script src="https://s3-eu-west-1.amazonaws.com/display.tweenui.com/s.js" async></script></p>
<p>The clickthrough URL set in the TweenUI editor &#8220;https://tweenui.com/this-url-was-hard-coded&#8221; is now appended to the end of the URL specified by the link parameter &#8220;http://tweenui.com/banner/123/click-counter?dest=&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>https://tweenui.com/knowledge-base/cloud-publishad-server/setting-clickthrough-url-in-a-published-banner-ad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating responsive banner ads</title>
		<link>https://tweenui.com/knowledge-base/publishing/creating-responsive-banner-ads/</link>
		<comments>https://tweenui.com/knowledge-base/publishing/creating-responsive-banner-ads/#comments</comments>
		<pubDate>Tue, 11 Oct 2016 15:42:16 +0000</pubDate>
		<dc:creator><![CDATA[erik@tweenui.com]]></dc:creator>
				<category><![CDATA[Publishing]]></category>

		<guid isPermaLink="false">http://tweenui.com/knowledge-base/?p=70</guid>
		<description><![CDATA[Frequently, you want to target multiple screen sizes and devices with the same banner ad, and you want the result to be great across all platforms. TweenUI can help you accomplish just that. Building responsive Html5 banner ads with TweenUI is easy. Start off by using our editor to create a banner ad and select [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Frequently, you want to target multiple screen sizes and devices with the same banner ad, and you want the result to be great across all platforms. TweenUI can help you accomplish just that. </p>
<p>Building responsive Html5 banner ads with TweenUI is easy. Start off by using our <a href="https://tweenui.com/animator/" target="_blank">editor</a> to create a banner ad and select &#8220;Download&#8221; or &#8220;Publish&#8221; from the File menu. If you selected &#8220;Download&#8221;, open the index.html file in a text editor and you will see the javascript code block used to display your banner. Here is an example of what it looks like:<br />
<code><br />
&lt;!-- TweenUI block start --&gt;<br />
&lt;script id="tui-xxlo"&gt;<br />
(function(t){t.xxlo={<br />
"file":"tweenui/banner.html",<br />
"width":"300",<br />
"height":"300"<br />
}}(window.tweenui=window.tweenui||{}));&lt;/script&gt;<br />
&lt;script src="tweenui/tui.js" async>&lt;/script&gt;<br />
&lt;!-- end --&gt;<br />
</code>These are the default settings and this code will produce a normal 300&#215;300 banner. If you used our Cloud Publish feature, the embed script will look slightly different, but the instructions in this article still applies.</p>
<p>To make this banner responsive, all you have to do is add the text in red below:<br />
<code><br />
&lt;!-- TweenUI block start --&gt;<br />
&lt;script id="tui-xxlo"&gt;<br />
(function(t){t.xxlo={<br />
"file":"tweenui/banner.html",<br />
"width":"300",<br />
"height":"300"<font color="red">,"scale":true</font><br />
}}(window.tweenui=window.tweenui||{}));&lt;/script&gt;<br />
&lt;script src="tweenui/tui.js" async>&lt;/script&gt;<br />
&lt;!-- end --&gt;<br />
</code>This means that your banner will now scale to fill 100% of the available width. The banner proportions will be kept so the height will be a function of the width. Below is a simple example, try resizing the browser window to see the results!</p>
<p><script id="tui-cn9h"> 
(function(t){t.cn9h={ 
"cid":"c2965e5e-097f-11e2-bb99-12313b052595",
"pid":"f02b693d-f411-41d8-94eb-4dd67f5c28f3", 
"width":"665", 
"height":"200","scale":true
}}(window.tweenui=window.tweenui||{}));</script><br />
<script src="https://s3-eu-west-1.amazonaws.com/display.tweenui.com/s.js" async></script></p>
<p>In a content management system like WordPress, this is most usually the behaviour we want. The banner will scale to the full width of the column.</p>
<p>Sometimes however, you may want to set the maximum width of a banner and not allow it to fill all the available space. You can do this by wrapping the banner in a div with a max-width css property. For instance, if you want the banner to be responsive but never wider than 450 pixels, this is the code you would use:<code><br />
&lt;div style="max-width:450px"&gt;<br />
&lt;!-- TweenUI block start --&gt;<br />
&lt;script id="tui-xxlo"&gt;<br />
(function(t){t.xxlo={<br />
"file":"tweenui/banner.html",<br />
"width":"300",<br />
"height":"300","scale":true<br />
}}(window.tweenui=window.tweenui||{}));&lt;/script&gt;<br />
&lt;script src="tweenui/tui.js" async>&lt;/script&gt;<br />
&lt;!-- end --&gt;<br />
&lt;/div&gt;<br />
</code></p>
<p>And here is the result. Again, resize the browser window to see the effect.</p>
<div style="max-width: 450px;">
<script id="tui-an9h">
(function(t){t.an9h={
"cid":"c2965e5e-097f-11e2-bb99-12313b052595",
"pid":"f02b693d-f411-41d8-94eb-4dd67f5c28f3", 
"width":"665",
"height":"200","scale":true
}}(window.tweenui=window.tweenui||{}));</script><br />
<script src="https://s3-eu-west-1.amazonaws.com/display.tweenui.com/s.js" async></script>
</div>
]]></content:encoded>
			<wfw:commentRss>https://tweenui.com/knowledge-base/publishing/creating-responsive-banner-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The basics of animating with TweenUI</title>
		<link>https://tweenui.com/knowledge-base/animation/how-to-build-html5-animations-with-tweenui/</link>
		<comments>https://tweenui.com/knowledge-base/animation/how-to-build-html5-animations-with-tweenui/#comments</comments>
		<pubDate>Mon, 22 Aug 2016 14:37:28 +0000</pubDate>
		<dc:creator><![CDATA[erik@tweenui.com]]></dc:creator>
				<category><![CDATA[Animation]]></category>

		<guid isPermaLink="false">http://tweenui.com/knowledge-base/?p=67</guid>
		<description><![CDATA[Watch this video to learn the basics on how to animate with TweenUI.]]></description>
				<content:encoded><![CDATA[<p>Watch this video to learn the basics on how to animate with TweenUI.</p>
<p><iframe width="980" height="410" src="https://www.youtube.com/embed/ZWhYGdElAgQ?rel=0&#038;showinfo=0" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>https://tweenui.com/knowledge-base/animation/how-to-build-html5-animations-with-tweenui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting started with text and images</title>
		<link>https://tweenui.com/knowledge-base/general/getting-started-with-text-and-images/</link>
		<comments>https://tweenui.com/knowledge-base/general/getting-started-with-text-and-images/#comments</comments>
		<pubDate>Mon, 22 Aug 2016 14:19:33 +0000</pubDate>
		<dc:creator><![CDATA[erik@tweenui.com]]></dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://tweenui.com/knowledge-base/?p=53</guid>
		<description><![CDATA[In the following video, you will learn how to get started with text and image layers in the Html5 Ad Builder.]]></description>
				<content:encoded><![CDATA[<p>In the following video, you will learn how to get started with text and image layers in the Html5 Ad Builder. </p>
<p><iframe width="980" height="410" src="https://www.youtube.com/embed/9E9Gv6aNHTg?rel=0&#038;showinfo=0" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>https://tweenui.com/knowledge-base/general/getting-started-with-text-and-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Uploading a HTML5 banner created with TweenUI into DoubleClick</title>
		<link>https://tweenui.com/knowledge-base/publishing/uploading-html5-banner-zip-into-doubleclick/</link>
		<comments>https://tweenui.com/knowledge-base/publishing/uploading-html5-banner-zip-into-doubleclick/#comments</comments>
		<pubDate>Fri, 08 Apr 2016 12:40:11 +0000</pubDate>
		<dc:creator><![CDATA[erik@tweenui.com]]></dc:creator>
				<category><![CDATA[Publishing]]></category>

		<guid isPermaLink="false">http://tweenui.com/knowledge-base/?p=20</guid>
		<description><![CDATA[Instructions for DoubleClick Campaign Manager (DCM): TweenUI supports exporting zip files compatible with DCM. To upload your banner into DoubleClick Campaign Manager, simply follow these instructions: 1. In TweenUI, first click File -> Download for DoubleClick. A zip file containing all of your banner assets will be downloaded to your computer. 2. Login to your [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><strong>Instructions for DoubleClick Campaign Manager (DCM):</strong><br />
TweenUI supports exporting zip files compatible with DCM. To upload your banner into DoubleClick Campaign Manager, simply follow these instructions:</p>
<p>1. In TweenUI, first click File -> Download for DoubleClick. A zip file containing all of your banner assets will be downloaded to your computer.<br />
2. Login to your DCM account and in your campaign, click New > HTML5 banner. This can also be done on your advertiser-level Creatives tab.<br />
3. Under Creative assets, click Add asset.<br />
4. Select the .zip file that you downloaded from TweenUI in the first step.</p>
<p>You can find more information on how to upload HTML5 creatives into DCM in this Google support article: <a href="https://support.google.com/richmedia/answer/6279666" target="_blank">DCM HTML5 banner setup</a>.</p>
<p><strong>Instructions for DoubleClick for Publishers (DFP):</strong><br />
You can easily upload an HTML5 banner ad created with TweenUI into DoubleClick for Publishers (DFP). Just follow this step by step guide:</p>
<p>1. In TweenUI, first click File -> Download for DoubleClick. A zip file containing all of your banner assets will be downloaded to your computer.<br />
2. Now, login to your DFP account and select the Delivery tab.<br />
3. Click on Creatives in the left panel and click Add creatives.<br />
4. Select the advertiser whose creative you&#8217;re adding and click &#8220;Continue&#8221;.<br />
5. Select HTML5 from the list of creative types. Enter a name and click &#8220;Choose file&#8221; to upload the zip file that you downloaded from TweenUI in the first step.</p>
<p>If you have not added a click through URL in TweenUI (File -> Settings), you will now see a message asking you to fill out the clickTag variable. Enter the URL of your landing page.</p>
<p>You can find more information on how to upload HTML5 creatives into DFP in this Google support article: <a href="https://support.google.com/dfp_premium/answer/6396279" target="_blank">Traffic HTML5 creatives</a>.</p>
<p>There&#8217;s also more general information about HTML5 and DFP in this article: <a href="https://support.google.com/dfp_premium/topic/7041998" title="here" target="_blank">HTML5 and DFP</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://tweenui.com/knowledge-base/publishing/uploading-html5-banner-zip-into-doubleclick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to upload HTML5 banner ads into Google Adwords™</title>
		<link>https://tweenui.com/knowledge-base/publishing/how-to-export-html5-banner-ads-for-google-adwords/</link>
		<comments>https://tweenui.com/knowledge-base/publishing/how-to-export-html5-banner-ads-for-google-adwords/#comments</comments>
		<pubDate>Fri, 11 Dec 2015 14:17:55 +0000</pubDate>
		<dc:creator><![CDATA[erik@tweenui.com]]></dc:creator>
				<category><![CDATA[Publishing]]></category>

		<guid isPermaLink="false">http://tweenui.com/knowledge-base/?p=10</guid>
		<description><![CDATA[HTML5 banner ads created with TweenUI are compatible with Google AdWords™. You can either connect your AdWords account and publish directly into your AdWords campaign, or you can download you banner as a zip file which can be imported into AdWords. To upload directly into AdWords, press &#8220;Publish to AdWords&#8221; from the File menu. Then [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>HTML5 banner ads created with TweenUI are compatible with Google AdWords™.</p>
<p>You can either connect your AdWords account and publish directly into your AdWords campaign, or you can download you banner as a zip file which can be imported into AdWords. </p>
<p>To upload directly into AdWords, press &#8220;Publish to AdWords&#8221; from the File menu. Then press the &#8220;Connect AdWords account&#8221; button, sign in with your Google AdWords account and press allow to grant TweenUI the necessary permissions. You can revoke the permissions at any time by reviewing <a href="https://security.google.com/settings/security/permissions?pli=1" title="connected apps" target="_blank">connected apps</a> in your Google account.</p>
<p>Next, select the campaign and ad group that you want to use, and fill out the display URL and landing page. You can use the refresh button if you&#8217;ve added or removed any campaigns. Press &#8220;Publish to AdWords&#8221;, and your banner will be available under the Ads tab in your AdWords account.</p>
<p>If you don&#8217;t want to connect your AdWords account, use the &#8220;Download for AdWords&#8221; option in the File menu. A zip file will be generated and downloaded to your computer.</p>
<p>To upload the file into Google AdWords™, login to AdWords and select an Ad group in your Adwords Google Display Network campaign. Create a new Image Ad and choose the upload option. Drag and drop or browse to the zip file that you downloaded from TweenUI.</p>
<p>You should now be able to see a preview of the ad.</p>
<p>You don&#8217;t have to set any click-through URL in TweenUI. The landing page (Final URL) and tracking is configured in AdWords.</p>
<p>Here&#8217;s a video that shows both options:</p>
<p><iframe width="980" height="551" src="https://www.youtube.com/embed/BOtU7X78kik?rel=0&#038;showinfo=0" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>https://tweenui.com/knowledge-base/publishing/how-to-export-html5-banner-ads-for-google-adwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.w3-edge.com/products/

Object Caching 0/80 objects using disk
Page Caching using disk: enhanced (Page is feed) 

Served from: tweenui.com @ 2026-04-13 14:38:41 by W3 Total Cache
-->