Search found 12 matches
- Sat Feb 03, 2018 2:56 pm
- Forum: Technical / Scripting
- Topic: Capture with mouse
- Replies: 2
- Views: 3495
Re: Capture with mouse
Thanks for the reply, but i need something faster and my mouse pointer is different. Actually im using irfanview and command line, my script: // cursor // CODEBLOCK Label>cursor GetCursorPos>X,Y Let>A=X+10 Let>B=Y+13 Let>RP_WAIT=1 Run>C:\Program Files (x86)\IrfanView\i_view32.exe /capture=1 /crop=(%...
- Thu Feb 01, 2018 2:24 pm
- Forum: Technical / Scripting
- Topic: Capture with mouse
- Replies: 2
- Views: 3495
Capture with mouse
How to capture a select area and display the mouse pointer?
- Mon Jan 15, 2018 3:25 pm
- Forum: Technical / Scripting
- Topic: Stop a macro through another
- Replies: 1
- Views: 2289
Re: Stop a macro through another
Ok i got it:
One more doubt, theres any event or anything to detect if a macros running ?
Code: Select all
//VK119=F8
OnEvent>Key_Down,VK119,0,STOP
SRT>STOP
MDL>Stopping
Exit>0
END>STOP
Label>start
my code here
my code here
my code here
GoTo>start
- Mon Jan 15, 2018 2:48 pm
- Forum: Technical / Scripting
- Topic: Stop a macro through another
- Replies: 1
- Views: 2289
Stop a macro through another
I have two instances of macro scheduler opened macro.png If i try set two different hotkeys to stop each instance, when i close and open again only one hotkey will be loaded macro3.png I have a macro running in instance B(2) macro2.png Sometimes i need call another macro using a hotkey then i have i...
- Wed Dec 20, 2017 3:35 am
- Forum: Technical / Scripting
- Topic: Save image with different names
- Replies: 2
- Views: 2648
Re: Save image with different names
Thankyou it worked, one more doubt. I have 4 macros running at same time, is possible do a code to when i stop the main macro with "Shift Esc" the others 3 also stop? When i have multiple macros (allow multiple instances option in config) running and i press "shift esc" the command stop only one mac...
- Tue Dec 19, 2017 7:11 pm
- Forum: Technical / Scripting
- Topic: Save image with different names
- Replies: 2
- Views: 2648
Save image with different names
Is possible save images with different patch names like: Example Line:40 C:\Users\Matheus\Documents\Macro Scheduler 14\Firefox\dir.bmp When macro get at line 40 again, he would save ( dir.bmp ) as: C:\Users\Matheus\Documents\Macro Scheduler 14\Firefox\ dir2.bmp Next time C:\Users\Matheus\Documents\M...
- Wed Dec 13, 2017 6:23 pm
- Forum: General Discussion
- Topic: Hide macro message
- Replies: 4
- Views: 5653
- Wed Dec 13, 2017 4:19 am
- Forum: Technical / Scripting
- Topic: Increase image detection
- Replies: 5
- Views: 5640
Re: Increase image detection
Try change the value to 0.7 and use CCOEFF.
- Tue Dec 12, 2017 4:15 pm
- Forum: General Discussion
- Topic: Hide macro message
- Replies: 4
- Views: 5653
Re: Hide macro message
So this message at the top is because its a trial version?
- Tue Dec 12, 2017 1:10 am
- Forum: General Discussion
- Topic: Hide macro message
- Replies: 4
- Views: 5653
Hide macro message
How to hide the msg of macro running
- Sat Dec 09, 2017 4:48 pm
- Forum: Technical / Scripting
- Topic: Keys pressed
- Replies: 2
- Views: 2762
Keys pressed
Is possible do a script to save keys being pressed in .txt file, with the hour min and secs when the key was pressed. Like~~~ Keys.txt 14:46:01 Rdown 14:46:02 Rup 14:46:02 LCtrl 14:46:03 LShift+C 14:46:03 LShift+D 14:46:03 LShift+F 14:46:04 F2 14:46:04 E 14:46:04 E 14:46:04 F 14:46:05 Down 14:46:04 ...
- Sun Dec 03, 2017 1:17 am
- Forum: Technical / Scripting
- Topic: Spin mouse in one direction
- Replies: 1
- Views: 2942
Spin mouse in one direction
Searching in how to spin the mouse 360ยบ i found this script from marcus: https://www.mjtnet.com/forum/viewtopic.php?f=3&t=4509# //center position of ciorcle Let>cx=500 Let>cy=500 //start and end angles Let>angle1=0 Let>angle2=2 //radius of circle Let>radius=100 Let>count=angle1 Repeat>count Let>coun...