<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Omniture SiteCatalyst and Test&amp;Target extensions</title>
	<atom:link href="http://www.stratulat.com/blog/omniture-sitecatalyst-and-testtarget-extensions/feed" rel="self" type="application/rss+xml" />
	<link>http://www.stratulat.com/blog/omniture-sitecatalyst-and-testtarget-extensions</link>
	<description>This is my personal blog</description>
	<lastBuildDate>Wed, 04 Aug 2010 12:46:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Daniel</title>
		<link>http://www.stratulat.com/blog/omniture-sitecatalyst-and-testtarget-extensions/comment-page-1#comment-850</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Fri, 21 May 2010 15:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.stratulat.com/blog/?p=252#comment-850</guid>
		<description>I used my old flash and it was indeed the order of the layers that caused the problem. Thanks!!

Now I can fiddle around and check how to track more information and objects :)

Greetings,

Daniel</description>
		<content:encoded><![CDATA[<p>I used my old flash and it was indeed the order of the layers that caused the problem. Thanks!!</p>
<p>Now I can fiddle around and check how to track more information and objects <img src='http://www.stratulat.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Greetings,</p>
<p>Daniel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Remus Stratulat</title>
		<link>http://www.stratulat.com/blog/omniture-sitecatalyst-and-testtarget-extensions/comment-page-1#comment-849</link>
		<dc:creator>Remus Stratulat</dc:creator>
		<pubDate>Fri, 21 May 2010 13:01:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.stratulat.com/blog/?p=252#comment-849</guid>
		<description>Hi, I managed to make it work like this:

I have created a simple text on the stage and added a tracker on it. I&#039;ve done this to test the system and to add all the required tracking infrastructure to my file. 

On the &lt;em&gt;SC Tracking Layer&lt;/em&gt; I have the following:



&lt;blockquote&gt;import com.stratulat.acralexqe.AcralexqeService;

import com.omniture.sitecatalyst.SCGlobals;

var acralexqeService:AcralexqeService = new AcralexqeService();
acralexqeService.account = &quot;&quot;;
acralexqeService.accountDebug = &quot;&quot;;
acralexqeService.useDebugAccount = true;
acralexqeService.debugTracking = true;
SCGlobals.services[&quot;acralexqeService&quot;] = acralexqeService;

import com.stratulat.acralexqe.AcralexqeTracker;

var header_text_tracker1:AcralexqeTracker = new AcralexqeTracker();
header_text_tracker1.service = SCGlobals.services[&quot;acralexqeService&quot;];
header_text_tracker1.target = header_text;
header_text_tracker1.targetEvent = &quot;click&quot;;
header_text_tracker1.type = &quot;pageView&quot;;
header_text_tracker1.customInsight2 = &quot;sss1&quot;;&lt;/blockquote&gt;

Under this layer (the order is important here), I have created another one and added the following code:

&lt;blockquote&gt;
import com.stratulat.acralexqe.AcralexqeTracker;
import flash.events.Event;

var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.INIT, onLoaderInit);
loader.load(new URLRequest(&quot;http://www.youtube.com/v/AIYEtLnQ-P0?version=3&quot;));

function onLoaderInit(e:Event):void {
	trace(&quot;init&quot;);
}

var onYoutube:AcralexqeTracker = new AcralexqeTracker();
onYoutube.service = SCGlobals.services[&quot;acralexqeService&quot;];
onYoutube.target = loader.contentLoaderInfo;
onYoutube.targetEvent = &quot;init&quot;;
onYoutube.type = &quot;pageView&quot;;
onYoutube.customInsight2 = &quot;PLAY&quot;;


stage.addChild(loader);&lt;/blockquote&gt;

Ctrl+Enter will show in the Output panel the debug trace for the tracking. 

I suggest to start with a new file and get this code working and after that changing it will come more easier. Please tell me how it works.</description>
		<content:encoded><![CDATA[<p>Hi, I managed to make it work like this:</p>
<p>I have created a simple text on the stage and added a tracker on it. I&#8217;ve done this to test the system and to add all the required tracking infrastructure to my file. </p>
<p>On the <em>SC Tracking Layer</em> I have the following:</p>
<blockquote><p>import com.stratulat.acralexqe.AcralexqeService;</p>
<p>import com.omniture.sitecatalyst.SCGlobals;</p>
<p>var acralexqeService:AcralexqeService = new AcralexqeService();<br />
acralexqeService.account = &#8220;&#8221;;<br />
acralexqeService.accountDebug = &#8220;&#8221;;<br />
acralexqeService.useDebugAccount = true;<br />
acralexqeService.debugTracking = true;<br />
SCGlobals.services["acralexqeService"] = acralexqeService;</p>
<p>import com.stratulat.acralexqe.AcralexqeTracker;</p>
<p>var header_text_tracker1:AcralexqeTracker = new AcralexqeTracker();<br />
header_text_tracker1.service = SCGlobals.services["acralexqeService"];<br />
header_text_tracker1.target = header_text;<br />
header_text_tracker1.targetEvent = &#8220;click&#8221;;<br />
header_text_tracker1.type = &#8220;pageView&#8221;;<br />
header_text_tracker1.customInsight2 = &#8220;sss1&#8243;;</p></blockquote>
<p>Under this layer (the order is important here), I have created another one and added the following code:</p>
<blockquote><p>
import com.stratulat.acralexqe.AcralexqeTracker;<br />
import flash.events.Event;</p>
<p>var loader:Loader = new Loader();<br />
loader.contentLoaderInfo.addEventListener(Event.INIT, onLoaderInit);<br />
loader.load(new URLRequest(&#8220;http://www.youtube.com/v/AIYEtLnQ-P0?version=3&#8243;));</p>
<p>function onLoaderInit(e:Event):void {<br />
	trace(&#8220;init&#8221;);<br />
}</p>
<p>var onYoutube:AcralexqeTracker = new AcralexqeTracker();<br />
onYoutube.service = SCGlobals.services["acralexqeService"];<br />
onYoutube.target = loader.contentLoaderInfo;<br />
onYoutube.targetEvent = &#8220;init&#8221;;<br />
onYoutube.type = &#8220;pageView&#8221;;<br />
onYoutube.customInsight2 = &#8220;PLAY&#8221;;</p>
<p>stage.addChild(loader);</p></blockquote>
<p>Ctrl+Enter will show in the Output panel the debug trace for the tracking. </p>
<p>I suggest to start with a new file and get this code working and after that changing it will come more easier. Please tell me how it works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.stratulat.com/blog/omniture-sitecatalyst-and-testtarget-extensions/comment-page-1#comment-848</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Fri, 21 May 2010 11:49:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.stratulat.com/blog/?p=252#comment-848</guid>
		<description>Hi Remus,

I have an example in which I want to track if someone clicks on a youtube video.

&lt;blockquote&gt;var loader:Loader = new Loader();
loader.contentLoaderInfo.addEventListener(Event.INIT, onLoaderInit);
loader.load(new URLRequest(&quot;http://www.youtube.com/v/AIYEtLnQ-P0?version=3&quot;));
loader.addEventListener(MouseEvent.CLICK, handler);&lt;/blockquote&gt;

But i have trouble creating a new tracker. Example below:

&lt;blockquote&gt;var onYoutube:testsuitnlwebTracker = new testsuitnlwebTracker();
onYoutube.target = loader;
onYoutube.targetEvent = &quot;click&quot;;
onYoutube.type = &quot;pageView&quot;;
onYoutube.chosenVideo = &quot;PLAY&quot;;
&lt;/blockquote&gt;


When I play it i get this error:

&lt;blockquote&gt;TypeError: Error #1009: Cannot access a property or method of a null object reference.
	at com.omniture.sitecatalyst::TrackerBase/track()
&lt;/blockquote&gt;

My question how can i create an custom tracker to track this loader and send it to the same report suite.

Thanks in advance 

Daniel</description>
		<content:encoded><![CDATA[<p>Hi Remus,</p>
<p>I have an example in which I want to track if someone clicks on a youtube video.</p>
<blockquote><p>var loader:Loader = new Loader();<br />
loader.contentLoaderInfo.addEventListener(Event.INIT, onLoaderInit);<br />
loader.load(new URLRequest(&#8220;http://www.youtube.com/v/AIYEtLnQ-P0?version=3&#8243;));<br />
loader.addEventListener(MouseEvent.CLICK, handler);</p></blockquote>
<p>But i have trouble creating a new tracker. Example below:</p>
<blockquote><p>var onYoutube:testsuitnlwebTracker = new testsuitnlwebTracker();<br />
onYoutube.target = loader;<br />
onYoutube.targetEvent = &#8220;click&#8221;;<br />
onYoutube.type = &#8220;pageView&#8221;;<br />
onYoutube.chosenVideo = &#8220;PLAY&#8221;;
</p></blockquote>
<p>When I play it i get this error:</p>
<blockquote><p>TypeError: Error #1009: Cannot access a property or method of a null object reference.<br />
	at com.omniture.sitecatalyst::TrackerBase/track()
</p></blockquote>
<p>My question how can i create an custom tracker to track this loader and send it to the same report suite.</p>
<p>Thanks in advance </p>
<p>Daniel</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Remus Stratulat</title>
		<link>http://www.stratulat.com/blog/omniture-sitecatalyst-and-testtarget-extensions/comment-page-1#comment-847</link>
		<dc:creator>Remus Stratulat</dc:creator>
		<pubDate>Fri, 21 May 2010 11:08:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.stratulat.com/blog/?p=252#comment-847</guid>
		<description>Hi Daniel, 

It should be possible, I see no reason not to work. Please tell me if you have any difficulties. 

remus</description>
		<content:encoded><![CDATA[<p>Hi Daniel, </p>
<p>It should be possible, I see no reason not to work. Please tell me if you have any difficulties. </p>
<p>remus</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.stratulat.com/blog/omniture-sitecatalyst-and-testtarget-extensions/comment-page-1#comment-846</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Fri, 21 May 2010 08:16:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.stratulat.com/blog/?p=252#comment-846</guid>
		<description>Hi,

I&#039; ve been working with these extensions for a short while. They are very well implemented. 

Does any one of you know by any chance if you can link trackers in as3 to custom created objects. For instance an Loader?

Thanks in advance</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217; ve been working with these extensions for a short while. They are very well implemented. </p>
<p>Does any one of you know by any chance if you can link trackers in as3 to custom created objects. For instance an Loader?</p>
<p>Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Remus Stratulat</title>
		<link>http://www.stratulat.com/blog/omniture-sitecatalyst-and-testtarget-extensions/comment-page-1#comment-845</link>
		<dc:creator>Remus Stratulat</dc:creator>
		<pubDate>Mon, 17 May 2010 16:24:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.stratulat.com/blog/?p=252#comment-845</guid>
		<description>Hi Jeong, 

is there anything you want me to help you with?</description>
		<content:encoded><![CDATA[<p>Hi Jeong, </p>
<p>is there anything you want me to help you with?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeong-kyu Seol</title>
		<link>http://www.stratulat.com/blog/omniture-sitecatalyst-and-testtarget-extensions/comment-page-1#comment-844</link>
		<dc:creator>Jeong-kyu Seol</dc:creator>
		<pubDate>Mon, 17 May 2010 06:37:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.stratulat.com/blog/?p=252#comment-844</guid>
		<description>Hi...
I want to know Omniture products.
Specially, I have an interest in Omniture Insight.</description>
		<content:encoded><![CDATA[<p>Hi&#8230;<br />
I want to know Omniture products.<br />
Specially, I have an interest in Omniture Insight.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Screenshots: Adobe CS5 Omniture integration &#124; Betterify</title>
		<link>http://www.stratulat.com/blog/omniture-sitecatalyst-and-testtarget-extensions/comment-page-1#comment-840</link>
		<dc:creator>Screenshots: Adobe CS5 Omniture integration &#124; Betterify</dc:creator>
		<pubDate>Mon, 03 May 2010 04:38:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.stratulat.com/blog/?p=252#comment-840</guid>
		<description>[...] to Stratulat    Posted by admin &#160;&#160;@&#160;&#160; 3 May 2010 0 [...]</description>
		<content:encoded><![CDATA[<p>[...] to Stratulat    Posted by admin &nbsp;&nbsp;@&nbsp;&nbsp; 3 May 2010 0 [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

