Answered
Artcam 2015, upgrading old files
is a method of disabling the message:
"Stop running this script?
A script on this page is causing ...." in AC ??
I use AC 2015 batch converter and this message slows me down a lot, I've been converting files for 2 days and I haven't converted nor 10% of the old files
deselecting the option for prompt in IE does not deselect and in AC it seems
I'm not sure if I can ask here about AC
thanks
...I know Javascript if is need
Comments
Hi Dan Ioan,
Unfortunately, as with the ArtCAM 2015 R2 product range, the Batch Convert Reliefs and File Convertor Toolbox add-ins are no longer developed or supported.
We recommend that you convert smaller batches of files to avoid the types of issues you've reported.
Thanks for your time and consideration.
Thank
the solution was simple, I write a simple Python script (6 lines) who clicks "No" every minute , the message appears every 3 minutes, now I can let the computer convert overnight
if anyone has the same problem ask me
That's great news, Dan Ioan.
Perhaps you can upload the script to WeTransfer and share the download link to retrieve the file when posting here.
Thanks again for your time and consideration.
Hi,
..it is a banality, I used pyautogui library
click(1046,653) mean auto click on (1046,653) pixel of screen where "No" button is locat
it certainly isn't written fine but it works (don't know the library)
the code:
import pyautogui, time
title="ArtCAM Pro"
pyautogui.getWindowsWithTitle(title)
while True:
pyautogui.click(1046,653)
time.sleep(30)
Please sign in to leave a comment.