I am using c# .Net windows app. In this I have used xulrunner 22.0 + Geckofx 22.0 from bitbucket.

I have used Geckofx browser to display flash content in my app.

Whenever I close a windows form I get an message

"Unresponsive Script"

'A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.'

Any Ideas?

有帮助吗?

解决方案

Try using GeckoPreference to set dom.max_script_run_time to a larger value than default or to 0 to disable it.

GeckoPreferences.User["dom.max_script_run_time"] = 0;

Ensure you do this after your call to Xpcom.Initialize.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top