stmartinez
unread,Jun 8, 2011, 10:23:53 AM6/8/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to GA Tracking For Adobe Flash
Hi I am trying to track e-commerce transaction and item in flex
application with analytics.swc
I have used debug mode and I get that:
trackPageview( /9870 )
addTrans( 9870, Acme Clothing, 11.99, 1.29, 5, San Jose, California,
USA ) not implemented
Gif Request #2 sent
addItem( 9870, DD44, T-Shirt, Green Medium, 11.99, 1 ) not implemented
trackTrans() not implemented
Is there something missing in analytics.swc or I have forget somthing.
My Flex Code :
public function onButtonClick3():void
{
tracker.trackPageview( "/9870" );
tracker.addTrans("9870","Acme Clothing",
11.99,1.29,5,"San Jose","California","USA");
tracker.addItem("9870","DD44","T-Shirt","Green Medium",
11.99,1);
tracker.trackTrans();
}
Please help.