LoginSignup
1
1

More than 5 years have passed since last update.

inkscapeで数値入力ができない場合のworkaround

Posted at

start_inkscape.js
// Windows Script Hostのオブジェクトを生成
var wshell = new ActiveXObject("WScript.Shell");
var env = wshell.Environment("Process");

// 言語をEnglishに設定
env("lang") = "en";

// Inkscape起動
wshell.run('\"C:\\Program Files\\Inkscape\\inkscape.exe\"', 1);
cscript start_inkscape.js
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1