I'm posting here because the Metaio forums are awful and nobody responds so I figured it can't hurt to try here. Metaio Creator is an augmented reality software program.
I don't want the fullscreen Video to go auto play but wait until I touch a 3D object to trigger that fullscreen function.
Half an answer I found said to export the Creator project and edit the logic.js file by removing "fullscreenVideo1.display();" from the trackable's "onDetected" function.
I'm wondering how to import that edited logic.js file back into my project.
Or better yet, how I could edit the custom arel script from within Metaio Creator's UI.
Here is a link to the half answer:
http://helpdesk.metaio.com/questions/19749/how-to-stop-auto-loading-of-fullscreen-video
Here is what the editable arel script looks like for all fullscreen Videos by default.
// Will be executed when the viewer for this object has been closed.
fullscreenVideo3.onClosed = function () {
};
// Will be executed when this object has been loaded.
// Corresponds to arel.Events.Object.ONREADY event.
fullscreenVideo3.onLoaded = function () {
};
fullscreenVideo3.onDisplayed = function () {
};