Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
I'm trying to get a video to play automatically when the experience first loads. Why does the following line in Home.js not work?
$scope.app.view['Home'].wdg['video-1'].srv.play;
Try using the following in your JS function:
document.querySelectorAll('video')[0].play();