i found a simple solution myself but maybe you can help me to improve the script. the layer is scaled now linear from 0 to 63 beginning at the inpoint. It would surely look better if it goes from for example from 0 to 80 in 10 frames and from 80 to 63 in 3 frames.
any ideas.
best regards
Clemens
adjust = 90
temp= time – inPoint;
temp = temp * adjust
temp =Math.min(temp, 63) ;
outtemp= outPoint -time;
outtemp = outtemp * adjust
outtemp =Math.min(outtemp, 63) ;
temp =Math.min(temp, outtemp) ;
[temp,temp]