Topic: TiltViewer-Pro questions for flash projector
Greetings all,
To start off cool product!
Now on to my questions.
I am embedding TiltViewer-pro within a projector (set to full screen) and Iām having a few problems with the action scripting settings.
Question 1:
When TiltViewer is embedded into the second scene of my presentation it moves all of my other flash elements to the upper left corner of the screen. Is tere any way to prevent this from happening?
Question 2:
I am also attempting to use the mask feature in the action scripting:
[code]stage.addEventListener(Event.ENTER_FRAME,resizeTiltViewer);
function resizeTiltViewer(e:Event){
//example tiltViewer size and position values
var tvWidth = stage.stageWidth/2;
var tvHeight = stage.stageHeight/2;
var tvX = stage.stageWidth/4;
var tvY = stage.stageHeight/4;
ldr.x = tvX;
ldr.y = tvY;
var tiltviewer = Object(ldr.content)._app;
if ( tiltviewer != null){
tiltviewer.autoSize = false;
tiltviewer.setSize(tvWidth,tvHeight);
}
}
[/code]
can you please provide further instruction in greater detail of how to accurately mask the TiltViewer?
Thanks in advance!
[/code]