SINGLE POST

Flash Player 8: new Security settings

If you remember to the release of Flash Player 7, there was introduced a new security object into the System. Flash Player 8 is much more restrective than in version 7.

Today i have tried an easy getURL – Tag.
[as]
getURL(“impossiblearts.com”, “_blank”);
[/as]

As a result the player open an javascript-like alert box with the message, that this is maybe an unwanted action.

I think this behaviour is stoppable with the allowDomain commands of the System class.
[as]
System.security.allowDomain();
System.security.allowInsecureDomain();
[/as]


Comments are closed.