public void change_ip()
 {
     if (UserInputIPnotag.text != null && UserInputIPwithtag.text != null)
     {
         if (!UserInputIPnotag.text.StartsWith("Http://") && !UserInputIPwithtag.text.StartsWith("Http://"))
         {
             UserInputIPnotag.text   = "Http://" + UserInputIPnotag.text;
             UserInputIPwithtag.text = "Http://" + UserInputIPwithtag.text;
             RecordAndUpload.ChangeIP_Address(UserInputIPnotag.text, UserInputIPwithtag.text);
         }
         else if (!UserInputIPnotag.text.StartsWith("Http://") && UserInputIPwithtag.text.StartsWith("Http://"))
         {
             UserInputIPnotag.text = "Http://" + UserInputIPnotag.text;
             RecordAndUpload.ChangeIP_Address(UserInputIPnotag.text, UserInputIPwithtag.text);
         }
         else if (UserInputIPnotag.text.StartsWith("Http://") && !UserInputIPwithtag.text.StartsWith("Http://"))
         {
             UserInputIPwithtag.text = "Http://" + UserInputIPwithtag.text;
             RecordAndUpload.ChangeIP_Address(UserInputIPnotag.text, UserInputIPwithtag.text);
         }
         else
         {
             RecordAndUpload.ChangeIP_Address(UserInputIPnotag.text, UserInputIPwithtag.text);
         }
     }
 }
 public VideoResultCallback(RecordAndUpload _script) : base("com.quadratron.dbutest.IVideoResultListener")
 {
     script = _script;
 }
 public void start()
 {
     ip_notag.text      = RecordAndUpload.GetNoTagIP_Address();
     ip_withtag.text    = RecordAndUpload.GetWithTagIP_Address();
     Question_text.text = SpeechSound.playtrack.ToString();
 }