Tuesday, May 31, 2011

Code Snippet - AS3 Domain/Site Lock

Lock a SWF from being played/viewed only on the domains you choose.


if(root.loaderInfo.url.indexOf("domainToAllowSWFToPlayOn.com") > -1){
// user is viewing the swf from this domain
} else {
//stop playing movie
}

No comments:

Post a Comment