Search found 1346 matches

by Dorian (MJT support)
Thu Jan 23, 2020 10:26 am
Forum: Beginners
Topic: Minimize Button For Dialog
Replies: 4
Views: 3234

Re: Minimize Button For Dialog

Add biMinimize to the BorderIcons property.
by Dorian (MJT support)
Thu Jan 23, 2020 10:21 am
Forum: Scripts and Tips
Topic: Screenshot Active Window
Replies: 6
Views: 12756

Re: Screenshot Active Window

nodochau wrote:
Wed Jan 22, 2020 3:30 pm
Dorian,
Thank you a lot for your share.
Always a pleasure. :)
by Dorian (MJT support)
Wed Jan 22, 2020 2:11 pm
Forum: Technical / Scripting
Topic: Getting Specific Data From Excel
Replies: 14
Views: 10718

Re: Getting Specific Data From Excel

You can find that explained here.

arrayname_row_count = how many columns of data are in that row.
arrayname_count = how many rows there are (including the header)
by Dorian (MJT support)
Wed Jan 22, 2020 12:01 pm
Forum: Technical / Scripting
Topic: Function to retrieve dimensions of a bmp/png/jpg image
Replies: 3
Views: 2226

Re: Function to retrieve dimensions of a bmp/png/jpg image

While there is not a specific function to do that, JRL managed to come up with quite an ingenious way of doing it on this thread.
by Dorian (MJT support)
Tue Jan 21, 2020 11:19 am
Forum: Beginners
Topic: Minimize before run
Replies: 2
Views: 2698

Re: Minimize before run

Please forgive me if I am misunderstanding the question. Are you asking how to set whether Macro Scheduler starts as minimized or not? If so, you'll find that in >Tools >Options from the main Macro Scheduler menu (see attached image). Check the highlighted checkbox. If I'm misunderstanding, please c...
by Dorian (MJT support)
Mon Jan 20, 2020 4:16 pm
Forum: Scripts and Tips
Topic: Screenshot Active Window
Replies: 6
Views: 12756

Re: Screenshot Active Window

How about %script_name% ?
by Dorian (MJT support)
Mon Jan 20, 2020 10:25 am
Forum: Technical / Scripting
Topic: Assistance needed writing script
Replies: 1
Views: 1438

Re: Assistance needed writing script

The Find Object Wizard may find it, but sometimes games are a little challenging. The button does not need to be visible on-screen in order to click the button. But if the Find Object Wizard can't find it, the Image Recognition Wizard can! The button does need to be visible for the Image Recognition...
by Dorian (MJT support)
Mon Jan 20, 2020 10:19 am
Forum: Beginners
Topic: Popup message
Replies: 8
Views: 5584

Re: Popup message

Follow Cursor has to be enabled.
by Dorian (MJT support)
Mon Jan 20, 2020 10:17 am
Forum: Beginners
Topic: code snippets
Replies: 1
Views: 2189

Re: code snippets

No.
by Dorian (MJT support)
Mon Jan 20, 2020 10:15 am
Forum: Scripts and Tips
Topic: Screenshot Active Window
Replies: 6
Views: 12756

Re: Screenshot Active Window

Yes. SMTPSendMail , and send the image as an attachment. I think you'll find it useful looking at the System Variables at the bottom of the Command Reference . Reading that is a goldmine of information and may just open up a whole new world for you. Script_Name is probably the one you want, but I'd ...
by Dorian (MJT support)
Mon Jan 20, 2020 10:08 am
Forum: Beginners
Topic: do a loop until it happens
Replies: 1
Views: 2245

Re: do a loop until it happens

I think waiting for the image is a better option than a loop. When you're in the Image Recognition Wizard, one of the options in the first tab is to wait for an image to appear before continuing. Use that, and then the code you already have.
by Dorian (MJT support)
Mon Jan 20, 2020 10:00 am
Forum: Beginners
Topic: Close active tab Chorme
Replies: 5
Views: 4635

Re: Close active tab Chorme

Grov makes a good point, the manual should be considered your "Macro Scheduler Bible". However, knowing where to start always helps, as there's a lot of information in there. I suggest reading up on Press . So, if I had Bing open in Chrome and just wanted to close that tab, I'd do this : setfocus>Bi...
by Dorian (MJT support)
Fri Jan 17, 2020 10:02 am
Forum: Technical / Scripting
Topic: Finding an image that has changed size
Replies: 3
Views: 2355

Re: Finding an image that has changed size

In some older scripts I had different paths and things to check depending on screen res, after a while I stopped and made them 1080p only. GetScreenRes>nWidth,nHeight If>nWidth<>1920 Goto>ScreenResError Endif> If>nHeight<>1080 Goto>ScreenResError Endif> If there's an alternate method to search for ...
Sign up to our newsletter for free automation tips, tricks & discounts