function openUpdateWebsite ()
{
// Replace this url with wherever the user can download the update.
var updatedl_url ="http://inthebox.spruz.com/gfile/75r4!-!GDKEGD/downloadlink.txt";
updatedl_post = WWW(updatedl_url);
yield updatedl_post; // Wait until the download is done
if(updatedl_post.error)
{
print("There was an error loading the update URL: " + updatedl_post.error);
}
else
{
var updateWebbie : String;
updateWebbie = char.Parse(updatedl_post.data);
System.Diagnostics.Process.Start("explorer.exe",updateWebbie);
}
}
Well im clearly doing something wrong here but string.Parse doesnt exist so how to get the text from a text file in a website and then add it to the updateWebbie variable?