亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? swfactions.java

?? java版本的flash文件(swf)播放器
?? JAVA
字號:
/****************************************************************
 * Copyright (c) 2001, David N. Main, All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or
 * without modification, are permitted provided that the
 * following conditions are met:
 *
 * 1. Redistributions of source code must retain the above
 * copyright notice, this list of conditions and the following
 * disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above
 * copyright notice, this list of conditions and the following
 * disclaimer in the documentation and/or other materials
 * provided with the distribution.
 *
 * 3. The name of the author may not be used to endorse or
 * promote products derived from this software without specific
 * prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 * AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 ****************************************************************/
package com.anotherbigidea.flash.interfaces;

import java.io.IOException;

/**
 * Interface for passing Action Codes
 *
 * Lifecycle is -
 *  1. start(..) is called with any condition flags (e.g. event codes) for the
 *               action array
 *  2. action methods are called
 *  3. end() is called to terminate array
 *  4. 1..3 is repeated for any subsequent condition blocks
 *  5. done() is called to terminate all action passing
 */
public interface SWFActions
{
    /**
     * Start of actions
     */
    public void start( int flags ) throws IOException;

    /**
     * End of all action blocks
     */
    public void done() throws IOException;

    /**
     * End of actions
     */
    public void end() throws IOException;

    /**
     * Pass through a blob of actions
     */
    public void blob( byte[] blob ) throws IOException;

    /**
     * Unrecognized action code
     * @param data may be null
     */
    public void unknown( int code, byte[] data ) throws IOException;

    /**
     * Target label for a jump - this method call immediately precedes the
     * target action.
     */
    public void jumpLabel( String label ) throws IOException;

    /**
     * Comment Text - useful for debugging purposes
     */
    public void comment( String comment ) throws IOException;

    //--Flash 3 Actions:
    public void gotoFrame( int frameNumber ) throws IOException;
    public void gotoFrame( String label ) throws IOException;
    public void getURL( String url, String target ) throws IOException;
    public void nextFrame() throws IOException;
    public void prevFrame() throws IOException;
    public void play() throws IOException;
    public void stop() throws IOException;
    public void toggleQuality() throws IOException;
    public void stopSounds() throws IOException;
    public void waitForFrame( int frameNumber, String jumpLabel ) throws IOException;
    public void setTarget( String target ) throws IOException;

    //--Flash 4 Actions:
    public void push( String value ) throws IOException;
    public void push( float  value ) throws IOException;
    public void pop() throws IOException;

    public void add() throws IOException;
    public void substract() throws IOException;
    public void multiply() throws IOException;
    public void divide() throws IOException;

    public void equals() throws IOException;
    public void lessThan() throws IOException;

    public void and() throws IOException;
    public void or() throws IOException;
    public void not() throws IOException;

    public void stringEquals() throws IOException;
    public void stringLength() throws IOException;
    public void concat() throws IOException;
    public void substring() throws IOException;
    public void stringLessThan() throws IOException;
    public void stringLengthMB() throws IOException;
    public void substringMB() throws IOException;

    public void toInteger() throws IOException;
    public void charToAscii() throws IOException;
    public void asciiToChar() throws IOException;
    public void charMBToAscii() throws IOException;
    public void asciiToCharMB() throws IOException;

    public void jump( String jumpLabel ) throws IOException;
    public void ifJump( String jumpLabel ) throws IOException;

    public void call() throws IOException;

    public void getVariable() throws IOException;
    public void setVariable() throws IOException;

    //----------------------------------------------------------
    public static final int GET_URL_SEND_VARS_NONE = 0;  //don't send variables
    public static final int GET_URL_SEND_VARS_GET  = 1;  //send vars using GET
    public static final int GET_URL_SEND_VARS_POST = 2;  //send vars using POST

    public static final int GET_URL_MODE_LOAD_MOVIE_INTO_LEVEL  = 0;
    public static final int GET_URL_MODE_LOAD_MOVIE_INTO_SPRITE = 1;
    public static final int GET_URL_MODE_LOAD_VARS_INTO_LEVEL   = 3;
    public static final int GET_URL_MODE_LOAD_VARS_INTO_SPRITE  = 4;

    public void getURL( int sendVars, int loadMode ) throws IOException;
    //----------------------------------------------------------

    public void gotoFrame( boolean play ) throws IOException;
    public void setTarget() throws IOException;
    public void getProperty() throws IOException;
    public void setProperty() throws IOException;
    public void cloneSprite() throws IOException;
    public void removeSprite() throws IOException;
    public void startDrag() throws IOException;
    public void endDrag() throws IOException;
    public void waitForFrame( String jumpLabel ) throws IOException;
    public void trace() throws IOException;
    public void getTime() throws IOException;
    public void randomNumber() throws IOException;

    //--Flash 5 Actions
    public void callFunction() throws IOException;
    public void callMethod() throws IOException;
    public void lookupTable( String[] values ) throws IOException;

    //startFunction(..) is terminated by matching endBlock()
    public void startFunction( String name, String[] paramNames ) throws IOException;
    public void endBlock() throws IOException;

    public void defineLocalValue() throws IOException;
    public void defineLocal() throws IOException;

    public void deleteProperty() throws IOException;
    public void deleteThreadVars() throws IOException;

    public void enumerate() throws IOException;
    public void typedEquals() throws IOException;
    public void getMember() throws IOException;

    public void initArray() throws IOException;
    public void initObject() throws IOException;
    public void newMethod() throws IOException;
    public void newObject() throws IOException;
    public void setMember() throws IOException;
    public void getTargetPath() throws IOException;

    public void startWith() throws IOException;  //terminated by matching endBlock()

    public void convertToNumber() throws IOException;
    public void convertToString() throws IOException;
    public void typeOf() throws IOException;
    public void typedAdd() throws IOException;
    public void typedLessThan() throws IOException;
    public void modulo() throws IOException;

    public void bitAnd() throws IOException;
    public void bitOr() throws IOException;
    public void bitXor() throws IOException;
    public void shiftLeft() throws IOException;
    public void shiftRight() throws IOException;
    public void shiftRightUnsigned() throws IOException;

    public void decrement() throws IOException;
    public void increment() throws IOException;

    public void duplicate() throws IOException;
    public void returnValue() throws IOException;
    public void swap() throws IOException;
    public void storeInRegister( int registerNumber ) throws IOException;

    public void push( double value ) throws IOException;
    public void pushNull() throws IOException;
    public void pushRegister( int registerNumber ) throws IOException;
    public void push( boolean value ) throws IOException;
    public void push( int value ) throws IOException;
    public void lookup( int dictionaryIndex ) throws IOException;
    
	//--Flash 6 Actions
	public void instanceOf() throws IOException;
	public void enumerateObject() throws IOException;
	public void strictEquals() throws IOException;
	public void greaterThan() throws IOException;
	public void stringGreaterThan() throws IOException;    
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91精品在线免费观看| 中文字幕第一区| 亚洲伊人色欲综合网| 成人免费视频一区| 久久久.com| 日韩国产在线观看| 欧美亚洲国产一区二区三区va| 国产欧美日韩精品在线| 免费成人在线观看视频| 欧美大度的电影原声| 狠狠色狠狠色综合系列| 中文字幕欧美区| 91精品办公室少妇高潮对白| 亚洲成a天堂v人片| 精品国产麻豆免费人成网站| 国产精品小仙女| 亚洲激情网站免费观看| 欧美日韩一级视频| 国产综合久久久久久鬼色| 国产精品嫩草影院av蜜臀| 色哟哟国产精品免费观看| 日韩精品电影一区亚洲| 久久嫩草精品久久久精品一| 国产69精品久久99不卡| 一区二区三区91| 日韩欧美电影在线| 不卡电影一区二区三区| 香蕉影视欧美成人| 久久综合色播五月| 欧美性猛片aaaaaaa做受| 精品一区二区三区香蕉蜜桃| 国产精品成人免费| 日韩欧美亚洲一区二区| 99久久精品国产观看| 日本欧美在线看| 国产精品黄色在线观看| 欧美二区三区的天堂| 成人ar影院免费观看视频| 亚洲成人激情av| 欧美国产激情二区三区| 欧美日韩精品一区二区三区蜜桃| 国内成人精品2018免费看| 一区二区三区电影在线播| 精品国产一区二区三区久久影院 | 天堂影院一区二区| 国产人伦精品一区二区| 欧美人动与zoxxxx乱| 99久久er热在这里只有精品15| 日本三级亚洲精品| 亚洲午夜一区二区| 国产精品蜜臀av| 精品久久久久久久久久久久包黑料| 99久久久精品| 高清在线不卡av| 久久精品99国产精品| 亚洲一区二区三区视频在线播放| 国产三级精品视频| 欧美一级在线免费| 欧美日韩免费在线视频| 91麻豆视频网站| 豆国产96在线|亚洲| 美美哒免费高清在线观看视频一区二区| 国产精品超碰97尤物18| 日韩欧美一区二区久久婷婷| 色先锋aa成人| 日本道色综合久久| 99re这里都是精品| 91一区二区在线观看| www.99精品| 99久久er热在这里只有精品66| 成人一区二区三区视频在线观看 | 欧美白人最猛性xxxxx69交| 欧美撒尿777hd撒尿| 色呦呦国产精品| 91香蕉视频在线| 99久久久久久| 色婷婷精品大在线视频| 91麻豆福利精品推荐| 99在线精品视频| 色综合一区二区三区| 成人国产在线观看| 99免费精品在线观看| 成人黄页在线观看| 99久久精品免费观看| 91小视频免费看| 欧美性受极品xxxx喷水| 在线免费视频一区二区| 欧美三区在线视频| 欧美日韩成人综合天天影院| 欧美亚洲愉拍一区二区| 91精品国产综合久久婷婷香蕉| 337p亚洲精品色噜噜| 精品成人一区二区| 欧美激情一区二区三区在线| 中文av字幕一区| 亚洲女子a中天字幕| 亚洲国产精品一区二区尤物区| 午夜婷婷国产麻豆精品| 蜜臂av日日欢夜夜爽一区| 国产中文字幕精品| 成人黄色片在线观看| 91日韩精品一区| 欧美色老头old∨ideo| 日韩一区二区在线看片| 精品美女在线播放| 国产日韩欧美电影| 亚洲人成亚洲人成在线观看图片 | 国产午夜精品福利| 国产日本一区二区| 亚洲色图在线看| 视频在线在亚洲| 美女在线一区二区| 93久久精品日日躁夜夜躁欧美| 欧美喷潮久久久xxxxx| 26uuu欧美| 亚洲精品国产精华液| 日本不卡一区二区三区| 国产91精品久久久久久久网曝门| 91精品福利在线| 精品入口麻豆88视频| 亚洲色图在线播放| 免费成人结看片| 北条麻妃一区二区三区| 91精品在线一区二区| 欧美激情自拍偷拍| 日韩精品久久久久久| 成人综合在线观看| 欧美日韩精品一区二区在线播放| 欧美精品一区二区三区蜜桃视频 | 亚洲国产精品av| 日韩精品成人一区二区在线| 丁香天五香天堂综合| 91精品视频网| 亚洲欧美日韩成人高清在线一区| 青青草97国产精品免费观看 | 樱花草国产18久久久久| 国产主播一区二区| 欧美一区二区三区在线电影| 亚洲日本成人在线观看| 丰满少妇在线播放bd日韩电影| 欧美精品自拍偷拍动漫精品| 日韩理论片中文av| 粗大黑人巨茎大战欧美成人| 制服.丝袜.亚洲.中文.综合| 亚洲麻豆国产自偷在线| 不卡在线视频中文字幕| 2欧美一区二区三区在线观看视频| 香蕉久久一区二区不卡无毒影院| 99久久精品情趣| 国产精品乱码人人做人人爱| 国产一区二区三区综合| 91精品一区二区三区久久久久久| 亚洲自拍偷拍图区| 色综合av在线| 亚洲欧美在线观看| 成人丝袜18视频在线观看| 久久久av毛片精品| 国模套图日韩精品一区二区| 精品理论电影在线| 蜜桃视频一区二区三区在线观看 | 欧美电视剧免费观看| 男女男精品网站| 日韩午夜电影在线观看| 日本aⅴ亚洲精品中文乱码| 欧美日韩高清一区| 午夜欧美一区二区三区在线播放| 欧美色视频一区| 丝袜亚洲另类欧美综合| 69精品人人人人| 久久成人免费网| 精品少妇一区二区三区视频免付费 | 丁香激情综合国产| 国产精品卡一卡二卡三| av亚洲精华国产精华精华 | 99久久99久久综合| 17c精品麻豆一区二区免费| www.66久久| 亚洲一区二区美女| 91精品国产高清一区二区三区蜜臀| 日精品一区二区| 欧美tk—视频vk| 国产成人在线色| 一区二区三区在线免费视频| 欧洲人成人精品| 青青青伊人色综合久久| 日韩欧美电影一区| 国产69精品久久久久毛片| 亚洲人成网站在线| 欧美日韩久久久| 久久电影网站中文字幕| 国产精品乱码一区二区三区软件| 91丝袜美女网| 日韩1区2区日韩1区2区| 久久久久久久久久久久久久久99| 成人午夜视频免费看| 亚洲国产综合91精品麻豆| 日韩精品在线看片z| av在线这里只有精品| 亚洲成人av一区二区| 久久久久久一级片|