Call a windows 10 program from bubble

Hello, I am developing an application for dental histories. I need to call a program like draw to edit images. Someone could help me. Thank you.

try to use a HTML element

<script type="text/javascript" language="javascript">
    function RunFile() {
    WshShell = new ActiveXObject("WScript.Shell");
    WshShell.Run("c:/windows/system32/notepad.exe", 1, false);
    }
</script>
1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.