I would like to summarize my freeze problem in Chrome just for those of you
witch could have same problem.

I had two places witch caused freeze of whole application in Google Chrome

In both cases I had javascript function with lots of logic inside it. I have
called them from Flex app by ExternalInterface.

In first case I didn't recognize witch line of code in js function caused
freeze, as for the second case it was JQuery function.

My workaround for this problem was add timeout for logic inside js function:

ExternalInterface.call("myJSFunction"); - stopped in this place caused
freeze only in Google Chrome

function myJSFunction() {
   setTimeout(function(){
      //some logic caused freeze
  }, 50);
}

Piotr





-----
Apache Flex PMC
piotrzarzyck...@gmail.com
--
View this message in context: 
http://apache-flex-development.2333347.n4.nabble.com/Flash-freeze-for-60-seconds-in-Chrome-tp40638p40940.html
Sent from the Apache Flex Development mailing list archive at Nabble.com.

Reply via email to