Who are you?

by shohei909
WonderflでFlashVarsとして設定されているものを取得するサンプル
取得できるもの
アプリケーションのid
ユーザー名
ユーザーのアイコンのURL
APIキー
flexの場合: http://wonderfl.net/c/7Zoy/edit
♥1 | Line 20 | Modified 2010-09-12 12:56:53 | MIT License
play

ActionScript3 source code

/**
 * Copyright shohei909 ( http://wonderfl.net/user/shohei909 )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/A11h
 */

//WonderflでFlashVarsとして設定されているものを取得するサンプル

//取得できるもの
//アプリケーションのid
//ユーザー名
//ユーザーのアイコンのURL
//APIキー



//flexの場合: http://wonderfl.net/c/7Zoy

package {
    import flash.events.Event;
    import flash.display.Sprite;
    import com.bit101.components.*;
    
    public class FlashTest extends Sprite {
        public function FlashTest() {
            addEventListener(Event.ADDED_TO_STAGE,init);
        }
        
        private function init(e:Event):void{
            var flashVars:Object = root.loaderInfo.parameters;
            var text:Text = new Text(this,0,0);
            text.setSize(455,455);
            text.html = true;
            
            text.text = "This is /" + flashVars["appId"]; 
            //text.text += "<br/>apiKey:" + flashVars["open_api_key"]; 
            //text.text += "<br/>???:" + flashVars["key"]; 
            //text.text += "<br/>time?:" + flashVars["t"]; 
            
            text.text += "<br/><br/>your name: " + flashVars["viewer.displayName"]; 
            text.text += "<br/>your icon: " + flashVars["viewer.iconURL"]; 
            text.text += "<img src='" + flashVars["viewer.iconURL"] +"'/>"
            
        }
    }
}