I am trying to let the user exit a flash application inside Facebook to go to a youtube video page on a MouseClick
_storyVO.youtubeid is the youtube ID, it works fine locally.
So far I have tried:
placing the TextField inside a Sprite and add adding a MouseEvent.CLICK listener that calls:
navigateToURL(new URLRequest("http://www.youtube.com/watch?v=" + _storyVO.youtubeid), "_self");
or
navigateToURL(new URLRequest("http://www.youtube.com/watch?v=" + _storyVO.youtubeid), "_blank");
both fail with a security warning.
using htmlText in the TextField like:
textField.htmlText = "<a href='http://www.youtube.com/watch?v=" + _storyVO.youtubeid + "'>watch on youtube</a>";
-> also fails with a security warning.
- as well as calling a JavaScript Function using the FBJSBridgeUtil Class and inside the JS-Function is a 'window.location.href' which, as it turns out, also does not work.
Any help will be appreciated, dirty hacks as well. Thanks.
