Search found 17 matches
- Sun Mar 08, 2015 1:48 pm
- Forum: Technical / Scripting
- Topic: Mouse movement
- Replies: 3
- Views: 3646
Re: Mouse movement
What about doing it in a certain application do i do set focus?
- Sun Mar 08, 2015 12:01 am
- Forum: Technical / Scripting
- Topic: Mouse movement
- Replies: 3
- Views: 3646
Mouse movement
Ok wondering if possible to hold left mouse button while moving the mouse around in a specific program?
- Sat Mar 07, 2015 8:47 pm
- Forum: Technical / Scripting
- Topic: Image Recognition if image not found?
- Replies: 1
- Views: 2539
Image Recognition if image not found?
Hi wanted to know if i can change this
FindImagePos>%BMP_DIR%\image_16.bmp,WINDOW:BlueStacks App Player,0.7,1,XArr,YArr,Image_16_Found,CCOEFF
if>Image_2_Found>0,help
but to do if this image is not there?
FindImagePos>%BMP_DIR%\image_16.bmp,WINDOW:BlueStacks App Player,0.7,1,XArr,YArr,Image_16_Found,CCOEFF
if>Image_2_Found>0,help
but to do if this image is not there?
- Fri Mar 06, 2015 8:06 pm
- Forum: Technical / Scripting
- Topic: Help With An Image Recognition
- Replies: 1
- Views: 2186
Help With An Image Recognition
https://lh3.googleusercontent.com/-WaVKitqD-0Q/VPoHFKv8ujI/AAAAAAAAACM/zN_EHHALOac/w169-h166-no/Untitled.png So i have that image with a timer on the bottom.. Now when the timer runs out the chest starts to bounce. once it starts bouncing and timer runs out i need it to interact with it. I need som...
- Thu Mar 05, 2015 11:19 pm
- Forum: Technical / Scripting
- Topic: New To This Macro Need Help
- Replies: 23
- Views: 16434
Re: New To This Macro Need Help
Yep LOL..
I know i will be in here asking questions again... but it looks like it has so much to it. Just need to learn it at least some lol
I know i will be in here asking questions again... but it looks like it has so much to it. Just need to learn it at least some lol
- Thu Mar 05, 2015 11:05 pm
- Forum: Technical / Scripting
- Topic: New To This Macro Need Help
- Replies: 23
- Views: 16434
Re: New To This Macro Need Help
Jerry I love you man.. For putting up with my crap i got it i was missing the >
so all is well now and i guess i will have to purchase it now since it does what i need it to.. Beautiful tool
so all is well now and i guess i will have to purchase it now since it does what i need it to.. Beautiful tool

- Thu Mar 05, 2015 10:57 pm
- Forum: Technical / Scripting
- Topic: New To This Macro Need Help
- Replies: 23
- Views: 16434
Re: New To This Macro Need Help
still nothing says running and nothing Label check FindImagePos>%BMP_DIR%\image_5.bmp,WINDOW:BlueStacks App Player,0.7,1,XArr,YArr,Image_5_Found,CCOEFF FindImagePos>%BMP_DIR%\image_8.bmp,WINDOW:BlueStacks App Player,0.7,1,XArr,YArr,Image_8_Found,CCOEFF if Image_5_Found>0,do1 if Image_8_Found>0,do2 G...
- Thu Mar 05, 2015 10:46 pm
- Forum: Technical / Scripting
- Topic: New To This Macro Need Help
- Replies: 23
- Views: 16434
Re: New To This Macro Need Help
Yes it would go to 1 location "What if i need it to look for either one at the same time." You have to look for 1 image at a time but can do the 2nd immediately after the 1st one You don't need to use the multi line style 'If' statement if this is all you want FindImagePos>,,,,,,,,Image1,,, FindIma...
- Thu Mar 05, 2015 10:30 pm
- Forum: Technical / Scripting
- Topic: New To This Macro Need Help
- Replies: 23
- Views: 16434
Re: New To This Macro Need Help
i dont need to click it just need it to go to a label when it finds 2 of the same image...
can it be done this way?
If>NumFound>2,do1
can it be done this way?
If>NumFound>2,do1
- Thu Mar 05, 2015 9:56 pm
- Forum: Technical / Scripting
- Topic: New To This Macro Need Help
- Replies: 23
- Views: 16434
Re: New To This Macro Need Help
Jerry another question for you lol
ok so on the screen there are 2 images both the same so if that is true go to somewhere.
is that possible to do?
ohh and those 2 images would be a result of clicking an image if that matters
ok so on the screen there are 2 images both the same so if that is true go to somewhere.
is that possible to do?
ohh and those 2 images would be a result of clicking an image if that matters
- Thu Mar 05, 2015 9:27 pm
- Forum: Technical / Scripting
- Topic: New To This Macro Need Help
- Replies: 23
- Views: 16434
Re: New To This Macro Need Help
image2 is the result of image1 being pressed.. but some times it might not throw an image2 at me. so if no image2 comes in to play i want it to continue to next step. let me explain what i am trying to do... I want to apply an item first time it just applies it without any images now since there is ...
- Thu Mar 05, 2015 8:54 pm
- Forum: Technical / Scripting
- Topic: New To This Macro Need Help
- Replies: 23
- Views: 16434
Re: New To This Macro Need Help
OK Jerry i got it :).. I think i understand what your saying i can do that way also... //Find and Double Left Click To the Right of the FindImagePos>%BMP_DIR%\image_1.bmp,WINDOW:BlueStacks App Player,0,8,XArr,YArr,NumFound,EXACT If>NumFound>0 MouseMove>{%XArr_0%+380},YArr_0 LDblClick Endif //Wait fo...
- Thu Mar 05, 2015 8:47 pm
- Forum: Technical / Scripting
- Topic: New To This Macro Need Help
- Replies: 23
- Views: 16434
Re: New To This Macro Need Help
Is there a way to use ifgosub? example want to check for 5 things label check if image1 gosub do1 if image2 gosub do2 if image3 gosub do3 if image4 gosub do4 if image5 gosub do5 goto check SRT>do1 do whar ever end>do1 SRT>do2 do whar ever end>do2 SRT>do3 do whar ever end>do3 SRT>do3 do whar ever end...
- Thu Mar 05, 2015 8:26 pm
- Forum: Technical / Scripting
- Topic: New To This Macro Need Help
- Replies: 23
- Views: 16434
Re: New To This Macro Need Help
Jerry thanks for being helpful honestly
..
but what about the gosub?
can i do this:
if image1>0,GoSub>DO1
if image2>0,GoSub>DO2

but what about the gosub?
can i do this:
if image1>0,GoSub>DO1
if image2>0,GoSub>DO2
- Thu Mar 05, 2015 7:51 pm
- Forum: Technical / Scripting
- Topic: New To This Macro Need Help
- Replies: 23
- Views: 16434
Re: New To This Macro Need Help
Jerry with that it looks like it will go to one location... i am looking for something like this
if image gosub do
if image2 gosub do2
each image should direct to a different SRT
if image gosub do
if image2 gosub do2
each image should direct to a different SRT