Wall JS Methods
You can control your <wall> using our Javascript API. Below is a full list of the available methods.How do I call methods on a wall instance?
Methods
loadPage
nextPage
previousPage
How do I call methods on a wall instance?
You can get your wall's JS instance by accessing it in the CameraTag video_walls array once the camera has initialized:CameraTagWall.observe("myWall1", "initialized", function(){ alert("wall initialized"); this.nextPage(); })
Once you have the instance calling methods is as simple as
this.nextPage();