
Just finished implementing this James Bond BluRay Advert within the Eyeblaster HD video system. Its using the latest Adobe F4V video format, with the latest video encoding techniques and codecs (MainConcept h.264).Preview below – Kurt Grung.

Eyeblaster is now supporting HD (High Definition) video playback from within online adverts – on instant playback, they will also soon have native H264 support built into the Eyeblaster patform and allow allot larger assets (for HD video) to be streamed/progessively download, here a preview of whats to come: http://eyeblaster.org/projects/darkknight/.
Now that the format has been out for a while there are loads more HD projects (that I have built) its becoming a very popular format! check out more here: http://eyeblaster.org/projects/.
Eyeblaster will also be launching (today) the Creative Zone so keep your eyes peeled to this URL: http://creativezone.eyeblaster.com
Going to have some pretty nifty stuff on the website advert gallery forums loads of handy stuff!
Adobe/Macromedia – site of the day (award). Eyeblaster Campaign Monitor
Created with Flash and Flex Builder, Eyeblaster Campaign Monitor is a powerful solution that enables clients to monitor their online ad campaigns. Combining top-line measurement, metrics, and ROI data with the ability to drill down into each ad campaign, this tool presents clients with a more complete picture of campaign performance. And the revolutionary user interface puts cumbersome information right at the user’s fingertips. (Oct. 16, 2007)
Developed by Eyeblaster
Industries Technology
Project Types Web Sites
–
Very nice piece of technology and definitely worth a shout out, well done guys!
2007 Eyeblaster 6th Annual Awards, will be held in NYC.
Cast your vote at:
http://www.eyeblaster.com/awards
There’s a few nice adverts up take a look! My Sony Ericsson advert didn’t make it ;( oh well … take a look at it here utilizes upload functionality and advanced behavioral synchronizing: click here.
This code can be used with Eyeblasters polling system, or any stanalone XML feeds.
//ActionScript code
//XML Variable String to Numeric conversion//by kurt.grung 3l3373.com//
xml = new XML();
xml.ignoreWhite = true;
xml.load('data.xml');
//
xml.onLoad = function(){
nodeX = this.firstChild.firstChild.nextSibling.childNodes;
lenX = nodeX.length;
trace('XML vars\n---');
for(var n=0; n!=lenX; n++){
numX = parseInt(nodeX[n].attributes.counter);
_level0['celebTextbox'+n] = numX;
trace('celebTextbox'+n+' = '+numX);
}
trace('\n');
sortX();
};
//
//XML code
//Referance
http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary621.html
http://livedocs.adobe.com/flash/mx2004/main_7_2/wwhelp/wwhimpl/common/html/wwhelp.htm?context=Flash_MX_2004&file=00001201.html
How to ‘Crossdomain’ guide, here is all you need to get you started (below). Crossdomain basically allows you to connect between servers (i.e. load in external files from external URLs/domains) pretty handy when you need information sitting on external servers.
//AS3 Version
This is how to use the crossdomain function inside AS3 a few changes – just mainly to remove the “System.” from the start and start upper case ‘Security.’ see the example below…
//code
//crossdomain
Security.loadPolicyFile(“http://domainX.com/crossdomain.xml”);
Security.allowDomain(“*”);
Security.allowInsecureDomain(“*”);
//more here
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/system/Security.html
//AS2 Version
This needs to be added to the file you are trying to receive the information from.
//crossdomain Action Script Code
Security.loadPolicyFile(“http://domainX.com/crossdomain.xml”);
bc[as].System.security.allowDomain(“*.domainX.com”);
bc[as].System.security.allowInsecureDomain(“*.domainX.com”);
System.security.allowDomain(“*.domainX.com”);
System.security.allowInsecureDomain(“*.domainX.com”);
System.security.allowDomain(“*”);
System.security.allowInsecureDomain(“*”);
This need to be added to the _root of the external server you are trying to connect to to receive the data into the flash. XML files needs to be called ‘crossdomain.xml’.
//crossdomain XML Code
cross-domain-policy
allow-access-from domain=”*.domainX.com”
allow-access-from domain=”*”
cross-domain-policy
http://3l3373.com/dl/tutorials/crossdomain/crossdomain.xml
Eyeblaster Crossdomain IPs/URLs
http://3l3373.com/dl/tutorials/crossdomain/eb_crossdomain.xml
//Sample Files
http://3l3373.com/dl/tutorials/crossdomain/crossdomain.rar
//Useful links
http://moock.org/asdg/technotes/crossDomainPolicyFiles/
//MORE
http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/system/Security.html
It was a write up i did for Eyeblaster Newsletter a whle back using there sync components, i thought i’d just document it: here.
Our new synchronized ads allow multiple adverts to interact on the same page. The ads can be setup easily through the eyeblasterwiz platform. Below is a brief guide to getting started.
You will need to download the latest Eyeblaster Extension Package, to make sure you have all the latest components & add the ‘Eyeblaster security include’ on the first frame (#include “ebFlashActions.as”).
01: Component – In your components list under Eyeblaster add the component named “EbAdMessaging†to the timeline on frame 2 and call it “adMessengerâ€.
02: Recognise – Making the system aware which banners are synchronized on the same campaign or linked on the backend. Adding this ActionScript on the third frame; adMessenger.register(“firstBanner”); & adding “secondBanner†on the other creative as the alternative or so forth.
03: Connecting – To synchronize creatives you will need a function on the first frame under the security include, add this ActionScript:
function secoundBannerHandler(secondBanner_changer){
_root.gotoAndPlay(‘secondBanner’);
}
Then add this script anywhere on the timeline to interact with the other synchronized format “secondBannerâ€:
_root.adMessenger.sendEvent(“secondBanner”, “B2copyend”, 1);
This command loads the function/handler which has been defined on the first frame on ‘firstBanner’ which calls the function gotoAndPlay command on your “secondBanner†(make sure you add the same Components/Security/ActionScript/functions in the same order on the “secondBannerâ€).
Click here to view the first ever synchronized format to be made on the system.
The banner above was the first real sync advert to run on there system using there components, which i designed and syn’d was a fun project.
They have some new (v.2) ones out might write a bit of info here about it then i get a chance.