2017-07-18 127 views
-1

目前,我正在尝试添加将演示文稿的所有幻灯片捕获到图像并将其保存到磁盘的功能。它现在适用于捕获第一页的地方,然后我希望在加载第二页以捕获该页时触发异步事件,等等。这里是我添加事件侦听器,虽然我不知道我是否应该使用stagethis为什么我的动作脚本事件不会触发?

    import flash.events.Event; 
        private var jpgEncoder:JPGEncoder; 
        // ... 

        private function init():void{ 
          // ... 
          // Add async event to capture second page after loading 
          stage.loaderInfo.addEventListener(Event.COMPLETE,onLoadComplete); 
          // ... 
        } 
        private function onPrintButtonClicked():void { 
          // screen capture code 
          jpgEncoder = new JPGEncoder(90); 

          // Page 1 capture 
          bitmapData1 = new BitmapData(stage.width, stage.height); 
          bitmapData1.draw(stage, new Matrix()); 

          // move to next page 
          var curPage:Page = PresentationModel.getInstance().getCurrentPage(); 
          if (curPage != null) { 
           LOGGER.debug("Go to next page. Current page [{0}]", [curPage.id]); 
           pageCount++; 
           dispatchEvent(new GoToNextPageCommand(curPage.id)); 
          } else { 
           LOGGER.debug("Go to next page. CanNOT find current page."); 
          } 
        } 


        private function onLoadComplete(e:Event) 
        { 
          // Get page 2 capture 
          bitmapData2 = new BitmapData(stage.width, stage.height); 
          bitmapData2.draw(stage, new Matrix()); 

          // Copy two pages to one bitmap 
          var rect1:Rectangle = new Rectangle(0, 0, stage.width, stage.height); 
          var pt1:Point = new Point(0, 0); 
          bitmapData3 = new BitmapData(stage.width, stage.height * 2); 
          bitmapData3.copyPixels(bitmapData1, rect1, pt1) 
          var rect2:Rectangle = new Rectangle(0, 0, stage.width, stage.height); 
          var pt2:Point = new Point(0, stage.height); 
          bitmapData3.copyPixels(bitmapData2, rect2, pt2) 

          // Convert to image 
          var img:ByteArray = jpgEncoder.encode(bitmapData3); 
          var file:FileReference = new FileReference(); 
          file.save(img, "capture1.jpg"); 
        } 

没有人有任何想法,为什么OnLoadComplete功能不会被调用?仅供参考,以下是完整的源代码:https://github.com/john1726/bigbluebutton/blob/master/bigbluebutton-client/src/org/bigbluebutton/main/views/MainToolbar.mxml

TIA

+0

选项1:您不要调用** init **方法。选项2:当您添加侦听器时,整个电影已经加载并且您错过了该事件。 – Organis

+0

模拟鼠标点击一个按钮,也许。 – Vesper

回答

0
  1. 请注意,我发现,舞台仍然在init()方法,这样一个异常被抛出空:

    stage.loaderInfo.addEventListener(Event.COMPLETE,onLoadComplete); 
    
  2. 此外,解决该阶段错误后,我发现我一直在使用此工具收到此错误:https://github.com/capilkey/Vizzy-Flash-Tracer

    错误#2176:某些操作(例如显示弹出窗口的操作)只能在用户交互时调用,例如通过鼠标单击或按下按钮。

所以解决方法是,重新工作界面,因此有一个按钮,按下准备的文件和一个第二次按下按钮到真正保存图像或设置他们mouseup和鼠标按下事件调用不同的功能:

s:Button mouseDown="prepare_PDF()" mouseUp="save_PDF()" 

来源:Flex's FileReference.save() can only be called in a user event handler -- how can I get around this?

谢谢!

相关问题