I have created an app that has buttons on the front page and when you click on a button it is supposed to navigate through folder paths in a sharepoint site in order to play how to videos within those folders.
-I have buttons on (screen 1) example equation #1.
-I also have a gallery created, example equation #2.
-When the gallery filters, there is a video icon2 next to each of the video titles. When you click the video icon, I want to play the video in the video1 container. Icon2 example equation #3
-and I have a video1 container created, example equation #4
The buttons are navigating correctly. The gallery is filtering correctly. But when I click on the video icon2, it will not play the video in the video1 container.
Reference the example equations below and please advise as to what I am doing wrong.
#1 - Set(varselect,"Video Library/Published Videos/Toyota Systems/Maximo/");Navigate('PublishedVideos'); Set(varTag,"Maximo");
#2 - If( !IsBlank(varselect), Sort( Filter( 'Video Library', IsFolder = false && StartsWith('Folder path', varselect) ), Name, SortOrder.Ascending ), Filter( 'Video Library', IsFolder = true ) )
#3 - Set(varSelectedVideo, galVideos.Selected.'Folder path')
#4 - If(!IsBlank(varSelectedVideo), varSelectedVideo, "" )