Hi,
I'm still learning the iAd Producer app and I'm curious to know how to load action list via Code. My code below throws an error.
Thanks!
//start of code
var fPlay = false
this.onMediaPlaybackDidStart = function (event) {
// Code here for the "Did Start Playback" event.
if(!fPlay){
fPlay = true;
loadActionList('fadeOut')
}
};