2014-11-06 30 views
0

我嘗試將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; 

,但不解決問題。

有人有想法嗎?

回答

0

我用下面的起始碼和它的工作對我來說

嘗試{的Security.allowDomain( 「*」);}趕上(E){};

相關問題