Heyzap Analytics Integration Tutorials
The following tutorials are designed to guide you through adding Heyzap Analytics to your flash game.
The current latest Heyzap developer tools API version is 3.3.1.
Contents
Install Heyzap Analytics
To use Heyzap Analytics, you'll need to download and install the Heyzap tools.
Once you've installed the Heyzap tools, Heyzap Analytics will be active. You'll be able to monitor your game's analytics from the Heyzap developer dashboard on the analytics tab for your game.
Track Custom Game Events With Heyzap Analytics
You can track in-game events, such as when your players complete each level, by sending the events to Heyzap Analytics.
To track custom events, first download and install the Heyzap tools in your game.
Now paste the following ActionScript code into your game wherever you want to track the event, for example at the end of a level:
Code Snippet:
HeyzapTools.send("trackEvent", {event: "completed-level-5"});
You will then be able to track these events on the Heyzap developer dashboard on the analytics tab for your game, under custom events.


