Joined: December 14th, 2004, 5:08 pm Posts: 55 Location: Holland
Opus: version 8.0
OS: XP, Vista, Windows7, Windows8
System: Intel Corei7-2600 CPU 3.400GHz
|
Hi is there someone who can help me out with a script to move a set of frames using a fork syntax
So far I hav the following script
function startForkingl()
{
for (num=1; num<=3; num++)
{
eval("FrameFork"+num +".Show();");
wait(1);
//the next two actions I want to set as a fork syntax
eval(fork+"FrameFork"+num+".Scale(1,1,4,true);");
eval(fork"FrameFork"+num+".Move( 50, -50, 2, true );");
///no more fork here
wait(5);
eval("FrameFork"+num+".Scale(-0.95,-0.95,4,true);");
}
}
Thanks in advance for any help given
BR
Jim
|
|