Package flash.swf.actions

Examples of flash.swf.actions.Unknown


        return a;
    }

    private Unknown decodeUnknown(int opcode, int length) throws IOException
    {
        Unknown a = new Unknown(opcode);
        a.data = new byte[length];
        reader.readFully(a.data);
        return a;
    }
View Full Code Here

TOP

Related Classes of flash.swf.actions.Unknown

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.