闪光焦点检测

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了闪光焦点检测相关的知识,希望对你有一定的参考价值。

  1. function main():void
  2. {
  3. stage.addEventListener(Event.DEACTIVATE, windowNotActive);
  4. stage.addEventListener(Event.ACTIVATE, windowActive);
  5. }
  6. main();
  7.  
  8. function windowNotActive(e:Event):void
  9. {
  10. trace("NOT ACTIVE");
  11. }
  12.  
  13. function windowActive(e:Event):void
  14. {
  15. trace("ACTIVE");
  16. }

以上是关于闪光焦点检测的主要内容,如果未能解决你的问题,请参考以下文章

检测闪光灯是不是已经打开

闪光检测脚本

检测与 Retina Flash 相关的相机闪光灯

检测到运动时切换手电筒

Windows/C++:检测窗口之间焦点何时改变(全局)

检测特定文本框是不是有焦点[重复]