[flexcoders] disable app turn gray then it is disabled

2009-07-30 Thread Willy Ci
I can't find any answer on the web.

then I disable the app using this.enabled=false;

this action also show a gray layer,

is there anyway I can disable the app without the gray layer?

thanks
Willy
617-606-3437
--
6 X 9 = 42
http://www.wolframalpha.com/input/?i=meaning+of+life
--


Re: [flexcoders] disable app turn gray then it is disabled

2009-07-30 Thread Ian Thomas
Try:

disabledOverlayAlpha=0

in the MXML for your Application class.

or from AS3:

this.setStyle(disabledOverlayAlpha,0);

(assuming 'this' is referring to your Application class.)

HTH,
   Ian

On Thu, Jul 30, 2009 at 2:53 PM, Willy Ciwill...@gmail.com wrote:


 I can't find any answer on the web.

 then I disable the app using this.enabled=false;

 this action also show a gray layer,

 is there anyway I can disable the app without the gray layer?

 thanks

 Willy
 617-606-3437
 --
 6 X 9 = 42
 http://www.wolframalpha.com/input/?i=meaning+of+life
 --

 


Re: [flexcoders] disable app turn gray then it is disabled

2009-07-30 Thread Willy Ci
thanks, I will try it later today.

Willy
617-606-3437
--
6 X 9 = 42
http://www.wolframalpha.com/input/?i=meaning+of+life
--


On Thu, Jul 30, 2009 at 10:20 AM, Ian Thomas i...@eirias.net wrote:



 Try:

 disabledOverlayAlpha=0

 in the MXML for your Application class.

 or from AS3:

 this.setStyle(disabledOverlayAlpha,0);

 (assuming 'this' is referring to your Application class.)

 HTH,
 Ian


 On Thu, Jul 30, 2009 at 2:53 PM, Willy 
 Ciwill...@gmail.comwillyci%40gmail.com
 wrote:
 
 
  I can't find any answer on the web.
 
  then I disable the app using this.enabled=false;
 
  this action also show a gray layer,
 
  is there anyway I can disable the app without the gray layer?
 
  thanks
 
  Willy
  617-606-3437
  --
  6 X 9 = 42
  http://www.wolframalpha.com/input/?i=meaning+of+life
  --