Package flash.swf.actions

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

Related Classes of flash.swf.actions.WaitForFrame

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.