diff --git a/uploadWindow.mxml b/uploadWindow.mxml index 2ef34d8..3c01ef6 100644 --- a/uploadWindow.mxml +++ b/uploadWindow.mxml @@ -38,6 +38,19 @@ Security.allowDomain("monkey.ubixos.com"); + if (ulArtist.text == "") { + ulStatus.text = "Missing Artist"; + return; + } + else if (ulTitle.text == "") { + ulStatus.text = "Missing Title"; + return; + } + else if (ulGenre.text == "") { + ulStatus.text = "Missing Genre"; + return; + } + sndBtn.enabled = false; ulStatus.text = "Uploading File"; //Alert.show("userName: " + tvMaster.userInfo[0].username);