Application.absoluteURL Manual     Reference     Scripting  
Scripting > Runtime Classes > Application
Application.absoluteURL

static var absoluteURL : String

Description

The absolute path to the web player data file (Read Only).

Application.absoluteURL and Application.srcValue allow you to detect if your unityWeb data file was moved to another location or is being linked to. You might want to protect against both to prevent piracy of your data files.

JavaScript
// This detects if your data files were moved to another server
// or are being linked to from somewhere else.

function Start () {
var isPirated : boolean = false;

if (Application.isWebPlayer) {
if (Application.srcValue != "game.unity3d")
isPirated = true;
if (String.Compare (Application.absoluteURL,
"http://www.website.com/Game/game.unity3d", true) != 0)
isPirated = true;

if (isPirated)
print("Pirated web player");
}
}

using UnityEngine;
using System.Collections;

public class example : MonoBehaviour {
void Start() {
bool isPirated = false;
if (Application.isWebPlayer) {
if (Application.srcValue != "game.unity3d")
isPirated = true;

if (String.Compare(Application.absoluteURL, "http://www.website.com/Game/game.unity3d", true) != 0)
isPirated = true;

if (isPirated)
print("Pirated web player");

}
}
}

import UnityEngine
import System.Collections

class example(MonoBehaviour):

def Start():
isPirated as bool = false
if Application.isWebPlayer:
if Application.srcValue != 'game.unity3d':
isPirated = true
if String.Compare(Application.absoluteURL, 'http://www.website.com/Game/game.unity3d', true) != 0:
isPirated = true
if isPirated:
print('Pirated web player')