Integrating ConversionRuler with Flash

From Market Ruler Help
Jump to: navigation, search

Integrating ConversionRuler with Adobe Flash is straightforward; you simply invoke the tracking snippet on the page in ActionScript in your Flash Movie.

A simple example of this would be:

ActionScript 3.0:

import flash.external.*;

function cr_track(action):void
{ 
 	ExternalInterface.call("__CR.track("+action+")");
} 

trackable.addEventListener("click", function () { cr_track(1); });

ActionScript 2.0:

function cr_track(action)
{ 
	import flash.external.*;
	ExternalInterface.call("__CR.track("+action+")");
}

trackable.onPress = function () { __CR.track(1) };

Where "trackable" is our button instance name.

Note as well that the __CR.track function defined above (in ActionScript) simply calls __CR.track (in JavaScript) defined on your web page.