Kod: Tümünü seç
function BBCflash() {
var FoundErrors = '';
var enterURL = prompt("Enter the flash file URL", "http://");
if (!enterURL) {
FoundErrors += " You didn't write the flash file URL.";
}
var enterW = prompt("Enter the flash width", "250");
if (!enterW) {
FoundErrors += " You didn't write the flash width.";
}
var enterH = prompt("Enter the flash height", "250");
if (!enterH) {
FoundErrors += " You didn't write the flash height.";
}
if (FoundErrors) {
alert("Error:"+FoundErrors);
return;
}
var ToAdd = "[flash width="+enterW+" height="+enterH+"]"+enterURL+"[/flash]";
PostWrite(ToAdd);
}