1 //
2 // Description:
3 //    SWFMovieClip Interface
4 //
5 // Authors:
6 //    Jonathan Shore <jshore@e-shuppan.com>
7 //    Based on php wrapper developed by <dave@opaque.net>
8 //
9 // Copyright:
10 //    Copyright 2001 E-Publishing Group Inc.  Permission is granted to use or
11 //    modify this code provided that the original copyright notice is included.
12 //
13 //    This software is distributed with no warranty of liability, merchantability,
14 //    or fitness for a specific purpose.
15 //
16 
17 
18 
19 
20 
21 
22 
23 //
24 //  SWFMovieClip Interface
25 //	movie clip
26 //
27 //  Notes
28 //    -	one simply draws the shapes and adds to the movie at a specific
29 //	frame
30 //
31 public interface SWFMovieClipI extends SWFObjectI {
32 
setFrames(int nframes)33     public void			setFrames (int nframes);
34 
add(SWFObjectI object)35     public SWFDisplayItemI	add (SWFObjectI object)			throws SWFException;
add(SWFObjectI object, int depth)36     public SWFDisplayItemI	add (SWFObjectI object, int depth)	throws SWFException;
remove(SWFDisplayItemI item)37     public void			remove (SWFDisplayItemI item);
38 
nextFrame()39     public void			nextFrame ();
labelFrame(String label)40     public void			labelFrame (String label);
41 };
42 
43 
44 
45 
46