[Flashcoders] Fullscreen problem

2007-07-06 Thread Izaias / Grafikonstruct
Hi everyone!
I have created a website with fullscreen option, using the follow code:

Stage.displayState = fullScreen (To enable fullscreen version)
Stage.displayState = normal (to back normal view)

But I have a big problem: My website have a form with some editable fields,
and if I click in fullscreen button, the fields stop edit. I can only put
text in the fields in normal view.

Does anyone have a solution?

Thank you so much.

Izaias Cavalcanti
Grafikonstruct/Brazil
http://www.grafikonstruct.com.br

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Fullscreen problem

2007-07-06 Thread eka

Hello :)

no solution for the moment for your problem :) The fullscreen mod disabled
the input fields.. Adobe implement this restriction but i don't know why ?

EKA+ :)

2007/7/6, Izaias / Grafikonstruct [EMAIL PROTECTED]:


Hi everyone!
I have created a website with fullscreen option, using the follow code:

Stage.displayState = fullScreen (To enable fullscreen version)
Stage.displayState = normal (to back normal view)

But I have a big problem: My website have a form with some editable
fields,
and if I click in fullscreen button, the fields stop edit. I can only put
text in the fields in normal view.

Does anyone have a solution?

Thank you so much.

Izaias Cavalcanti
Grafikonstruct/Brazil
http://www.grafikonstruct.com.br

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Fullscreen problem

2007-07-06 Thread Muzak
Tried the docs?
http://livedocs.adobe.com/flash/9.0/main/2149.html

quote
While Flash Player is in full-screen mode, all keyboard input is disabled 
(except keyboard shortcuts that take the user out of 
full-screen mode).
/quote

regards,
Muzak

- Original Message - 
From: Izaias / Grafikonstruct [EMAIL PROTECTED]
To: flashcoders@chattyfig.figleaf.com
Sent: Friday, July 06, 2007 5:00 PM
Subject: [Flashcoders] Fullscreen problem


 Hi everyone!
 I have created a website with fullscreen option, using the follow code:

 Stage.displayState = fullScreen (To enable fullscreen version)
 Stage.displayState = normal (to back normal view)

 But I have a big problem: My website have a form with some editable fields,
 and if I click in fullscreen button, the fields stop edit. I can only put
 text in the fields in normal view.

 Does anyone have a solution?

 Thank you so much.

 Izaias Cavalcanti
 Grafikonstruct/Brazil


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Fullscreen problem

2007-07-06 Thread Jer Brand

I'm pretty sure that was a limitation of Full Screen in the docs.   I
haven't tried it yet, but if you're desperate to keep the full screen, you
might see if you can use a Key listener to capture keyboard input and set
the text of the text field.   If the form's very complex, you may have to
internally keep track of what text box has focus.

Like I said though, haven't tried it yet so it's pure speculation (we
decided to dump Full Screen -- it just wasn't worth the effort).

If this post is too vague, I can try to whip up some code for an example.

On 7/6/07, Izaias / Grafikonstruct [EMAIL PROTECTED] wrote:


Hi everyone!
I have created a website with fullscreen option, using the follow code:

Stage.displayState = fullScreen (To enable fullscreen version)
Stage.displayState = normal (to back normal view)

But I have a big problem: My website have a form with some editable
fields,
and if I click in fullscreen button, the fields stop edit. I can only put
text in the fields in normal view.

Does anyone have a solution?

Thank you so much.

Izaias Cavalcanti
Grafikonstruct/Brazil
http://www.grafikonstruct.com.br

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Fullscreen problem

2007-07-06 Thread Jer Brand

And confirmed you can't get around it with a onKeyDown listener. Everything
but Esc appears to be locked out.
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RES: [Flashcoders] Fullscreen problem

2007-07-06 Thread Izaias / Grafikonstruct
Yes Muzak, I did see it now.
Thank you so much!

Izaias

-Mensagem original-
De: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Em nome de Muzak
Enviada em: sexta-feira, 6 de julho de 2007 12:40
Para: flashcoders@chattyfig.figleaf.com
Assunto: Re: [Flashcoders] Fullscreen problem

Tried the docs?
http://livedocs.adobe.com/flash/9.0/main/2149.html

quote
While Flash Player is in full-screen mode, all keyboard input is disabled
(except keyboard shortcuts that take the user out of 
full-screen mode).
/quote

regards,
Muzak

- Original Message - 
From: Izaias / Grafikonstruct [EMAIL PROTECTED]
To: flashcoders@chattyfig.figleaf.com
Sent: Friday, July 06, 2007 5:00 PM
Subject: [Flashcoders] Fullscreen problem


 Hi everyone!
 I have created a website with fullscreen option, using the follow code:

 Stage.displayState = fullScreen (To enable fullscreen version)
 Stage.displayState = normal (to back normal view)

 But I have a big problem: My website have a form with some editable
fields,
 and if I click in fullscreen button, the fields stop edit. I can only put
 text in the fields in normal view.

 Does anyone have a solution?

 Thank you so much.

 Izaias Cavalcanti
 Grafikonstruct/Brazil


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] Fullscreen problem

2007-07-06 Thread Matthias Dittgen

but why?
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com