Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Flash bug?! Can't type in textarea in fullscreen mode

New Here ,
Feb 08, 2009 Feb 08, 2009
Here is the sample movie for this problem:
http://andrewray.me/assets/stuff/test.html

You will notice that if you click on the white textarea, you can type in it and the keyCode is printed at the bottom. NOW, if you click on the black background it launches into fullscreen mode. In fullscreen mode, you CANNOT type in the text area. You can select the text, but you can't type. If you jump out of full screen mode then it works.

What is going on here? Has anyone seen this before? Is it a Flash bug? Here's the code, FLA linked below:

Link to FLA: http://andrewray.me/assets/stuff/test.fla

This is in AS3 in Flash CS3. Google isn't yeilding anything. I'm stumped.
TOPICS
ActionScript
1.5K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guide ,
Feb 09, 2009 Feb 09, 2009
All keyboard input and key-related ActionScript is disabled while in full-screen mode, with the exception of the keyboard shortcuts that take the viewer out of full-screen mode.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Mar 27, 2009 Mar 27, 2009
Have you tried using

stage.fullScreenTakeOver = false;
or
myvideo.fullScreenTakeOver = false;

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Mar 28, 2009 Mar 28, 2009
LATEST
It's a security restriction—prevents a swf from imitating an OS and requesting passwords etc. Flash player 10 enables a few keys like up down arrows for gaming.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines