I have just start learning Metaio. I am working on a simple development test project.
I have so far made the tracking sheet, put image and two arrows (buttons) which means next image and previous image.
For testing I made one of the buttons to display the image and the other for hiding the image. All this works fine so far.
My question is when I added extra images how can I shift the images dynamically back and forward using my next and previous buttons?
My testing code:
button2.onTouchStarted = function () {
image1.hide();
};
button1.onTouchStarted = function () {
image1.display();
};

It can be done different ways, I suggest you to use
arel.Scene.getObjectand put your image names inside array and each time you click next or previous you count the array key up or down.I assume you are using Metaio Creator editor.
You have to added codes 3 different places:
Previous (left arrow button)
Next (right arrow button)
On your Global Script