(A George Script For Aura)

Written By Ray Foster


(Note: This script only works with Aura 1.0)


You can go to the bottom of the page from here and click on the link to download this script, or take a look at the acutal script, which is between the start and end George script lines.

< ---------------------------------- Start of George Script ----------------------- >
// extend.grg - rfoster
// add duplicate frames to selected range of frames
// to extend animation, introduce holds or change pacing

param none
connect "aura commands"
tv_request "Extend length of selected range |Continue|Stop"
answer=result

if (answer==0)
exit
end

tv_reqnum 1 1 10 "Add how many duplicates of each frame"
dup=result
test=CMP(dup,"Cancel")

if test==1
exit
end



//++++++++++++++++++++++++++++++++++++


tv_layerselectinfo
string=result
parse string start number

for i=0 to number-1

tv_layerselect start 1 // select image as current

for x=1 to dup
tv_layerinsertimage 0
end

start=start+(dup+1)

end

tv_currentimage
last=result

tv_layerselect (last-dup) dup
tv_layercut
< ---------------------------------- End of George Script ----------------------- >


Click Here to Download Extend.zip


Well that does it for this one, till next time...


To contact Ray Foster you can E-Mail him at rfoster@idirect.com

Back To The Tutorial Page
Copyright © 2001 Visual Inspirations