Well, either way, thanks for your reply, I appreciate it, and for everyone else that would go under this same issue that I am having, I found a temporary solution to capture certain pictures which might help you in the future.
There's a technique we use when we set up cameras to capture scenery changes in real life that blitzes off milliseconds and captures thousands of pictures to see every single frame, well I created something similar on a much smaller scale of course because what we're talking about is merely 20-30 frames at most.
What this does is basically capture a huge set of pictures of the specific location I want, then I see the result, keep repeating the process until I see minor changes to what I want, to see the whole animation, then take .BMP pictures of that specific object to then later use for image recognition, and create a whole image recognition code with tons of "or"/"and" depends on what you like, either way here's the technique i thought i'd share it:
Code: Select all
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen1.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen2.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen3.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen4.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen5.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen6.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen7.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen8.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen9.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen10.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen11.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen12.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen13.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen14.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen15.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen16.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen17.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen18.bmp
Wait>0.1
ScreenCapture>640,0,1260,1062,C:\Users\x\Desktop\x\screen19.bmp
wait>10000
Basically it's a simple code, but the idea behind it is cool, so it captures the screen area I want over and over several times, saves different bmp's, , and then I review them, see the results, and take pictures of the result that I like, repeat the process a couple of times while I repeat the task at hand, and then later on use all of the pictures i've gathered for image recognition, that way it's easier for you to keep doing the task, then make it automatically take pictures.