Domain Redirection [tuff-studio]


/ Published in: ActionScript 3
Save to your folder(s)



Copy this code and paste it in your HTML
  1. var checkURL:String = stage.loaderInfo.url;
  2. if(checkURL.slice(11, 22)=="tuff-studio" || checkURL.slice(7, 18)=="tuff-studio" )
  3. {
  4. }
  5. else
  6. {
  7. var URL:URLRequest = new URLRequest("http://www.tuff-studio.com" )
  8. navigateToURL(URL, "_self" )
  9. };

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.