我有一个 Flash 条形码扫描仪(相机),想在移动项目中使用它来扫描二维码。如果可以重新使用此 SWF 并将其嵌入到移动 Flex 应用程序中,那就太好了。SWF 是在 Flash CS5 中制作的。
到目前为止,嵌入(并将其添加到舞台并显示它)是成功的,但我如何与 SWF 通信?例如调用它的函数或使用事件。
这是一个代码片段:
[Embed(source="../cam/cam.swf")]
private var cam:Class;
....
....
public const EVT_SNAPSHOT : String = "onSnapShot";
public var camera : Object;
public function onInit(e:Event) : void
{
this.camera = new cam();
this.camera.addEventListener(Event.ADDED_TO_STAGE, this.cameraInit );
this.stage.addChild( this.camera as DisplayObject );
}
private function cameraInit(e:Event):void
{
trace( 'Added to stage' );
this.stage.addEventListener( EVT_SNAPSHOT, this.cameraDoScan ); // does not bind?
trace( this.camera.hasOwnProperty('getAppInfo') ); // shows 'false'
}
private function cameraDoScan(e:MouseEvent):void
{
trace('MouseClick!');
}
有谁知道与这个“东西”交流?