|
From: <ham...@t-...> - 2003-02-11 00:11:13
|
>> >> I'm compiling a bunch of images into an swf file that >> will act as a canister where I can grab all of the images >> later on. One of the things is how do I manipulate these >> images one I've loaded them in. The easiest way would >> be to work with attachMovie. This requires that the movieclips >> have an idName. =20 >> $movie->addExport($movieclip, $name); $movie->writeExports(); note that unlike flash, you can put the writeexports wherever you want - F5 always did that at the very first frame, and there are not too many choices in F6 Note also that if a frame does not play, its exports will not happen (say if your movie jumps from frame 2 to frame 4, exports declared in frame 3 would be skipped) Wolfgang |