Can I check if a slide has been viewed?

Mar 06, 2013

Just a quick question - is there any type of call I can make to see if a slide has been viewed or not?

Right now it seems like I would have to do it manually tracking a global array  on each slide.

Curious if there is any type of API call I can make to see if a slide has been viewed already.

Thanks

1 Reply
Rob Verzera

Figured it out...just in case anyone is after the same thing...

var ArtAPI = _level0.ArtAPI;var presData = ArtAPI.GetPresentationData()for (i = 0; i 
{	var strSlideId = presData.Slides[0].Slide[i]._attributes.id;	var viewLength:Number = _level44.g_oTrackingInfo[strSlideId].arrViews.length;	if (viewLength >0) {		      //we have seen this slide before		} else {			// has not been seen yet		}}

Thanks to this.onEnterFrame.

This discussion is closed. You can start a new discussion or contact Articulate Support.