Intégration d’ActionScript
Intégration
Une fois que vous ajoutez la bibliothèque BmtSdkAS3.swc, vous devez ajouter les lignes suivantes dans le code d’initialisation:
import bmt.sdk.BMTracker;
import bmt.sdk.ActionType;
private function init(e:Event = null):void
{
removeEventListener(Event.ADDED_TO_STAGE, init);
// entry point
BMTracker.AppID = "";
//an identifier, assigned to your application;
BMTracker.ConfigurationID = "";
//a tracking identifier, assigned to your application
BMTracker.attachLoaderExceptionHandler(loaderInfo);
// Registration of the global exception handler
BMTracker.ExternalID = "user@email.com";
// Installation of unique user identifier
BMTracker.trackAction(ActionType.AT_SESSION_START);
// Registration of the application download event
}
La configuration
Contrôler la logique de travail de Maxymizely système de suivi, utiliser ces champs et méthodes:
- AppId – un identificateur de la ressource nécessaire pour suivre
- ConfigurationId – un identificateur pour le suivi des utilisateurs
- ExternalId – un identifiant d’utilisateur unique (par exemple, un ID interne d’utilisateur dans la base à données, e-mail, pseudo, Facebook ID, ou toute autre information qui permet d’identifier un utilisateur unique)
Méthodes de configuration supplémentaires:
BMTracker.sendUserAttribute(name:String, value:String)
Cette méthode permet d’attribuer un certain nombre de paramètres supplémentaires à un utilisateur.
Inscription à l’événement
L’enregistrement de l’événement est mis en œuvre en appelant la méthode BMTracker.trackAction dans un tracker.
Paramètres:
BMTracker.trackAction(actionType:uint,
// event type
content:String = "",
// a description of a section/form of the tracked application
name:String = "",
// description of the element where an event takes place
value:Number = 0,
// the value of the element, where an event takes place,
// is used for the following event types: AT_PURCHASE, AT_CHANGEELEMENT
customAttribute1:String = "",
customAttribute2:String = "",
customAttribute3:String = "",
// additional event parameters
referrer:String = "",
// the description of a section/form from which the transfer was made
title:String = "",
// the description of a section/form
windowId:String = ""
// the identifier of a section/form
);
Une liste de valeurs de l’événement:
1. ActionType.AT_BACKGROUNDMODEIN
2. ActionType.AT_BACKGROUNDMODEOUT
3. ActionType.AT_CHANGEELEMENT
4. ActionType.AT_CHECKPOINT
5. ActionType.AT_CLICK
6. ActionType.AT_CLOSENOTIFICATIONWINDOW
7. ActionType.AT_CONFIRMATION
8. ActionType.AT_CRASH
9. ActionType.AT_DOWNLOAD
10. ActionType.AT_EMPTY
11. ActionType.AT_ERROR
12. ActionType.AT_INAPPPURCHASE
13. ActionType.AT_INSTALL
14. ActionType.AT_LOADPAGE
15. ActionType.AT_LOG
16. ActionType.AT_LOGIN
17. ActionType.AT_NEWLEVEL
18. ActionType.AT_OPENNOTIFICATIONWINDOW
19. ActionType.AT_OTHER
20. ActionType.AT_PURCHASE
21. ActionType.AT_REGISTRATION
22. ActionType.AT_SEARCH
23. ActionType.AT_SESSION_END
24. ActionType.AT_SESSION_START
25. ActionType.AT_SUBMIT
26. ActionType.AT_UPLOAD
27. ActionType.AT_VIEWELEMENT
28. ActionType.AT_WARNING