insertSWF()

Type : public method

Support : 0.6

Return : Element

  • 대상 개체 자식 요소로 SWF 삽입.
  • <object>태그를 웹표준에 맞춰 생성해준다.
    대상 개체를 설정하지 않으면 화면에 append 할 수 없기 때문에 ExternalInterface로 연결할수 없고, 때문에 onReady를 받을수 없다.

Methods

  • insertSWF( path, width, height, params, dispatch, attributes ) : Elementver 0.6~

    onReady 이벤트를 발생시키기 위해서는 flash에서 ExternalInterface.call( _onSwfEvent, { type: 'ready', id: _myID, value: 'test_value'} ); 형식으로 호출해줘야 한다.
    • path : String
      SWF 경로
    • width : Number
      SWF 가로 사이즈
    • height : Number
      SWF 세로 사이즈
    • params : Object
      SWF에 전달할 params
    • dispatch : Object
      dispatch.onReady이벤트 전달, {type, id, target, value}
    • attributes : Object
      id, wmode, version, info 설정, 기본값 {id: '없으면 자동생성', wmode: 'opaque', version: '10,0,0,0', info: 'Adobe Flash Player를 설치해야 이용가능한 콘텐츠 입니다.'}

Example

var params = { myName: '홍길동', age: 24 };
$B( '#box' ).insertSWF( 'files/test.swf', '200', '100', params );

//
var attr = {
    id: 'mySWF',
    wmode: 'window',
    info: 'Adobe Flash Player가 필요한 콘텐츠 입니다.'
};

$B( '#box' ).insertSWF( 'files/test.swf', '400', '300', params, {onReady: function (e) {
    console.log( e.type ); //ready
    console.log( e.id );
    console.log( e.target );
    console.log( value );
}}, attr );