Search found 1023 matches

by Grovkillen
Tue Oct 02, 2018 7:27 pm
Forum: Technical / Scripting
Topic: Can you detect a double click?
Replies: 4
Views: 3618

Re: Can you detect a double click?

If you detect a single click you can start a timer that is then check when next click is done. If the time is below lets say 500mSec then you have a double click.

EDIT: so JRL suggested this already, sorry!
by Grovkillen
Tue Sep 11, 2018 4:19 am
Forum: Beginners
Topic: Spam Lclick in x position untill x image shows up?
Replies: 7
Views: 5350

Re: Spam Lclick in x position untill x image shows up?

First off, where's your own try? I mean, do you expect us to do all the heavy lifting?
by Grovkillen
Thu Sep 06, 2018 4:09 pm
Forum: Technical / Scripting
Topic: PDF report generation
Replies: 5
Views: 3483

Re: PDF report generation

I use https://wkhtmltopdf.org/ for this exact function.
by Grovkillen
Tue Sep 04, 2018 4:26 pm
Forum: Technical / Scripting
Topic: Just curious. Why the > after commands?
Replies: 5
Views: 3516

Re: Just curious. Why the > after commands?

It's to delimit the command from the command switches. Commonly used in programming languages, or at least variants of it.
by Grovkillen
Mon Sep 03, 2018 6:32 pm
Forum: Technical / Scripting
Topic: [Solved] Python script only runs from Explorer
Replies: 2
Views: 2187

Re: Python script only runs from Explorer

You need to provide the libraries "urllib2" and "json" with the same folder/file structure as you see in the Python installation folder.
by Grovkillen
Sat Aug 04, 2018 12:58 pm
Forum: Beginners
Topic: [Solved] Repeat until not equal
Replies: 5
Views: 4874

Re: Repeat until not equal

Have you studied the manual? The repeat syntax is not even close to be correct.
by Grovkillen
Wed Aug 01, 2018 5:05 am
Forum: Enhancement Suggestions
Topic: MS GUI Enhancement Suggestions
Replies: 5
Views: 15615

Re: MS GUI Enhancement Suggestions

I like the suggestions. +1
by Grovkillen
Wed Jul 18, 2018 4:33 pm
Forum: Technical / Scripting
Topic: Subroutine works only once.
Replies: 4
Views: 2585

Re: Subroutine works only once.

Your Let>%VAR_NAME%=... is not what you think. Remove the two % in the Let> statements and it'll work just fine.
by Grovkillen
Fri Jul 13, 2018 2:26 pm
Forum: Technical / Scripting
Topic: progress bar
Replies: 4
Views: 2505

Re: progress bar

I only do it as this:
%CURRENT_FILE_NO%/%TOTAL_NO_FILES%*100

Don't try to get the time, not even Microsoft get it right. Display the currently transferred file name and the user get the feeling of how long it'll take.
by Grovkillen
Fri Jul 13, 2018 11:46 am
Forum: Technical / Scripting
Topic: progress bar
Replies: 4
Views: 2505

Re: progress bar

What do you mean, the visual look of the progress bar or how it progress?
by Grovkillen
Mon Jun 25, 2018 2:19 pm
Forum: Technical / Scripting
Topic: Initiate script on PC from iPhone?
Replies: 3
Views: 2712

Re: Initiate script on PC from iPhone?

Just give us access to MQTT and there's a ton of ways to communicate with MS.
by Grovkillen
Mon Jun 18, 2018 7:17 am
Forum: General Discussion
Topic: Can't upgrade free trial.
Replies: 5
Views: 5125

Re: Can't upgrade free trial.

Well, you're involving the community now which is more people. And Marcus is still the one who needs to help you. On the support page you will at least get in line/que. Here you're left in the wild :P
by Grovkillen
Sun Jun 17, 2018 4:58 pm
Forum: General Discussion
Topic: Can't upgrade free trial.
Replies: 5
Views: 5125

Re: Can't upgrade free trial.

Send an email to the support.
by Grovkillen
Fri Jun 08, 2018 4:15 am
Forum: Beginners
Topic: DayOfWeek -1 returning odd date
Replies: 5
Views: 4035

Re: DayOfWeek -1 returning odd date

Great, but a reflection: what do you do if the current day is the first day of the month? The code above would then compute a date with invalid number, i.e 06/00/2018
by Grovkillen
Thu Jun 07, 2018 8:51 pm
Forum: Beginners
Topic: DayOfWeek -1 returning odd date
Replies: 5
Views: 4035

Re: DayOfWeek -1 returning odd date

Code: Select all

Month>mm
Day>dd
Year>yyyy
Let>dd=dd-1
If>dd<10
 Let>dd=0%dd%
Endif>
MessageModal>%mm%/%dd%/%yyyy%
Sign up to our newsletter for free automation tips, tricks & discounts