Hi Klaus,
1. Yes, you can use the instruction
PROPERTYCODE2 to start the timer when progress is 100%. You can define the timer with 0 as initial state, and use Show() to enable it:
Code:
(pano)
{
type=MOV;
file=panorama.mov;
propertycode2=code1,1, "progress",100, "Show("_this_","timeriniseq",1); Show("_this_","timerclose",1);";
settimer=timeriniseq,0, 0.5, "IniSequence(0,1);LoopSequence(0,1);PlaySequence(0,sequence1);";
settimer=timerclose,0, 20.5, "PlayerWindow("close");";
}
(sequence1)
{
type=SEQUENCE;
file=sequence1.txt;
}
2. With PlayerWindow() it's possible to start some functions of the window, this is useful to create interfaces
http://www.devalvr.com/paginas/soporte/ ... AYERWINDOW . But, at this moment it's not possible to change the size of the window. Maybe I could add a new option to do it with two parameters for width and height...
regards!