As a follow up to this question: http://stackoverflow.com/questions/46873/developing-a-online-exam-application-how-do-i-prevent-cheaters

Can I detect when Flex application looses its focus? that is if a user has clicked onto another application or opened a browser tab?

I read this: http://blog.flexmonkeypatches.com/2007/12/07/detecting-when-a-flex-application-loses-focus/ but was not very clear...

link|improve this question

46% accept rate
feedback

3 Answers

up vote 5 down vote accepted

The key part of the code at that link is the

systemManager.stage.addEventListener(Event.DEACTIVATE,deactivate);

The Flash player send outs activate and deactivate events when the focus enters and leaves the player. All you need to do is create a listenr for them and react appropriately.

A more clear example of how to use to the activate and deactivate events can be seen at blog.flexaxamples.com.

Also, it looks like the activate and deactivate events have trouble in some browsers. Colin Moock has more info on that here.

link|improve this answer
won't work if wmode is transparent or opaque – jedierikb Jul 7 '09 at 16:22
feedback

This will work to detect when the Flex windows loses focus, but to detect when the window regains focus without having to actually click on the flex app requires an update in the HTML wrapper, correct? Something like:

<script language="JavaScript" type="text/javascript">
<!--
// -----------------------------------------------------------------------------
// Globals
// Major version of Flash required
var requiredMajorVersion = ${version_major};
// Minor version of Flash required
var requiredMinorVersion = ${version_minor};
// Minor version of Flash required
var requiredRevision = ${version_revision};
// -----------------------------------------------------------------------------
// -->


    function onAppFocusIn()
    {
    	${application}.onAppFocusIn();
    	alert("onAppFocusIn");
    }

</script>
<body scroll="no" onFocus="onAppFocusIn()">

I am trying to implement this but the onAppFocusIn() function is not executing once I move back to the flex app window. When I view the source, the code is there. Does anyone know why??

Thanks, Annie

link|improve this answer
feedback

You can add a handler for activate in the main application tag. This detects whenever the flex application comes to focus. Eg:

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" verticalAlign="middle" backgroundColor="white" activate="activateHandler(event);" deactivate="deactivateHandler(event);">

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.