Package com.anotherbigidea.flash.interfaces

Examples of com.anotherbigidea.flash.interfaces.SWFActions


        tagExport(new String[] {names[i]}, new int[] {i + 100});
        tagShowFrame();
      }

      // Prevent the movie from looping
      SWFActions actions = tagDoAction();
      SWFActionBlock block = actions.start(0);
      block.stop();
      block.end();
      actions.done();
      tagShowFrame();

      // End the SWF file
      super.tagEnd();
    }
View Full Code Here


                // heritrix: flags size changed in swf version 6
                clipEventFlags = mFlashVersion < 6 ? in.readUI16() : in.readSI32();
            }

            SWFActions actions = mTagtypes.tagPlaceObject2(isMove, clipDepth,
                    depth, charId, matrix, cxform, ratio, name, clipEventFlags);

            if (hasClipActions && actions != null) {
                int flags = 0;

                // heritrix: flags size changed in swf version 6
                while ((flags = mFlashVersion < 6 ? in.readUI16() : in.readSI32()) != 0) {
                    in.readUI32(); // length

                    actions.start(flags);
                    ActionParser parser = new ActionParser(actions, mFlashVersion);

                    parser.parse(in);
                }

                actions.done();
            }
        }
View Full Code Here

TOP

Related Classes of com.anotherbigidea.flash.interfaces.SWFActions

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.