我嘗試將youtube播放器集成到空中應用程序中。 我使用演示代碼進行簡單測試。 https://developers.google.com/youtube/flash_api_reference#Examples在空中桌面應用程序中集成播放器youtube api v3
但它不適用於我。
的第一個錯誤是
SecurityError: Error #3207: Application-sandbox content cannot access this feature.
我把
Security.allowDomain("www.youtube.com");
在一個try/catch。解決這個第一個錯誤。
可悲的是我阻止蒙山第二錯誤
* Security Sandbox Violation * SecurityDomain ' http://s.ytimg.com/yts/swfbin/player-vflBOCKzZ/apiplayer3.swf ' tried to access incompatible context
我添加一個LoaderContext
var context:LoaderContext = new LoaderContext();
context.checkPolicyFile = true;
context.applicationDomain = ApplicationDomain.currentDomain;
context.allowCodeImport = true;
,但不解決問題。
有人有想法嗎?