Cool New Marketing Technologies: Caught and Served

Archive for the ‘Creative Approach’ Category

Virtual Events for Pharma #VEP11 – How to Create Impact and Maintain Compliance

By Greg Jones

If you’ve ever wanted to check out a virtual event live, here is your chance. Starting at 12:30 pm today, We are hosting “Virtual Events for Pharma #VEP11 – How to Create Impact and Maintain Compliance.” Here is a description of the event:

The life sciences industry is in the midst of a virtual revolution. No longer are national and global meetings constrained by venue or geography. Today, life science professionals can gain access to industry expertise, content, and news with the click of a mouse through a virtual engagement platform. Learn how your company can leverage this new trend to dramatically increase your reach to both external and internal audiences while also ensuring compliance with the requirements of our industry.”

We are using the Unisfair platform, and have a number of experts lined up to talk including:
-Taren Grom, Editor-in-Chief, PharmaVOICE
-Derrick Wood, SVP, Creative Services, Cramer
-Peggy Robinson, Directory of Strategic Alliances, Veridex (J&J Co.)
-Brent Arslaner, Vice President, Unisfair

If you plan on attending, the twitter hashtag is #VEP11
If you are interested in the subject matter, the virtual event platform as a solution, or just getting your networking on, come check it out. The keynote starts at 12:45 pm.

/end shameless plug

Clever MSN Ad on Pandora Gives Free, 3 Day Pandora One Access (Ad Free)

By Greg Jones


I love Pandora, but I’m too cheap to pay for the ad-free version called Pandora One, therefore I get assaulted several times an hour with annoying audio ads… Until today. Today I loaded Pandora, listened to a few hours of music, completely ignoring the ads, until one from MSN came on offering a free 3 day trial to Pandora One – so I did what I never do, I clicked!

The Pandora player reloaded, the Ads are gone for 3 whole days, and the background/sidebar ad is going to stay MSN branded instead of cycling through the normal bevvy of advertisers. This is awesome for me, because I don’t want to pay for Pandora One, and don’t want to listen to ads. This is also awesome for MSN, because they know I will have 24 hours of exposure (3 days x 8 hours) to their ad, they also get the satisfaction of knowing none of their fellow advertisers will be served to my desktop. They have in effect, sponsored my listening for a short period of time. They just gave me something of value for interacting with their brand. This is also awesome for Pandora, because they are constantly struggling to find a happy balance between paying the bills and keeping their listeners happy.

I hope more people take note of ads that give back. This instant reward forms an immediate connection between individual and a brand. Pretty worthwhile if you ask me!

The Making of a Holiday Facebook Application

By Eric Webster

For our Holiday Card this year we wanted to create a rich interactive user experience which allowed the users to easily pass along messages of holiday cheer to their friends — “low hanging fruit” if you would. We wanted it to be quick and easy to use, fun and a little viral. It is called the EZ Corporate Cliche Optimizer Pro!

After some discussions we settled on an HTML5/CSS3/jQuery platform because we felt it would have the most reach in the mobile market and could still provide that interactive feel we wanted. It just meant that we would need to say no to Internet Explorer 6 visitors, everyone was very sad.

After logging in with their Facebook account, the application would allow the user to post “corporate cliché” holiday themed messages to a friend’s wall – prompting them to do the same.

Our Creative and Development teams worked closely to ensure feasibility of the user interface, often creating rapid prototypes and working hand-in-hand to resolve and streamline user interface issues.

When we wanted to add some more motion and more holiday cheer to the design we investigated on how to animate the snowflakes without adding performance overhead.

We settled on a layered Alpha Transparent PNG approach where one of the background layers was repositioned with CSS via jQuery’s Background Animate plug in. This is a self repeating animation which loops infinitely has a nice effect and low performance overhead, a win-win for sure.

Similarly when we wanted to provide an additional “effect” to the dynamic message animation we used an asynchronous recursion in Javascript to create a typing effect.


optimizeMessage: function(){
EZCCOP.randomMessageTyping = true;
var msg = EZCCOP.selectRandomMessage();
var len = msg.length;
var i = 0;
(function typeDataToScreen(){
$("#message").html(msg.substring(0, i));
i++;
if(i <= len){
setTimeout(typeDataToScreen, 75);
} else {
EZCCOP.randomMessageTyping = false;
};
})();
return false;
}

This function takes a string and iterates through its length adding each character to the specified message window, you can easily control the speed of the typing with the callback timer before it calls itself. It was simple, performed well and created a nice effect.

Some other challenges we faced was with the Facebook Application in general, depending on the users privacy settings sometimes messages would not post to the target, instead an oAuthException response error [“(#210) User not visible""] would be issued. this is because the targeted users privacy prohibited the posting of the message. There was no way to get that message to post so to circumvent this, we just had the response handler listen for the exemption, and to continue onto the next message.

Mobile optimizations are achieved through the use of Progressive Enhancement and CSS3 Media Queries -- this allows us to control how the application looks dependent on the resolution of the browser. This means we can target not only mobile devices, but also if they are in landscape and portrait mode.

There are more "optimizations" to come, but we truly hope everyone enjoys using the EZ Corporate Cliche Optimizer Pro, Happy Holidays.