controlling swfs with lingo
controlling swfs with lingo
(OP)
Hi, I want to play a bunch of swfs in director in a straight forward sequence. However I want each swf to be in a single frame because it will be easier to manage, rather than stretching each swf to its correct length in the timeline (there are a lot of swfs). I am not too familiar with lingo, so could someone please point me in the right direction? Thank you very much
RE: controlling swfs with lingo
on exitFrame me
_movie.go(_movie.frame)
end exitFrame
Kenneth Kawamoto
www.materiaprima.co.uk
RE: controlling swfs with lingo
RE: controlling swfs with lingo
if sprite(1).frame < sprite(1).member.frameCount then
_movie.go(_movie.frame)
end if
end exitFrame
Kenneth Kawamoto
www.materiaprima.co.uk
RE: controlling swfs with lingo