Examples of WaitForFrame


Examples of flash.swf.actions.WaitForFrame

        return a;
    }

    private WaitForFrame decodeWaitForFrame(int opcode, ActionFactory factory) throws IOException
    {
        WaitForFrame a = new WaitForFrame(opcode);
        if (opcode == sactionWaitForFrame)
            a.frame = reader.readUI16();
        int skipCount = reader.readUI8();
        int skipTarget = actionCount+1 + skipCount;
        factory.addSkipEntry(a, skipTarget);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.