<?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>Eyes &#38; Ears Entertainment</title>
	<atom:link href="http://www.eyesandearsentertainment.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.eyesandearsentertainment.com</link>
	<description>A Topspin Certified Digital Marketing + Promotions Agency. We Focus On The Music Industry, Among Other Things.</description>
	<lastBuildDate>Mon, 31 Oct 2011 04:58:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How To Create a Topspin HTML Email For Media Widget</title>
		<link>http://www.eyesandearsentertainment.com/blog/how-to-create-a-topspin-html-email-for-media-widget/</link>
		<comments>http://www.eyesandearsentertainment.com/blog/how-to-create-a-topspin-html-email-for-media-widget/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 08:14:11 +0000</pubDate>
		<dc:creator>Austin Mayer</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[CSS3]]></category>
		<category><![CDATA[E4M]]></category>
		<category><![CDATA[Email For Media]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML5 Form]]></category>
		<category><![CDATA[jQuery Form]]></category>
		<category><![CDATA[Topspin]]></category>

		<guid isPermaLink="false">http://www.eyesandearsentertainment.com/?p=784</guid>
		<description><![CDATA[It&#8217;s no secret we love working with the Topspin platform. The range of tools the platform supplies is quite adept at handling pretty much any digital marketing requirement you can throw at it. After all, any good digital marketing theme would be remiss without a solid technical foundation. Topping the list of the most accessible [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s no secret we love working with the Topspin platform. The range of tools the platform supplies is quite adept at handling pretty much any digital marketing requirement you can throw at it. After all, any good digital marketing theme would be remiss without a solid technical foundation. </p>
<p>Topping the list of the most accessible (and crucial) Topspin widgets is the Email For Media widget. In short, it enables fans to enter their email address and receive a piece of digital content all in a simple workflow. As great as this widget is (we use it in pretty much every campaign we run) it has a few shortcomings. Namely in the looks and cross platform / device rendering. And it&#8217;s in Flash.</p>
<p>In this post I&#8217;m going to show you how to take a stock Topspin E4M and turn it into a completely custom HTML5, jQuery powered beast that can render on anything from your desktop computer to your iPhone. Let&#8217;s get started!</p>
<h1>Why use an HTML E4M?</h1>
<ul>
<li>You want complete control over the styling</li>
<li>You want the same look and feel across all platforms</li>
<li>Custom yet still interfaces with Topspin</li>
</ul>
<h1>The Code</h1>
<p>The basic components that make up our HTML E4M:<br />
1. HTML Form<br />
2. <a href="http://jquery.malsup.com/form/" target="_blank">jQuery.form.js</a><br />
3. A little bit of Javascript</p>
<p><strong>**Note that you still need to create an E4M in your Topspin account. You&#8217;ll need specific data to plug in to the form below.</strong></p>
<p>Here is the HTML form. You&#8217;ll notice that we&#8217;re going to be passing some hidden inputs with this form, so if you want a more in depth understanding of them or would like to change or add inputs, head over to the <a href="https://docs.topspin.net/tiki-index.php?page=Email+For+Media+REST+API" target="_blank">Topspin E4M REST API documentation</a> and check it out.</p>
<div class="wp_syntax">
<div class="code">
<pre class="html" style="font-family:Monaco,Courier,MonoSpace;">&lt;form id=&quot;signup&quot; action=&quot;http://app.topspin.net/api/v1/fan/create_fan&quot; method=&quot;get&quot; &gt;
	&lt;input id=&quot;email&quot;  name=&quot;fan[email]&quot; type=&quot;email&quot; value=&quot;Enter Your Email Address&quot; placeholder=&quot;Enter Your Email Address&quot; class=&quot;erase&quot; /&gt;
	&lt;input id=&quot;submit&quot; name=&quot;submit&quot; type=&quot;submit&quot; value=&quot;Get It Now&quot;  /&gt;
	&lt;input name=&quot;artist_id&quot; value=&quot;YOUR ARTIST ID HERE&quot; id=&quot;artist_id&quot; type=&quot;hidden&quot;&gt;
&nbsp;
	&lt;input name=&quot;fan[source_campaign]&quot; value=&quot;YOUR CAMPAIGN ID URL HERE&quot; id=&quot;source_campaign&quot; type=&quot;hidden&quot;&gt;
	&lt;input name=&quot;fan[referring_url]&quot; value=&quot;YOUR REFERRING URL HERE&quot; id=&quot;referring_url&quot; type=&quot;hidden&quot;&gt;
	&lt;input name=&quot;fan[confirmation_target]&quot; value=&quot;http://www.topspindownloads.com/confirm/&quot; id=&quot;confirmation_target&quot; type=&quot;hidden&quot;&gt;
&lt;/form&gt;</pre>
</div>
</div>
<p>Be sure to replace <strong>artist_id</strong>, <strong>fan[source_campaign]</strong> and <strong>fan[referring_url]</strong> with your own. You can grab all of this from the embed code that Topspin spits out when creating an Email For Media Widget. Find the CAMPAIGN ID URL by doing the following:</p>
<p>1. Find the <strong>widget_id=&#8221;"</strong> url in your embed code<br />
2. Paste that into a browser<br />
3. Find the url inside the &lt;campaign&gt; tag (ex. http://app.topspin.net/api/v1/artist/8081/campaign/10158210) </p>
<p>Next, include jQuery and the jQuery Form Plugin external script files and a short script to initialize the form when the page loads:</p>
<div class="wp_syntax">
<div class="code">
<pre class="html" style="font-family:Monaco,Courier,MonoSpace;">&lt;html&gt;
&lt;head&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;jquery.js&quot;&gt;&lt;/script&gt;
    &lt;script type=&quot;text/javascript&quot; src=&quot;jquery.form.js&quot;&gt;&lt;/script&gt;
&nbsp;
    &lt;script type=&quot;text/javascript&quot;&gt;
    $(document).ready(function() {
	    $('input.erase').each(function() {
	  	    $(this)
		  	    .data('default', $(this).val())
			    .addClass('inactive')
			    .focus(function() {
				    $(this).removeClass('inactive');
				    if ($(this).val() == $(this).data('default') || '') {
					    $(this).val('');
				    }
			    })
			    .blur(function() {
				    var default_val = $(this).data('default');
				    if ($(this).val() == '') {
					    $(this).addClass('inactive');
					    $(this).val($(this).data('default'));
				    }
			    });
		    });
&nbsp;
	    $('#signup').submit(function() {
		    $(this).ajaxSubmit();
		    $('#email').val('Thanks, Check Your Inbox!');
		    return false;
	    });
    });
    &lt;/script&gt;
&lt;/head&gt;
...</pre>
</div>
</div>
<p>When the form is submitted the email will get posted to Topspin. If the server returns a success status then the user will see a <strong>&#8220;Thanks, Check Your Inbox!&#8221;</strong> message within the text input field given the use of the Javascript above.</p>
<h1>That&#8217;s It</h1>
<p>Feel free to use this code wherever you please. All that&#8217;s left to do is style it up with some CSS. Check out a few CSS3 form tutorials <a href="http://www.devlounge.net/code/html5-forms-styled-with-css3" target="_blank">here</a>.</p>
<h1>In The Wild</h1>
<p><a href="http://www.theasteroidsgalaxytour.com" target="_blank">www.theasteroidsgalaxytour.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.eyesandearsentertainment.com/blog/how-to-create-a-topspin-html-email-for-media-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Awareness vs. Data</title>
		<link>http://www.eyesandearsentertainment.com/blog/awareness-vs-data/</link>
		<comments>http://www.eyesandearsentertainment.com/blog/awareness-vs-data/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 20:42:44 +0000</pubDate>
		<dc:creator>Brian Schopfel</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.eyesandearsentertainment.com/?p=769</guid>
		<description><![CDATA[There is always the argument over which is better for an emerging artist: acquiring data or increasing awareness. Obviously, in some cases those go hand-in-hand, but for certain genres and artists, one outweighs the other for sure. After the jump is the splash page we designed for the Penguin Prison campaign. For those of you [...]]]></description>
			<content:encoded><![CDATA[<p>There is always the argument over which is better for an emerging artist: acquiring data or increasing awareness. Obviously, in some cases those go hand-in-hand, but for certain genres and artists, one outweighs the other for sure. After the jump is the splash page we designed for the Penguin Prison campaign. For those of you who don&#8217;t know, Penguin Prison is an emerging artist, (quickly!) gaining popularity, and is putting out his debut full-length on Downtown Records in October. Using jQuery we allowed fans to draw the Penguin Prison crest in order to reveal a remix of his new single &#8216;Fair Warning&#8217; (Dirty Vegas remix). Under that, as a secondary call-to-action, fans could also enter their email address for a remix package of the track Multi-Millionaire. Read more below the image.</p>
<p style="text-align: center;"><a href="http://www.penguinprison.com"><img class="aligncenter size-full wp-image-772" title="Penguin Prison jQuery Fancy Gesture" src="http://www.eyesandearsentertainment.com/wp-content/uploads/2011/08/Picture-661.png" alt="Penguin Prison jQuery Fancy Gesture" width="530" height="705" /></a></p>
<p>Now for this campaign, we opted to go the route of increasing awareness at the risk of acquiring a bit less data. Here&#8217;s why:</p>
<p>Genre &#8211; Penguin Prison&#8217;s tunes are in the pop/electronic/funk genre, and there have been a lot of remixes generated surrounding the original songs already released. Fans of this genre, for an emerging artists, typically will not enter their email addresses, and blogs will typically not post Email for Media widgets for a remix, of an emerging artist, unless the remixer is a real heavyweight. The market is clouded with horrible bands in this genre (Penguin Prison NOT being one of them), thus making the fan wary of providing an email address for content.</p>
<p>Breadth of Content - Lots of these remixes were available on his Soundcloud. Some were available on Facebook. Some were available on his website. You get the picture. We needed to streamline how fans got content when they were on the website, and there was a good chance they had already downloaded a lot of other content from a bunch of different points online. Entering an email address would be tedious, especially for remix content that they would probably be able to get somewhere else online within the next week or so.</p>
<p>Enjoyable Discovery &#8211; It would have been a completely different story if we just had hosted a download link that fans could click and download content, but we developed a way to increase and refine brand recognition (Penguin Prison crest of arms), and provide fans with content in a fun manner with a low barrier to entry. This makes fans more like to enter an email address after they&#8217;ve already spent that much time interacting with the artist and their content.</p>
<p>Had we run a &#8216;traditional&#8217; Email for Media campaign, I project we would have acquired less emails than we ended up getting, simply from the points listed above.</p>
<p>That said, this campaign has provided great results, been a blast to work on, and Penguin Prison&#8217;s new record is going to fuck your day up (in a best way) when it comes out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eyesandearsentertainment.com/blog/awareness-vs-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>E&amp;E 3.0</title>
		<link>http://www.eyesandearsentertainment.com/blog/ee-3-0/</link>
		<comments>http://www.eyesandearsentertainment.com/blog/ee-3-0/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 21:57:30 +0000</pubDate>
		<dc:creator>Austin Mayer</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://www.eyesandearsentertainment.com/?p=741</guid>
		<description><![CDATA[We have a new website! After nearly year without so much as an update (sorry, we got busy!) E&#38;E is proud to present the third iteration of our website! E&#38;E 3.0 Once again based around the kickass WordPress platform, the latest version of the E&#38;E website finally showcases our work and makes it easy (we [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.eyesandearsentertainment.com/wp-content/uploads/2011/08/eande_site_v3.jpg" alt="" title="eande_site_v3" width="580" height="831" class="alignnone size-full wp-image-746" /></p>
<h3>We have a new website!</h3>
<p>After nearly year without so much as an update (sorry, we got busy!) E&amp;E is proud to present the third iteration of our website!</p>
<h3>E&amp;E 3.0</h3>
<p>Once again based around the kickass WordPress platform, the latest version of the E&amp;E website finally showcases our work and makes it easy (we hope so at least) to figure out what it is that we do. What we&#8217;re most excited about is the project tagging system. Want to see what we did D2C Marketing for? Just click the D2C button in <a href="http://www.eyesandearsentertainment.com/projects/" target="_blank">Our Work</a> and watch as the different projects automagically reorder to only display the associated tag.</p>
<h3>What we&#8217;ve been up to</h3>
<p>So what have we been up to lately aside from not finishing our own website? Well quite a bit it turns out. The past year has seen us starting to work with some amazing clients in the music industry. Namely, designs for <a href="http://www.paulmccartney.com/bandontherun" target="_blank">Paul McCartney</a>, <a href="http://www.tvontheradio.com/preorder" target="_blank">TV On The Radio</a>, <a href="http://sites.eandeclients.com/ladygaga/" target="_blank">Lady Gaga</a>, <a href="http://www.whatsgoingon40.com/" target="_blank">Marvin Gaye</a> &amp; full on D2C Digital Marketing for O.A.R., <a href="http://www.pajamaclubmusic.com/" target="_blank">Pajama Club</a>, <a href="http://www.asteroidsgalaxyyour.com/" target="_blank">The Asteroids Galaxy Tour</a> &amp; so much more. Make sure you check out <a href="http://www.eyesandearsentertainment.com/projects/" target="_blank">Our Work</a> to see everything we&#8217;ve been doing.</p>
<p>As many of you may (or may not) know, Brian and I started E&amp;E a little under two years ago with the goal of providing reliable and awesome artist services for the music industry. Largely created to serve a creative marketing and music discovery need, we gradually ended up folding in creative design and development into our offerings. It&#8217;s pretty crazy to realize how far we&#8217;ve come as a company in such a short time. To think that a year and a half ago we had a handful of projects and were sitting at Brian&#8217;s kitchen table negotiating client contracts and taking conference calls in his living room.  We now have our own office space over in the Bucktown neighborhood of Chicago and have over 50 client projects on display right now! Wow.</p>
<p>We&#8217;d like to thank all of our clients thus far and everyone who has helped out along the way. Without you guys E&amp;E would not be here today and we would not have a new kickass website to show you. We are super excited for what the future has in store and can&#8217;t wait to show you!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eyesandearsentertainment.com/blog/ee-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.824 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-05 13:31:45 -->

