At the first sry for my bad english. ^^
The user should type a web adress in the input named "exsource". This web adress should be replaced the var in line 2 and 3. Is something wrong with the code? Because it doesn't work.
The user should type a web adress in the input named "exsource". This web adress should be replaced the var in line 2 and 3. Is something wrong with the code? Because it doesn't work.
Code:
exsource = Input.GetText("exsource"); HTTP.Download(exsource.."\\version.txt", _TempFolder.."\\version.txt", MODE_BINARY, 20, 80, nil, nil, nil); HTTP.Download(exsource.."\\url.txt", _TempFolder.."\\url.txt", MODE_BINARY, 20, 80, nil, nil, nil); version = TextFile.ReadToString(_TempFolder.."\\version.txt"); url = TextFile.ReadToString(_TempFolder.."\\url.txt"); Input.SetText("version", version); Input.SetText("url", url);
Comment