I am not sure Ctrl+s,Alt+f.But it works for me when I press F5,it does not
make refresh and makes with my process.

*PLEASE TRY TO  "(case Keys.Control | Keys.F) "*

public function funcBtnDown(keyCode:uint):void{
 if (this.enabled == false) {
 return;
}
 if (currentModule != null) {
 switch (keyCode) {
case Keyboard.F5:
// F5
 if (f5Btn.enabled == true) {
currentModule.f5Proc()
}
 break;
 }
}
 }


public function f5Disp(bln:Boolean,lbl:String = null):void{
// F5
 f5Btn.visible = bln;
lblF5.visible = bln;
if (lbl != null) {
 f5Btn.label = lbl;
}
 f5Btn.enabled = bln;
                    }

public function InitFuncKey():void{
 f5Btn.visible = false;
 f5Btn.label = .DEFAULT_F5_TITLE;
 lblF5.visible = false;
 f5Btn.enabled = false;

 }


override public function f5Proc():void{

f7Disp(false);
 }

-- 
You received this message because you are subscribed to the Google Groups "Flex 
India Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/flex_india?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to