Correction of MovieBuilder from delain@wanadoo.fr
Status: Beta
Brought to you by:
nickmain
for class readers.MoviBuilder, the done method of
ClipActionBuilder is :
/**
* All actions are done - place the instance
*/
public void done() throws IOException
{
Frame frame = currentFrame();
Instance inst = null;
if( isMove )
{
<b>inst =</b> frame.replaceMovieClip(
symbol, depth, matrix, cxform, name, getActions() );
}
else
{
timeline.setAvailableDepth( depth );
<b>inst =</b> frame.placeMovieClip(
symbol, matrix, cxform, name, getActions() );
}
saveInstance( depth, inst );
}