コード例 #1
0
        public void waitForText2(string processName, string text)
        {
            bool exists = TextRecognition.TextExists2(processName, text);

            while (!exists)
            {
                Thread.Sleep(1000);
                exists = TextRecognition.TextExists2(processName, text);
            }
        }
コード例 #2
0
        public static void WaitForText(int x, int y, int width, int heigth, string text)
        {
            Rectangle rect = new Rectangle(x, y, width, heigth);

            bool exists = TextRecognition.TextExists2(rect, text);

            while (!exists)
            {
                BotHelper.Wait(1000);
                exists = TextRecognition.TextExists2(rect, text);
            }
        }
コード例 #3
0
        public static bool TextExists(int x, int y, int width, int heigth, string text)
        {
            bool exist;

            try
            {
                exist = TextRecognition.TextExists2(new Rectangle(x, y, width, heigth), text);
            }
            catch
            {
                exist = false;
            }

            return(exist);
        }
コード例 #4
0
 public static bool TextExists(int x, int y, int width, int heigth, string text)
 {
     return(TextRecognition.TextExists2(new Rectangle(x, y, width, heigth), text));
 }
コード例 #5
0
 public bool textExists(string processName, string text)
 {
     return(TextRecognition.TextExists2(processName, text));
 }