<?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>Enlighten</title>
	<atom:link href="http://www.enlighten.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.enlighten.com</link>
	<description>Integrated Digital Marketing Agency</description>
	<lastBuildDate>Wed, 16 May 2012 04:45:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>The Legend of Real-World, Cross-Browser, Cross-Device Composited Animation</title>
		<link>http://www.enlighten.com/2012/05/the-legend-of-real-world-cross-browser-cross-device-composited-animation/</link>
		<comments>http://www.enlighten.com/2012/05/the-legend-of-real-world-cross-browser-cross-device-composited-animation/#comments</comments>
		<pubDate>Tue, 15 May 2012 20:02:03 +0000</pubDate>
		<dc:creator>nsafi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.enlighten.com/?p=1430</guid>
		<description><![CDATA[We here in the basement of Enlighten’s engineering labs were recently tasked with a unique challenge: to create an engaging animation composited from a user’s &#8230;]]></description>
			<content:encoded><![CDATA[<p>We here in the basement of Enlighten’s engineering labs were recently tasked with a unique challenge: to create an engaging animation composited from a user’s Facebook photos—on a cross-browser, cross-device basis. The fine print of this challenge also included the following requirements:</p>
<ul>
<li> Don’t make the user wait around – playback should feel almost instantaneous.</li>
<li> Target the fastest, smoothest performance possible across desktop/laptop, tablets and other mobile devices.</li>
<li> Stick to a single code base as much as possible, to streamline maintenance.</li>
<li> Support some ancient browsers.</li>
<li> Launch it <em>really, really</em> soon.</li>
</ul>
<p>I know what you’re thinking: such solutions only exist in two places:</p>
<ol>
<li>In the wildest dreams of implementation engineers</li>
<li>In pitch meetings that the tech lead was “invited to, I swear – I don’t know what happened. It must be something with Outlook. Anyway, I <em>know</em> this is an aggressive schedule….”</li>
</ol>
<p>Naturally, we sized up the challenge before us, didn’t complain at all, and dove right in – and I’m here to tell you that we found the solution. And by “found” I mean: we kind of saw it once, walking through a clearing, and then it ran away:</p>
<p><iframe width="550" height="413" src="http://www.youtube.com/embed/IJjUt2sXo5o?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>Much like the guy who shot the above film (<a href="http://en.wikipedia.org/wiki/Patterson-Gimlin_film" target="_blank">Roger Patterson</a>, in case you’re wondering), I will happily tell you all about the hunt – and not just because I can see that you want to read several pages worth of sardonically documented engineering decisions. <em>NAY</em>, I will tell you… <em>out of necessity</em>.</p>
<p>You see, I have one final bigfoot metaphor prepared: While we’ve come out the other side of this experience with the memories of what we saw, we are unfortunately left with a complete lack of physical evidence. We’d love to point you to the site so that you could inspect the result, but we’re in one of those <a href="http://en.wikipedia.org/wiki/John_Hughes_(filmmaker)" target="_blank">John Hughes-ian</a>, “Yes, we’re dating but you can’t tell anyone we’re dating” situations. All we have to show for our adventure are a bunch of metaphorical plaster casts of oversized tracks.</p>
<p>But you believe me, right?<br />
<br />&nbsp;</p>
<p><strong>Instantaneous, composited animation</strong></p>
<p>Ok, so let’s take this one step at a time. Requirement one: After a user authenticates via Facebook connect, we need to pull images from her account and instantaneously display them composited into an animation of some sort.</p>
<p>Serving up a rendered video file would certainly simplify delivery across all of our targets – mobile-accessible video delivery is something we do on nearly every project – but the “instantaneous” requirement means that we’re not going to be able to take the user’s photos and render them into unique video files on the server.</p>
<p>Fair enough. If we’re not serving up a video file, we’re talking about some sort of animation, and there are actually several options:</p>
<ul>
<li>Flash</li>
<li>HTML5 Canvas element</li>
<li>Manipulating standard DOM elements with JavaScript</li>
<li>CSS3 Animation</li>
</ul>
<p>For this project, Flash was off the table. We wanted to avoid using it in order to preserve iOS compatibility. Based on the schedule and the wide range of target platforms, we had a pretty strong feeling we’d be using some flavor of HTML5 or CSS3.</p>
<p>We created a series of test pages, each using one of the remaining methods listed above to perform the background animation for the final piece. Using these as a basis for comparison, we attempted to gauge performance across a wide range of our targets.</p>
<p>It immediately became clear that CSS3 animations were the best option for iOS (and that standard DOM manipulation was the worst). But the “single code base” requirement drove us toward selecting the HTML5 Canvas element, as it offered the most consistent performance across the widest range of our targets.<br />
<br />&nbsp;</p>
<p><strong>Browser support</strong></p>
<p>Ok, cool, so we’re going with <a href="http://en.wikipedia.org/wiki/Canvas_element" target="_blank">Canvas</a>. Hm? Oh, right, browser support! Our first hurdle! This project needed to adhere to our existing matrix of supported browsers, which included the latest version of all webkit browsers (as well as FF3.6 for folks who love ignoring update messages), and Internet Explorer all the way back through IE7 (mercifully, IE6 was recently dropped). This list didn’t mesh with the Canvas-based solution we arrived at, as neither Internet Explorer 7 or 8 support the HTML5 Canvas element.</p>
<p>Enter: <a href="http://flashcanvas.net/" target="_blank">FlashCanvas</a>.</p>
<p><img src="http://www.enlighten.com/wp-content/uploads/2012/05/title.png" alt="" title="FlashCanvas" width="280" height="48" class="size-full alignLeft" style="float: none;" /></p>
<p>FlashCanvas is a library that uses a SWF file and a whole mess of JavaScript to impersonate the HTML5 Canvas element within Microsoft Internet Explorer. It renders shapes and images via the Flash drawing API, supports almost all Canvas methods, and in many cases, runs faster than similar libraries which use VML or Silverlight.</p>
<p>What this meant was we were able to write the code to animate something using the HTML5 Canvas element, and then use that same code to control the animation in Internet Explorer 8 and older, where the Canvas element technically doesn’t exist.</p>
<p><em>Hooray!</em> A single codebase, IE 7 and 8 supported! But not so fast, as there are a couple of caveats to using FlashCanvas as a fallback:</p>
<ul>
<li>Since FlashCanvas displays things using Flash, all the fun cross-domain restrictions apply, so if you plan on pulling in images or files from other sources (as we pulled images from Facebook), you’ll need to set up a proxy page. The installation comes with a PHP proxy, but if you’re on a different platform, you’ll need to write your own.</li>
<li> Custom font rendering isn’t built into the current release. If you dig around on the message boards, you’ll find works-in-progress that support this, but we found them to have a few issues. We ended up only using standard fonts when displaying using FlashCanvas.</li>
<li>Our particular animation was extremely image-intensive. Through trial and error over the course of the project, we discovered that a number of hiccups and visual artifacts we were seeing were caused by the first very frame of drawing a new image to the screen. We ended up drawing all images used throughout the entire course of the animation frame in every frame. If a particular image wasn’t used in the current frame, it was drawn just offscreen. All the visual defects went away. Your mileage may vary.</li>
</ul>
<p>&nbsp;</p>
<p><strong>The right tool for the job?</strong></p>
<p>At this point, we had internally arrived at a creative direction involving a background and several foreground layers scrolling horizontally in parallax. Our next step was to begin to prove this concept out using some of the leading “HTML5 Animation” tools. We created proofs of concept using each of the following:</p>
<ul>
<li><a href="http://labs.adobe.com/technologies/edge/" target="_blank">Adobe Edge</a></li>
<li><a href="http://tumultco.com/hype/" target="_blank">Tumult Hype</a></li>
<li><a href="http://www.sencha.com/products/animator/" target="_blank">Sencha Animator</a></li>
</ul>
<p>At some level, <em>all</em> of these tools are GUIs that generate JavaScript to manipulate a Canvas element or other DOM elements. As a baseline, we also hand-coded an additional proof of concept. Based on our experiments, <em>none</em> of the high-level tools was producing code that performed acceptably on a cross-browser, cross-device basis (case in point: even the example projects that Adobe offers for Edge don’t work in IE9). Some were close, but, in the end, all of the experiments had at least one outstanding defect that disqualified it.</p>
<p>Meanwhile, our hand-coded native JavaScript POC was churning right along. So our decision was made. We were going to hand-code/animate everything! <em>Quickly!</em><br />
<br />&nbsp;</p>
<p><strong>Why does it keep doing that thing?</strong></p>
<p>Alright, let’s talk about animating in hand-coded Javascript!</p>
<p>Still reading? Ok, all the cool kids are <em>definitely</em> gone, we can relax.</p>
<p>The intricacies of timing animation frames in JavaScript are many, but, for the most part, they all boil down to optimizing the execution and the method of calling your frame function (helpful googling terms: “Game Loop” or “Tick Function,” depending on context).</p>
<p>In olden times, the setInterval function was used to repeatedly generate frames for an animation, but performance considerations could sabotage this method, making the resultant framerate vary wildly.</p>
<p>requestAnimationFrame is a newer API that specifically seeks to address JavaScript animation at a constant framerate. Unfortunately, cross-browser support is still a bit shaky. There were requestAnimationFrame polyfills evolving as we were coding, and we tried to keep up with them and test them against our codebase as we went.</p>
<p>Unfortunately, we were seeing collisions and “weirdness” that may or may not have been caused by requestAnimationFrame (Since the problems went away when we reverted away from it, it got the blame). Eventually the timeline won out and we stuck with that old standby setInterval to run the animation loop. Given more time, we’d definitely revisit this decision.</p>
<p>Since finishing this project, we’ve seen lots of discussion around the idea of javascript animation and framerate. Some good links to dig into:</p>
<ul>
<li><a href="http://blog.joelambert.co.uk/2011/06/01/a-better-settimeoutsetinterval/" target="_blank">Joe Lambert’s post</a> on the beginnings of these matters.</li>
<li><a href="http://paulirish.com/2011/requestanimationframe-for-smart-animating/" target="_blank">JavaScript Guru Paul Irish’s</a> early take on the matter, updated in January 2012 as the polyfill began to evolve.</li>
<li><a href="http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating" target="_blank">Erik Möller’s post</a> on the polyfill.</li>
</ul>
<p>&nbsp;</p>
<p><strong>Until next time?</strong></p>
<p>Beyond investing more time into the requestAnimationFrame polyfill, what else would we do differently next time? I ‘d say the bulk of any additional time would be spent working on optimizing the bones of what we already have in place, with an eye towards playing nicely with the known behaviors of JavaScript garbage collection.</p>
<p>Some great articles on this sort of thing can be found here:</p>
<ul>
<li>Eternal Coding Blog – “<a href="http://blogs.msdn.com/b/eternalcoding/archive/2012/03/22/unleash-the-power-of-html-5-canvas-for-gaming-part-1.aspx">Unleash the power of HTML 5 Canvas for gaming</a>”</li>
<li>Scrirra Blog – “<a href="http://www.scirra.com/blog/76/how-to-write-low-garbage-real-time-javascript">How to write low garbage real-time Javascript</a>”</li>
</ul>
<p>Until then: <a href="http://www.bigfootencounters.com/" target="_blank">keep your eyes on the hills</a>.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1432" title="2" src="http://www.enlighten.com/wp-content/uploads/2012/05/21.png" alt="" width="407" height="331" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.enlighten.com/2012/05/the-legend-of-real-world-cross-browser-cross-device-composited-animation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Media Performance Insights: Tips For Making The Most of Google’s Free Tools</title>
		<link>http://www.enlighten.com/2012/05/social-media-performance-insights-tips-for-making-the-most-of-google%e2%80%99s-free-tools/</link>
		<comments>http://www.enlighten.com/2012/05/social-media-performance-insights-tips-for-making-the-most-of-google%e2%80%99s-free-tools/#comments</comments>
		<pubDate>Wed, 09 May 2012 18:13:57 +0000</pubDate>
		<dc:creator>nsafi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.enlighten.com/?p=1399</guid>
		<description><![CDATA[Our Marketing Intelligence group here at Enlighten uses a range of social media monitoring and analytic tools—both paid and free—to help our clients assess how &#8230;]]></description>
			<content:encoded><![CDATA[<p><em>Our Marketing Intelligence group here at Enlighten uses a range of social media monitoring and analytic tools—both paid and free—to help our clients assess how their social media campaigns are performing. If you don’t think you’re quite ready for professional help, there are some excellent powerful and free tools you can use on your own. Below, Enlighten’s social marketing manager Mallory Woodrow details four easy ways to use free Google tools go about gaining performance insights into your social media promotions. The only cost will be the investment of your time.</em></p>
<p><strong> #1: Track Actions Visitors Take</strong></p>
<p>One way to better understand your social campaign as a whole is to understand how your users find out about it.</p>
<p><a href="https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide" target="_blank">Event Tracking</a>, as mentioned in a post about <a href="http://www.socialmediaexaminer.com/9-tips-for-integrating-social-media-on-your-website/" target="_blank">integrating social media on your website</a> that I wrote for <a href="http://www.socialmediaexaminer.com/measure-social-media-with-free-tools/" target="_blank">SocialMedia Examiner</a>, has the ability to report the behavior of website visitors by tracking certain actions they take.</p>
<p>For example, Event Tracking can be used to track the number of times a video on your site is played, a file is downloaded or a certain link is clicked.</p>
<p>For this article, I will focus on how you can use Event Tracking to show when individuals click from your website to your social media outlets.</p>
<p>Event Tracking can help marketers answer questions like:</p>
<ul>
<li> Are the social media buttons on my website visible and easily accessible?</li>
<li>Are my website visitors interested in my social media pages?</li>
<li>Am I doing an effective job of displaying the current social media promotion on my website?</li>
</ul>
<p>This information is beneficial in helping you to:</p>
<ul>
<li>Understand how your users are finding your social outlets.</li>
<li>Recognize the way they interact with your brand online.</li>
<li>Identify areas of improvement in regard to your social share plug-ins or buttons.</li>
</ul>
<p>For complete steps on how to add the actual tracking code to your website, <a href="https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide#SettingUpEventTracking" target="_blank">visit Google Support here</a>. They do an excellent job of breaking down the steps. If you need more assistance, <a href="https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide" target="_blank">Google Basic Tracking</a> starts at a lower level.</p>
<p>Once installed, you will be able to determine the number of people clicking on your social media buttons from your website during the length of your social campaign.</p>
<p>If you don’t have access to the actual nuts and bolts of your site, fear not. There are other ways you can easily get information about the details of your social promotion in points #2 through #4.</p>
<p><strong>#2: Identify Social Actions Generating the Most Traffic</strong></p>
<p>Many business owners are familiar with seeing Twitter or Facebook as referral traffic in their <a href="http://www.google.com/analytics/" target="_blank">Google Analytics</a> accounts. This is often a result of a social media campaign that pushes users to the website for one reason or another; for example, a tweet that describes a sweepstakes on Facebook with a link to the rules found on your website’s blog.</p>
<p>Although you’re able to see that the user came from Facebook or Twitter to your sweepstakes rules, wouldn’t it be nice to be able to identify which tweet or post from your social outlets generated the most quality clicks to that page?</p>
<p>Google URL Builder allows you to do just that and it’s a great way to see which variation of a tweet or post harnessed the most quality clicks. It’s important to keep in mind that for every link back to your site from your social media posts and mentions, you should be using destination URLs that identify that specific post (or campaign) as being the source. In other words, don’t use plain-vanilla URLs. Google URL Builder is a simple interface that allows even first-timers to destination URLs to create them quickly. Over the lifetime of a campaign, you’ll be able to come to conclusions about which tweet or post resonated best with your fans and followers or captured the attention of the social sphere as a whole.</p>
<p><strong> How to Set Up Google Analytics URL Builder</strong></p>
<p>First and foremost, you must have access to your website’s Google Analytics.</p>
<ul>
<li> Go to <a href="http://support.google.com/googleanalytics/bin/answer.py?hl=en&amp;answer=55578" target="_blank">Google Analytics URL Builder</a>.</li>
<li>Copy and paste the destination web page URL you will be linking to from your social media promotion.</li>
</ul>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1401" style="float: none;" title="MW1" src="http://www.enlighten.com/wp-content/uploads/2012/05/MW1.png" alt="" width="611" height="545" /></p>
<ul>
<li>Fill out the campaign information so it’s easy for you to understand the elements of the campaign later. The three most important elements in understanding the data later will be Campaign Source, Campaign Medium and Campaign Name. The rest you can leave blank.</li>
<li>Keep a record of what you enter so that you can refer to it later.</li>
</ul>
<p><strong>How to Fill Out Campaign Information</strong></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1402" style="float: none;" title="MW2" src="http://www.enlighten.com/wp-content/uploads/2012/05/MW2.png" alt="" width="420" height="292" /></p>
<ul>
<li style="text-align: left;">Copy and paste the generated link into a link shortener and then into your campaign tweet or post.</li>
</ul>
<p><strong>How It Will Look in Google Analytics</strong></p>
<p>To help you better understand how to organize your campaign, I will show you a campaign that I set up as an example. The social promotion seemed to be a success overall with more than 5,000 entries in a two-week period; however, the Google URL Builder allows me to dig deeper. (A big shout-out to <a href="http://www.giftzip.com/" target="_blank">GiftZip.com</a> for allowing me to use these screenshots.)</p>
<p>The information seen below corresponds to the information I entered into the Google URL Builder in the example above.</p>
<p>For this example, I used the Google URL Builder to create two different links to a sweepstakes rules webpage that I included in two different tweets promoting the same Valentine’s Day Facebook sweepstakes.</p>
<p>I pushed them out at alternating times (9 am and 4 pm) and days so that each variation of the tweet was sent the same number of times and had the opportunity to be seen at the same time of day as the other.</p>
<p>In this instance, I was attempting to keep my time constant (although there is some room for error here) and focus strictly on which tweet language generated more quality clicks. To see the results of your own social media promotion, follow these steps:</p>
<ul>
<li>Log into your Google Analytics account.</li>
<li>Under Traffic Sources in the left navigation, click Sources and then Campaigns.</li>
<li>Under Campaigns, click the name of your campaign. This will be what you entered under “Campaign Name.” Mine was Vday Sweepstakes.</li>
</ul>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1403" style="float: none;" title="MW3" src="http://www.enlighten.com/wp-content/uploads/2012/05/MW3.png" alt="" width="508" height="520" /></p>
<ul>
<li>Under Campaigns, you should be able to see the links you built. Mine are Social Media/Twitter and Social Media/Twitter 2.</li>
</ul>
<p><strong>The Results</strong></p>
<p>At first glance, it appears as though the two tweets were essentially equal with one generating 18 clicks and the other 19 clicks.</p>
<p>Upon further inspection, it’s clear that one outperformed the other in regards to Average Time on Site and Bounce Rate. This means that one tweet generated far higher quality clicks than the other, in that people actually stuck around to read about how to enter the sweepstakes.</p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-1404" style="float: none;" title="MW4" src="http://www.enlighten.com/wp-content/uploads/2012/05/MW4.png" alt="" width="525" height="340" /><strong>The Better Tweet</strong></p>
<p style="text-align: left;"><img class="aligncenter size-full wp-image-1405" style="float: none;" title="MW5" src="http://www.enlighten.com/wp-content/uploads/2012/05/MW5.png" alt="" width="518" height="172" /><strong>The Not So Great Tweet</strong></p>
<p style="padding-left: 30px; text-align: center;"><img class="aligncenter size-full wp-image-1406" style="float: none;" title="MW6" src="http://www.enlighten.com/wp-content/uploads/2012/05/MW6.png" alt="" width="533" height="174" /></p>
<p><strong>How to Do it Next Time</strong></p>
<p>It’s clear that the tweet that described the sweepstakes in more detail generated more quality traffic than the one that simply listed the prize and name of the sweepstakes. This is information that I can consider when constructing future promotions on Twitter.</p>
<p>Obviously, this is a very small sample and many times you may find that the information you get is inconclusive. In this example I used language, but you can also use time of day, hashtag variations and other elements to help identify which method works best.</p>
<p><strong> #3: Find Out if Your Social Promotion Grew Legs</strong></p>
<p>Another product that can be used to tap into the power of Google to measure the success of your social media campaign is Google Alerts. Google Alerts allows you to see other places on the web that picked up your social promotion and delivers the information straight to your inbox.</p>
<p>Google Alerts can help you answer questions like:</p>
<ul style="padding-left: 30px;">
<li>Did my sweepstakes grow legs and become viral?</li>
<li>Were there other outlets that featured my promotion that I don’t know about?</li>
</ul>
<p>Most times, if another major outlet picked up your promotion, you’ll most likely get a clue from Google Analytics because you’ll see referral traffic from the source that reposted it. But what if the outlet wasn’t linking to your website, but rather the social media page that the promotion was hosted on? This is where Google Alerts really comes in handy.</p>
<p style="text-align: center;"> <img class="aligncenter size-full wp-image-1407" style="float: none;" title="MW7" src="http://www.enlighten.com/wp-content/uploads/2012/05/MW7.png" alt="" width="470" height="457" /></p>
<p>Google Alerts helps illustrate outside factors that affected your promotion’s success. If an outlet picked up the promotion, it might be worth grabbing their contact information and shooting them a thank-you email.</p>
<p>Identifying key individuals or outlets serves as a great way to build relationships within the social sphere and to start to compile a list of individuals and outlets to reach out to the next time you run a social media promotion.</p>
<p>To set up an alert, simply fill out the information you want to see and how you want to receive it:</p>
<ul>
<li>Search Query can be as broad or narrow as you choose. Entering the full name of your promotion might work best.</li>
<li>Result Type allows you to select where you want Google to look. You can pick from Everything, News, Blogs, Discussions, Video and Books.</li>
<li>How Often provides options like As It Happens, Once a Day or Once a Week so you can tailor it to your needs.</li>
<li>How Many will allow you to select from all results or results Google deems the best. You can set up several alerts and manage them from your Gmail account.</li>
</ul>
<p><strong> #4: Get Real-Time Alerts</strong></p>
<p>Like Google Alerts, <a href="http://support.google.com/googleanalytics/bin/answer.py?hl=en&amp;answer=1033027" target="_blank">Google Analytics Alerts</a> are useful while the campaign is still running, in that they can assist you to stay up to date with the success of your promotion. (It’s easy to confuse Google Analytics Alerts and Google Alerts because their names are so similar—the first watches your site’s incoming traffic, while the latter watches social activity and web pages across the Internet.) This is especially significant if you work for an agency that runs several promotions at once. It also proves useful for small businesses that do not have time to check their Google Analytics accounts every day.</p>
<p><a href="http://netvantagemarketing.com/" target="_blank">Netvantage Marketing </a>managing partner Adam Henige says:</p>
<p style="padding-left: 60px;"><em> A lot of people don’t think about keeping tabs on social media with Google Analytics Alerts, but it can be a handy tool to monitor crazy traffic spikes from social sources.</em></p>
<p>Just head into Alerts and set up an alert for a significant increase in day-to-day traffic from Twitter, Facebook and Google+ and you’ll get email updates when traffic starts falling from the sky.</p>
<p>To set up an alert in Google Analytics:</p>
<ul>
<li>Log into your Google Analytics account.</li>
<li>Select the account/website you wish to set an alert for.</li>
<li>Click the Settings button in the upper-right corner.</li>
<li>Under Profiles, click Assets &gt; Custom Alerts &gt; Create an Alert.</li>
</ul>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1408" style="float: none;" title="MW8" src="http://www.enlighten.com/wp-content/uploads/2012/05/MW8.png" alt="" width="508" height="457" /></p>
<ul>
<li>Under Alert Name, enter something that will be easy to recognize when you receive the email.</li>
<li>The Period will depend on how long your promotion is running. For short promotions, a day works well.</li>
<li>Under This Applies To, select Traffic Sources &gt; Source, and under Conditions select Contains Twitter. This will send you alerts about the traffic you’re receiving from Twitter. You can play with these options to receive different alerts about different outlets such as YouTube, Pinterest or Facebook.</li>
<li>Under Alert Me When, select Visits and under Condition select a number that makes sense for you. If you’re looking for spikes in traffic, you will want to put Previous Day as the Compared To value. For this one, I chose 50% more traffic than the previous day.</li>
</ul>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1410" style="float: none;" title="MW9" src="http://www.enlighten.com/wp-content/uploads/2012/05/MW91.png" alt="" width="501" height="429" /></p>
<p>Overall, these tools can assist businesses to understand which portions of their social campaigns were successes and determine which areas could use improvement next time around.</p>
<p>A version of this article by Mallory Woodrow originally appeared in <a href="http://www.socialmediaexaminer.com/measure-social-media-with-free-tools/" target="_blank">SocialMedia Examiner</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enlighten.com/2012/05/social-media-performance-insights-tips-for-making-the-most-of-google%e2%80%99s-free-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Ways to Add Value to Your Banner Ads</title>
		<link>http://www.enlighten.com/2012/05/5-ways-to-add-value-to-your-banner-ads/</link>
		<comments>http://www.enlighten.com/2012/05/5-ways-to-add-value-to-your-banner-ads/#comments</comments>
		<pubDate>Wed, 02 May 2012 17:08:56 +0000</pubDate>
		<dc:creator>nsafi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.enlighten.com/?p=1390</guid>
		<description><![CDATA[Your banner ads comply with your brand&#8217;s style guide. They&#8217;re consistent with your other marketing materials. They feature a strong call to action and functionality &#8230;]]></description>
			<content:encoded><![CDATA[<p>Your banner ads comply with your brand&#8217;s style guide. They&#8217;re consistent with your other marketing materials. They feature a strong call to action and functionality that&#8217;s intuitive to the consumer.</p>
<p>So why aren&#8217;t people clicking?</p>
<p>Online banners—regardless of their size, shape, or format—are held to a high standard by Internet users. Consumers know what they like, and what they loathe. In fact, they&#8217;re experts on the subject (a massive daily dose of just about anything will do that to a person).</p>
<p>This attitude compels digital marketers to keep their creative fresh, but it isn&#8217;t always fresh enough. It doesn&#8217;t always leave site users nodding their heads in appreciation or thinking, &#8220;Now that&#8217;s a useful ad.&#8221; What follows are five ways to enhance your existing and upcoming banner ads to stimulate clicks, shares, and buys.<strong></strong></p>
<p><strong>Track mouse movements.</strong> Internet users may feel that they&#8217;ve seen it all in rich media advertising, but several jaw-dropping technologies are still relatively underutilized. One such technology is mouse tracking. Some brands allow mouse movements to alter the look of their banners (a concept so hip even Google is using it). Others take the more traditional route by inviting users to hover over in-banner hot spots.</p>
<p><img class="alignright size-full wp-image-1391" title="1" src="http://www.enlighten.com/wp-content/uploads/2012/05/1.png" alt="" width="373" height="233" /></p>
<p>One ad for Royal Caribbean created by MediaMind (formerly Eyeblaster) combined mouse tracking technology with an expandable banner in an IAB Sidekick format. In it, the user could hover over hot spots throughout an image of one of the company&#8217;s cruise ships to reveal information about special services and features, and click to get even more detail…all without leaving the site page.</p>
<p><img class="alignright size-full wp-image-1392" title="2" src="http://www.enlighten.com/wp-content/uploads/2012/05/2.png" alt="" width="304" height="254" /></p>
<p><strong>2. Add a map.</strong> When your objective is to drive consumers to your offline stores, few strategies are more effective than a mapping tool. Naturally interactive map features are the bread and butter of mobile ads but they have a place on the web, too. To generate offline sales, companies like Spongecell incorporate &#8220;Smart Mapping&#8221; functionality into their clients&#8217; ads, using Zip codes and Google Maps technology to create a custom map of nearby stores.</p>
<p>In a recent banner for Arby&#8217;s Restaurants and the Ultimate Angus Philly sandwich, users were able to drill down to the store address and even get directions. The functionality was useful, yes, but best of all it was in keeping with the campaign theme of giving consumers &#8220;the best Philly outside of Philly.&#8221;</p>
<p><img class="alignright size-full wp-image-1393" title="3" src="http://www.enlighten.com/wp-content/uploads/2012/05/3.png" alt="" width="302" height="252" /></p>
<p><strong> 3. Add a calendar tool.</strong> Today&#8217;s consumers lead busy lives, so an advertising strategy that makes sticking to the schedule a little easier is sure to be embraced. Enter the banner that links a branded event to an online calendar. When this functionality is incorporated into an online ad, consumers can add an event to their Google Calendar with one click. This is ideal for entertainment companies promoting a new series or the new season of an existing program, but can work just as well to announce a product launch or the start date of a branded contest.</p>
<p><strong> 4. Use dynamic creative.</strong> Customized messaging is a hot trend, with particular attention being placed on data-driven display ads. Included in Forbes Magazine&#8217;s &#8220;<a href="http://www.forbes.com/sites/roberthof/2012/01/04/facebook-google-twitter-and-more-12-predictions-for-2012/" target="_blank">12 Predictions for 2012</a>,&#8221; these encompass ads that use the consumer&#8217;s IP address to pull relevant data about the user&#8217;s location, shopping history, and browsing behavior, all in real time. A creative template is combined with offers and messaging options that companies like AudienceScience mix and match to create highly relevant banners. This technique is proving popular among airlines, which use it to supply city-specific quotes based on a consumer&#8217;s location.</p>
<p><strong> 5. Integrate social media.</strong> Combining a banner ad with a Twitter feed was a novelty when Volvo did it to generate interest in its new crossover vehicle and draw attention to its presence at the New York Auto Show. That was two years ago, and this method of enhancing a run-of-the-mill ad has yet to take off. But it should, and it will, just as soon as brands acknowledge the importance of cross-media marketing online. If you&#8217;re lucky enough to attract an eyeball, why not make the most of the opportunity by showing your potential customer everything you&#8217;ve got? Go beyond the standard links to Facebook and Twitter and integrate social media in a way that adds value by adding content.</p>
<p>Every banner holds a well of potential that practical (and memorable) functionality can tap. Make your campaigns, and thus your brand, more valuable to your customers by enhancing your ads.</p>
<p>This article by Tessa Wegert originally <a href="http://www.clickz.com/" target="_blank">appeared in ClickZ</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enlighten.com/2012/05/5-ways-to-add-value-to-your-banner-ads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Impossible Question?  Taking Analytics Towards a Typology of Visits</title>
		<link>http://www.enlighten.com/2012/04/an-impossible-question-taking-analytics-towards-a-typology-of-visits/</link>
		<comments>http://www.enlighten.com/2012/04/an-impossible-question-taking-analytics-towards-a-typology-of-visits/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 18:23:06 +0000</pubDate>
		<dc:creator>nsafi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.enlighten.com/?p=1377</guid>
		<description><![CDATA[What happens on my site? This is what we web analysts call a core question. It’s harder to answer than it looks, even though site &#8230;]]></description>
			<content:encoded><![CDATA[<p><em>What happens on my site?</em> This is what we web analysts call a core question. It’s harder to answer than it looks, even though site analytics programs are supposedly designed to answer it. Traditional analytics tools answer it with descriptive numbers, such as:</p>
<ul>
<li><em>20% of your site’s visits looked at the About Us page at some point, and</em></li>
<li><em>the average visit was about five pages long</em></li>
</ul>
<p>That doesn’t really tell us what people are “doing.” It doesn’t tell a story. It doesn’t get you inside the visitor’s head at the moment of the visit. A much better answer with story-like overtones might be:</p>
<p><em>We looked at all your site’s recent visits and we found basically five kinds of visits.</em></p>
<ul>
<li><em>One type wants to know where your stores are because these visitors already have settled on your brand.</em></li>
<li><em>Another wants to know about your products.</em></li>
<li><em>Another type of visit isn’t checking products; instead these visits involve curiosity about your product category and are looking for ideas or tips.</em></li>
<li><em>Another visit type is simply checking to see if you have anything new.</em></li>
<li><em>And yet another is focused entirely on deals and discounts.</em></li>
</ul>
<p><em>The rest of your visits wander all over the place and don’t seem to have a focus or mission.</em></p>
<p>Now, that’s a story! A <em>very</em> useful story.</p>
<p><span style="text-decoration: underline;">If</span> you can come into possession of that wonderful list of five kinds of visits, custom-extracted from your own site data, you can use it as a checklist:</p>
<ul>
<li>Does your site’s navigation and content work well for each visit type?</li>
<li>Do you have a marketing message that will resonate with each one?</li>
<li>Do you place your marketing messages where each one will likely be seen by—and resonate with—each visit type?</li>
</ul>
<p>Going a little further, you can estimate the number of visits of each type and do some metrics:</p>
<ul>
<li>Evaluate marketing actions by whether they bring in a predominance of the most desired visit type more than other marketing actions do.</li>
<li>Evaluate site changes by whether the proportions change the way you want them to – whether you are successful at encouraging one type of visit to become another.</li>
</ul>
<p>And, if you really want to take it far, you can ask yourself these kinds of questions:</p>
<ul>
<li>What about those wandering visits? Are they potentially one of the focused visit types? Are they happy experiences of footloose visitors, or evidence of frustrated and confused experiences?</li>
<li>Can you attribute value to each type? Can you arrange them into a maturity model, or a purchase-decision model?</li>
</ul>
<p>&lt;pause for breath&gt;</p>
<p>I can guess what you’re thinking &#8212;</p>
<ul>
<li>“We already created visit types for our site (or marketing) strategy, so we can ignore all this”</li>
</ul>
<ul>
<li>Good. Incorporating visit types into your guiding vision is absolutely essential to a strategy. But I have to ask &#8212; have you since checked those visit types with actual data? Will the data confirm that you visualized them correctly, and that you identified all of them?</li>
<li>“We already have personas, which are demographic-lifestyle-lifestage descriptions of likely visitor groups, so this doesn’t apply to us”</li>
</ul>
<ul>
<li>Visit types are a different animal, neither more granular nor less granular than personas. The key point of visit typing is that a given persona-person will use a spectrum of visit types over the course of their relationship with you. Your site and your marketing should be ready for as many of those instances as possible.</li>
<li>“But one person could then have five visits, each a different type!”</li>
</ul>
<ul>
<li>Yes. Isn’t that great? You get five ways to reach that person!</li>
<li>“I get pages and pages of site statistics and trendlines every month, including side-by-side testing results and so on. Where are these ‘types’ in those reports?”</li>
</ul>
<ul>
<li>The mainstream site analytics tools don’t provide this kind of discovered information. Adobe SiteCatalyst by Omniture, WebTrends Analytics, and Google Analytics have what they call segmenting, but although the word “segmenting” resembles “visit types” the resemblance is superficial. Segments as used by the analytics tools are filters, where you divvy up visits according to definitions you already have in mind, and then the analytics tools provide statistics for those divisions. Instead of divisions you assume are worth looking at (first time visits versus return visits, or search visits versus email visits) I am talking about discovering groups of similar-looking visits <em>from the data</em>.</li>
<li>“That sounds like cluster analysis, maybe?”</li>
</ul>
<ul>
<li>Yes, more or less. The gist of cluster analysis is getting the data to show you whether granular data can be clumped into groups of similar-ish items. In this case the granular data is your set of site visits, and similar-ish refers to “looking at the similar content on my site.”</li>
</ul>
<p>That brings us back to what we’re doing in our Marketing Intelligence group here at Enlighten. We really enjoy this particular analysis. We take raw site visit behavior – namely, thousands and thousands of individual visits with their individual lists of pages-viewed – and we work to get the data to tell us what the visit types are. We sometimes end up presenting crazy diagrams like the one below. If possible, we also host a retreat or some really concentrated group discussion. The assumptions and beliefs (about customers as well as about the web site) that are uncovered in those discussions are almost always eye-opening. All in all, we get more a-ha’s and useful insights than we usually get from plain cross-section statistics. And, we hope, “what happens on my site” starts getting a real answer.</p>
<p><img class="aligncenter size-full wp-image-1378" title="cg1" src="http://www.enlighten.com/wp-content/uploads/2012/04/cg1.jpg" alt="" width="605" height="709" /></p>
<p><img class="aligncenter size-full wp-image-1379" title="cg2" src="http://www.enlighten.com/wp-content/uploads/2012/04/cg2.jpg" alt="" width="616" height="658" /><img class="aligncenter size-full wp-image-1381" title="cg3" src="http://www.enlighten.com/wp-content/uploads/2012/04/cg3.jpg" alt="" width="541" height="631" /><img class="aligncenter size-full wp-image-1382" title="cg4" src="http://www.enlighten.com/wp-content/uploads/2012/04/cg4.jpg" alt="" width="613" height="654" /><img class="aligncenter size-full wp-image-1384" title="cg5" src="http://www.enlighten.com/wp-content/uploads/2012/04/cg5.jpg" alt="" width="635" height="631" /><img class="aligncenter size-full wp-image-1385" title="cg6" src="http://www.enlighten.com/wp-content/uploads/2012/04/cg6.jpg" alt="" width="622" height="631" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.enlighten.com/2012/04/an-impossible-question-taking-analytics-towards-a-typology-of-visits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enlighten Design Intern Completes Interactive Storybook Project</title>
		<link>http://www.enlighten.com/2012/04/enlighten-design-intern-completes-interactive-storybook-project/</link>
		<comments>http://www.enlighten.com/2012/04/enlighten-design-intern-completes-interactive-storybook-project/#comments</comments>
		<pubDate>Mon, 23 Apr 2012 18:30:12 +0000</pubDate>
		<dc:creator>nsafi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.enlighten.com/?p=1363</guid>
		<description><![CDATA[I’m a recent University of Michigan School of Art &#38; Design graduate and currently a part-time apprentice at Enlighten. I love all things digital, and &#8230;]]></description>
			<content:encoded><![CDATA[<p>I’m a recent <a href="http://www.art-design.umich.edu/" target="_blank">University of Michigan School of Art &amp; Design</a> graduate and currently a part-time apprentice at Enlighten. I love all things digital, and if I’m not in front of my computer then something’s wrong.</p>
<p>I recently completed a digital, interactive <img class="alignright size-medium wp-image-1367" title="ah2" src="http://www.enlighten.com/wp-content/uploads/2012/04/ah2-300x168.png" alt="" width="300" height="168" />storybook for my senior year integrative project. “<a href="http://www.helpg.us/" target="_blank">A Clean, Well-Lighted Place</a>” is about a lonely boy named Gus who works on an intergalactic telephone station. Gus needs you and your friends to help him, by sending him text messages to charge his spaceship&#8217;s battery.</p>
<p>The original premise was to create an animation that the viewer could influence. A video game is the best example of that idea, but technically that wasn&#8217;t feasible as I was working alone and I wished to focus on the design and visuals. Through the experimentation process, I portrayed Gus as a lonesome character who wanted a friend. The purpose of the text message interaction is to give the viewer a way to help Gus directly.</p>
<p><strong>How it works</strong></p>
<p>At a certain point in the story, the viewer can send Gus a text message, and that will add 1 &#8220;volt&#8221; to his spaceship’s battery. Once Gus reaches 150 volts, he can start his spaceship and finish his quest.</p>
<p>I used a service by <a href="http://www.twilio.com/" target="_blank">Twilio </a>that allowed me to activate a PHP script once a text message was received. That PHP script populates a database, from which a Flash file pulls that information. If the text message count is over X amount, then the viewer can see the ending of Gus’s quest. If the text message count is under X amount, then the viewer must send more text messages to charge the spaceship’s battery.</p>
<div id="attachment_1364" class="wp-caption aligncenter" style="width: 650px"><img class="size-large wp-image-1364" title="ah" src="http://www.enlighten.com/wp-content/uploads/2012/04/ah-1024x392.png" alt="" width="640" height="245" /><p class="wp-caption-text">The technical process: Animations and models are made in Modo, processed through After Effects, and referenced by a Flash swf. Text messages are sent from the viewer’s phone to a Twilio phone number. Twilio runs a PHP script I have specified, and then the Flash swf pulls that information to see whether there are enough text messages.</p></div>
<p>The full project is available to view at <a href="www.helpg.us" target="_blank">www.helpg.us</a>.</p>
<p>I recently submitted the project to the FWA, so if you enjoyed it, <a href="http://www.thefwa.com/submissions/a-clean-well-lighted-place" target="_blank">please make sure to vote</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enlighten.com/2012/04/enlighten-design-intern-completes-interactive-storybook-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enlighten President to Speak at 8th Annual Marketing to Women Conference</title>
		<link>http://www.enlighten.com/2012/04/enlighten-president-to-speak-at-8th-annual-marketing-to-women-conference/</link>
		<comments>http://www.enlighten.com/2012/04/enlighten-president-to-speak-at-8th-annual-marketing-to-women-conference/#comments</comments>
		<pubDate>Fri, 20 Apr 2012 15:14:47 +0000</pubDate>
		<dc:creator>nsafi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.enlighten.com/?p=1359</guid>
		<description><![CDATA[As digital technology allows more and more brands to grow globally, what are the implications for marketers? More specifically, how can marketers use the Internet &#8230;]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-1360" title="m2w" src="http://www.enlighten.com/wp-content/uploads/2012/04/m2w.png" alt="" width="140" height="136" /></p>
<p>As digital technology allows more and more brands to grow globally, what are the implications for marketers? More specifically, how can marketers use the Internet to successfully engage women around the world with their brand? Women, after all, make more than 85% of all household product and service purchasing decisions. They also represent the majority of the online market.</p>
<p>These are questions Enlighten President Tom Beck will discuss when he speaks at the 8th Annual “<a href="http://www.m2w.biz/" target="_blank">Marketing to Women Conference</a>” in Chicago next week. The conference, which is attended annually by Fortune 1000 senior brand marketing executives and their agencies, will feature an impressive roster of presenters, including best-selling business author <a href="http://www.tompeters.com/" target="_blank">Tom Peters</a> and <a href="http://www.marylouq.com/" target="_blank">Mary Lou Quinlan</a>, Founder and CEO of Just Ask a Woman and author of <em>The God Box</em>.</p>
<p>Tom will speak at the opening “<a href="http://www.womenmeanbusinessweek.com/index.php" target="_blank">Women Mean Business</a>” luncheon. In a session led by <a href="http://www.farawarner.com/fw_site2/Main.html" target="_blank">Fara Warner</a>, Editorial Director of International Special Editions at <em>Newsweek</em> and the <em>Daily Beast Company</em>, he will join Rose Cameron, a global brand strategist at Hornall Anderson in Seattle, to discuss brand experience, design and digital technology and the inherent challenges in making a brand both “global” and “locally relevant” to women around the world.</p>
<p>The Marketing to Women Conference examines and celebrates the national and global impact of women&#8217;s purchasing power across every brand and every category. Starting Monday, April 23, and running through the week, the conference brings together leaders in marketing, brand management, communications, advertising, research and media to share insights and explore questions about the what, when and how of women&#8217;s $7 trillion (US) and $20 trillion (worldwide) annual purchasing.</p>
<p>If you’re in town you can register and join the event at the Chicago Cultural Center or be sure to follow Tom on Twitter (<a href="https://twitter.com/#!/laughingrobots" target="_blank">@laughingrobots</a>).</p>
<p style="text-align: center;">8th Annual M2W® &#8211; The Marketing to Women Conference</p>
<p style="text-align: center;">Chicago Cultural Center, 78 East Washington Street, Chicago, IL</p>
<p style="text-align: center;">Related Hashtags: #Marketing2Women, #M2W, #WomenMeanBusiness</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enlighten.com/2012/04/enlighten-president-to-speak-at-8th-annual-marketing-to-women-conference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Social Marketing: Turning a Passion into a Career</title>
		<link>http://www.enlighten.com/2012/04/social-marketing-turning-a-passion-into-a-career/</link>
		<comments>http://www.enlighten.com/2012/04/social-marketing-turning-a-passion-into-a-career/#comments</comments>
		<pubDate>Wed, 18 Apr 2012 21:23:03 +0000</pubDate>
		<dc:creator>nsafi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.enlighten.com/?p=1355</guid>
		<description><![CDATA[Enlighten recently welcomed Mallory Woodrow as a member of its growing social marketing practice. When she’s not working with our clients to create social content &#8230;]]></description>
			<content:encoded><![CDATA[<p><em>Enlighten recently welcomed Mallory Woodrow as a member of its growing social marketing practice. When she’s not working with our clients to create social content and engagement programs, Mallory is sharing her industry insights as a contributing writer for leading industry blogs and publications, including</em> <a href="http://www.forbes.com/forbeswoman/" target="_blank">ForbesWoman</a>, <a href="http://www.thedailymuse.com/" target="_blank">The Daily Muse</a>, <a href="http://www.entrepreneur.com/" target="_blank">Entrepreneur Magazine</a>, <em>and</em> <a href="http://www.socialmediaexaminer.com/" target="_blank">The Social Media Examiner</a>.</p>
<p>Ever since I could muster the strength to crawl into a swivel chair and locate the computer’s power button, the Internet served as the gateway to the world; a means by which to access the corners of the earth that were located above the counter-tops and beyond the confines of the school playground.</p>
<p>While my love for all things digital has been a lifelong trend, my career path has been a series of sheer accidents. I did not attend school for social media or search because when I was a student at Albion College there weren&#8217;t classes for those sorts of things. I was never much of a technology whiz and had only limited interest and knowledge in HTML and web design. I knew the basics, but it certainly wasn&#8217;t my calling. Instead, I went to school for English, Economics and Management, and Political Science.</p>
<p>My online hobbies remained just that—<em>hobbies</em>—and I didn&#8217;t have any reason to believe that my blog or extensive knowledge of social platforms could be valuable assets within my professional life. It wasn&#8217;t until I ended up taking an internship at an ecommerce start-up in need of social media assistance that the pieces of my career started to fit together.</p>
<p>Today, although I’ve had the pleasure of working with brands such as Meijer, Sephora, Home Depot, and General Motors, I am still always humbled by the ever-changing landscape of the social realm. And although I now leverage my knowledge of social media to help businesses achieve their goals, I try to never lose sight of the fact that social media, at its core, is simply a means by which people can connect, share, and interact with the people and things in their lives; it is a conversation—and one I feel privileged to be a part of.</p>
<p>I am extremely excited to start the next chapter of my story at Enlighten. And through my articles and columns for publications like Forbes and The Daily Muse, I get to share my insights with a national audience! It’s a far more interesting and exciting career than I could have imagined for myself even a few years ago.</p>
<p>Interested in what I have to say? Check out my latest article, &#8220;<a href="http://www.forbes.com/sites/dailymuse/2012/03/29/6-things-we-can-learn-about-addicting-content-from-tfln/" target="_blank">6 Things We Can Learn About Addicting Content from TFLN</a>&#8221; (originally published on <em>The Daily Mus</em>e and recently featured on the front page of <em>ForbesWoman</em>). I’ll be back on the Enlighten blog with more to share soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enlighten.com/2012/04/social-marketing-turning-a-passion-into-a-career/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An Apprentice’s Guide to Copywriting for a Digital Agency</title>
		<link>http://www.enlighten.com/2012/04/an-apprentice%e2%80%99s-guide-to-copywriting-for-a-digital-agency/</link>
		<comments>http://www.enlighten.com/2012/04/an-apprentice%e2%80%99s-guide-to-copywriting-for-a-digital-agency/#comments</comments>
		<pubDate>Wed, 11 Apr 2012 14:43:34 +0000</pubDate>
		<dc:creator>nsafi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.enlighten.com/?p=1352</guid>
		<description><![CDATA[Before I started my apprenticeship at Enlighten last fall, I wrote articles for my college newspaper, internships, and blogs, as well as plenty of long-winded &#8230;]]></description>
			<content:encoded><![CDATA[<p>Before I started my apprenticeship at Enlighten last fall, I wrote articles for my college newspaper, internships, and blogs, as well as plenty of long-winded papers about the rage of Shakespeare’s Caliban, and the like, while I was an undergrad. I didn’t know what a banner ad was, had only the bare basics of SEO understanding – and crime of all crimes – had never watched <em>Mad Men</em>.</p>
<p>With the season of graduation nearly upon us, I thought I’d share some things I’ve learned in recent months for the aspiring copywriters out there. Consider it an apprentice’s (short) guide to copywriting for a digital agency:</p>
<ol>
<li><strong>You’ll create better work if you learn how everyone around you contributes to a project.</strong> Since I didn’t go to school for advertising, I wasn’t familiar with a lot of the titles, roles and responsibilities of the people working alongside me on a project. I made a point to piece together the contribution each department—and team member— plays in the process of creating an ad that lives online. Once I understood what everyone else was doing, I had a greater understanding of how I could do my job better.</li>
<li><strong>Do a little homework.</strong> I was lucky to have a boss who sent me a list of links to movies, books, and other useful information a newbie like me needs to quickly understand the industry. Right when I started, I watched the movie <a href="http://www.artandcopyfilm.com/" target="_blank">Art &amp; Copy </a>(available on Netflix), and started reading two books, <a href="http://www.amazon.com/Pick-Me-Breaking-Advertising-Staying/dp/0471715573" target="_blank">Pick Me: Breaking Into Advertising and Staying There </a>and <a href="http://www.amazon.com/How-Your-Book-Together-Advertising/dp/1887229132" target="_blank">How to Put Your Book Together and Get a Job in Advertising</a>. I also watched this <a href="http://www.youtube.com/watch?v=PGPt5P3CYY4" target="_blank">clip</a>—and, yes, finally started watching <em>Mad Men</em>! I still have a lot more to learn, both on the job and from the books (I have a few more to get to), but these have all been extremely useful thus far.</li>
<li><strong>See what other people are doing creatively.</strong> Prior to working at a digital agency, I have to confess that I didn’t pay much attention to digital advertising. I would delete email newsletters I had somehow found myself signed up for, click out of any pops up that got between me and my web surfing, and mute any commercial advertisements that dare interrupt my free online television. This obviously changed when I started writing these things. Now I love to see how ads are making use of the digital space. One of my favorites is a <a href="http://www.youtube.com/watch?v=iozZTJB2XOw" target="_blank">new Nike ad</a>. When it asks you to rollover, a video expands and starts playing, telling a story of a guy and a girl who run across the country, á la Forrest Gump, to be together.</li>
<li><strong>Six words or less.</strong> Getting your point across in a few short words has been the cornerstone of what I have been doing– headlines, subject lines, and banner ads all rely heavily on short phrases! A fellow copywriter has given me some useful advice: the first six words are the first words people read in a subject line, so make sure that what they need to know is there. A lot of my pre-copywriting practice came from having to write headlines for articles and titles for essays, so I had practice keeping lines short. But I’ve learned that the line should also say something that will catch someone’s attention. And if you’re like me, hopefully your headline, subject line, whatever it is, will make someone smile – and encourage them to open or click through to what you want them to read!</li>
<li><strong>Make sense of the lingo.</strong> My biggest learning curve was probably just trying to make sense of the industry jargon and acronyms that I wasn’t familiar with. This took time, and I’m still learning more each day. But writing down words I hear around the office—from SEO (search engine optimization), SLT (subject line testing) and CTA (call to action)—and then de-coding the meaning later has helped tremendously.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.enlighten.com/2012/04/an-apprentice%e2%80%99s-guide-to-copywriting-for-a-digital-agency/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hearst Magazines Newest Player in Video Content Space</title>
		<link>http://www.enlighten.com/2012/04/hearst-magazines-newest-player-in-video-content-space/</link>
		<comments>http://www.enlighten.com/2012/04/hearst-magazines-newest-player-in-video-content-space/#comments</comments>
		<pubDate>Tue, 10 Apr 2012 18:04:42 +0000</pubDate>
		<dc:creator>nsafi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.enlighten.com/?p=1344</guid>
		<description><![CDATA[Last week, I published a post on the Enlighten blog about the changing landscape of online video content and the implications for advertisers (“Video Killed &#8230;]]></description>
			<content:encoded><![CDATA[<p>Last week, I published a post on the Enlighten blog about the changing landscape of online video content and the implications for advertisers (“<a href="http://www.enlighten.com/2012/04/video-killed-the-tv-star-changing-times-for-video-content-producers%E2%80%94and-advertisers/" target="_blank">Video Killed the TV Star: Changing Times for Video Content Producers—and Advertisers</a>”). This week brings even more proof<img class="alignright size-medium wp-image-1347" title="tt-hearst-style-hed-2012" src="http://www.enlighten.com/wp-content/uploads/2012/04/tt-hearst-style-hed-2012-300x168.jpg" alt="" width="300" height="168" /> big players are entering the online media space: Surprisingly yet oh so fitting, the newest player in the video content space is Hearst Magazines. The print publisher recently announced two new channels on YouTube slated to launch within the next 30 days thanks to funding from YouTube and its efforts to enhance content offerings beyond UGC.</p>
<p>One of the newly created Hearst channels, called Hello Style, will align content production similar to what readers in five of their women’s publications would expect. The second channel will be Car and Driver TV Channel. The announcement got some press in <em><a href="http://www.adweek.com/news/press/hearst-programs-its-brands-youtube-139457" target="_blank">Adweek</a></em> yesterday.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enlighten.com/2012/04/hearst-magazines-newest-player-in-video-content-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video Killed the TV Star: Changing Times for Video Content Producers—and Advertisers</title>
		<link>http://www.enlighten.com/2012/04/video-killed-the-tv-star-changing-times-for-video-content-producers%e2%80%94and-advertisers/</link>
		<comments>http://www.enlighten.com/2012/04/video-killed-the-tv-star-changing-times-for-video-content-producers%e2%80%94and-advertisers/#comments</comments>
		<pubDate>Tue, 03 Apr 2012 16:00:02 +0000</pubDate>
		<dc:creator>nsafi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.enlighten.com/?p=1339</guid>
		<description><![CDATA[Can digital video advertising be the new :30 spot? Can a web series become the hottest Primetime show? Sound completely crazy? Both scenarios may be &#8230;]]></description>
			<content:encoded><![CDATA[<p>Can digital video advertising be the new :30 spot? Can a web series become the hottest Primetime show? Sound completely crazy? Both scenarios may be closer to reality than you think. YouTube is vying for TV dollars as digital advertisers wait with baited breath to find out if the company is introducing a <a href="http://gigaom.com/video/youtubes-new-tv-stars/" target="_blank">new genre of Web video programs</a>. Elsewhere, video programming is gaining support from major online media players, and it won’t be long before this content is made available to consumers.</p>
<p>Consider what’s going over at <a href="http://www.huffingtonpost.com/" target="_blank">Huffington Post</a>: The website is set to offer nearly 12 hours of daily live content starting this summer across desktop, tablet, and smartphones. (With so many viewers and media players turning to the online space, <a href="http://en.wikipedia.org/wiki/Christina_Aguilera" target="_blank">Christina Aguilera’s</a> biggest rival may no longer be <a href="http://en.wikipedia.org/wiki/Adam_Levine" target="_blank">Adam Levine</a>, but <a href="http://www.youtube.com/watch?feature=player_embedded&amp;v=_egfpIOTpgk" target="_blank">Yasha Swag</a>.) Plus, with on-demand viewing growing from a Digital Video Recorder to mobile platform, thanks to video archives, the excitement will bridge mobile and video even more (a move that’s much needed, according to my well-traveled and always-on-the-move friends).</p>
<p>Along with offering new video content, media companies will evolve their advertising opportunities and look to engage consumers with new interactive experiences. For example, clickable headlines will create a pop-up video type of experience, reminiscent to <a href="http://www.vh1.com/shows/pop_up_video/series.jhtml" target="_blank">VH1’s one-time fan favorite show</a>, where users will be delivered stories that they read and watch at the same time. Also, an easy sharing functionality will allow for simple word-of-mouth on the viewer’s social networks, rapidly growing the popularity of the web series and the advertisers associated with it.</p>
<p>In addition to new in-video opportunities, advanced targeting will improve the relevancy of a brand’s message for a particular audience of video content. As new technology begins to offer opportunities to scan videos and read the metadata to better understand the content, media vendors will benefit because they will have access to more data. This, of course, will allow them to better identify an ideal audience to target based on behavior, demographic, geographic and contextual information, and, in turn, deliver a brand’s custom message to the right audience.</p>
<p>It’s definitely an exciting time in video – for one and all alike. So, sit back with your consumer feet up and enjoy the additional video access. But dive in with your professional gusto to reap new opportunities for your clients. And let’s see if this new twist on the <a href="http://en.wikipedia.org/wiki/The_Buggles" target="_blank">The Buggles</a> famous song proves to be true, bringing video into the next generation of screens.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.enlighten.com/2012/04/video-killed-the-tv-star-changing-times-for-video-content-producers%e2%80%94and-advertisers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

