Package tv.porst.swfretools.parser.structures

Examples of tv.porst.swfretools.parser.structures.ButtonCondAction


    final List<ButtonCondAction> actions = new ArrayList<ButtonCondAction>();

    if (actionOffset.value() != 0) {

      do {
        final ButtonCondAction action = ButtonCondActionParser.parse(parser, header, String.format("DefineButton2::ButtonCondAction[%d]", actions.size()));

        actions.add(action);

        if (action.getCondActionSize().value() == 0) {
          break;
        }

      } while (true);
    }
View Full Code Here

TOP

Related Classes of tv.porst.swfretools.parser.structures.ButtonCondAction

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.