Package org.apache.flex.swf.tags

Examples of org.apache.flex.swf.tags.DefineButton2Tag


        final boolean trackAsMenu = bitStream.readBit();
        final int actionOffset = bitStream.readUI16();
        final ButtonRecord[] characters = readButtonRecords(TagType.DefineButton2);
        final byte[] actions = bitStream.readToBoundary();

        final DefineButton2Tag tag = new DefineButton2Tag();
        tag.setTrackAsMenu(trackAsMenu);
        tag.setActionOffset(actionOffset);
        tag.setCharacterID(buttonID);
        tag.setCharacters(characters);
        tag.setActions(actions);
        return tag;
    }
View Full Code Here

TOP

Related Classes of org.apache.flex.swf.tags.DefineButton2Tag

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.