Package flash.swf.actions

Examples of flash.swf.actions.DefineFunction


        return p;
    }

    private DefineFunction decodeDefineFunction(int pos, int len) throws IOException
    {
        DefineFunction a = new DefineFunction(ActionConstants.sactionDefineFunction);
        a.name = reader.readString();
        int number = reader.readUI16();
        a.params = new String[number];

        for (int i = 0; i < number; i++)
View Full Code Here


        return a;
    }

    private DefineFunction decodeDefineFunction2(int pos, int len) throws IOException
    {
        DefineFunction a = new DefineFunction(ActionConstants.sactionDefineFunction2);
        a.name = reader.readString();
        int number = reader.readUI16();
        a.params = new String[number];
        a.paramReg = new int[number];
View Full Code Here

TOP

Related Classes of flash.swf.actions.DefineFunction

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.