I need help with embedding the youtube url, this is the code I am using, the output is giving me sandbox security issues.
Can anyone help, or if you have a better way of handling this please help.
// create a MovieClip to load the player into
var ytplayer:MovieClip = _root.createEmptyMovieClip(“ytplayer”, 1);
// create a listener object for the MovieClipLoader to use
var ytPlayerLoaderListener:Object = {
onLoadInit: function() {
// When the player clip first loads, we start an interval to
// check for when the player is ready
loadInterval = setInterval(checkPlayerLoaded, 250);
}
};
var loadInterval:Number;
function checkPlayerLoaded():Void {
// once the player is ready, we can subscribe to events, or in the case of
// the chromeless player, we could load videos
if (ytplayer.isPlayerLoaded()) {
ytplayer.addEventListener(“onStateChange”, onPlayerStateChange);
ytplayer.addEventListener(“onError”, onPlayerError);
clearInterval(loadInterval);
}
}
function onPlayerStateChange(newState:Number) {
trace("New player state: "+ newState);
}
function onPlayerError(errorCode:Number) {
trace("An error occurred: "+ errorCode);
}
// create a MovieClipLoader to handle the loading of the player
var ytPlayerLoader:MovieClipLoader = new MovieClipLoader();
ytPlayerLoader.addListener(ytPlayerLoaderListener);
// load the player
ytPlayerLoader.loadClip(“http://www.youtube.com/v/ghITcSYgEJ4?fs=1&hl=en_US”, ytplayer);
The output I am getting is
*** Security Sandbox Violation ***
SecurityDomain ‘http://s.ytimg.com/yt/swf/cps-vfltOO9yS.swf’ tried to access incompatible context ‘file:///CINEMAC10330A/Users/msinha/Desktop/bathFitters/youtubeTest.swf’