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:CameraTag.observe(YOUR_WALL_ID, "initialized", function(){ myWall = CameraTag.video_walls["YOUR_WALL_ID"]; })
Once you have the instance calling methods is as simple as
myWall.nextPage();