I have a collection of objects tied to a Gallery that stores information for the video component. An example is the following:
ClearCollect(
vidList,
Table(
{
VideoTitle: "Autumn Forest Walk",
VideoURL: 'coverr-autumn-forest-9642-1080p',
PauseVideoOnEnd: false,
IsComplete:false
}
)
)
The issue is that on the OnEnd of the player for that particular object, I want to have IsComplete set to true so that in the Gallery, I can reference ThisItem.IsComplete and have it reflect 'true' instead of remaining false as it does.
Any Ideas? This is the last major hurdle (I think) in accomplishing what I would like to do, which is show a image on the video lists for the ones that have completed.