javascript - Check if SWF has focus -


how can check if swf element on page has focus?

in ie, onkeydown events not detected in javascript if swf has focus firefox detects onkeydown.

detect javascript? javascript has onfocus , onblur events,

var hasfocus=false;  domelem.addeventlistener('focus', function(e){     hasfocus=true; },false);  domelem.addeventlistener('blur', function(e){     hasfocus=false; },false); 

i'm not sure how in as...


Comments

Popular posts from this blog

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -