如何在加密的 maxscript 中使用 unicode 字符
How can I use unicode characters in an encrypted maxscript
我有一个 .ms
文件类型,我想使用带有符号 ✖ 和 ✔ 的文件。
评估此文件后,这些字符正确显示如下:
但在将文件加密到 .mse
之后,它们会显示为问号,如下所示:
这是原始 .ms
形式的代码片段。您将需要 运行 下面这段代码来加密它。 encryptScript @"path\to\file.ms" version:1
/* This file is saved with encoding UTF-8
and the 2 special characters show fine.
But when I 'encryptScript @"path\to\file.ms" version:1' they don't display correctly. */
rollout testRol "Test"
(
button ui_btn_test "✔"
label ui_lbl_test "✖"
)
createDialog testRol
你可以这样逃避它们:
button ui_btn_test "\x2714"
label ui_lbl_test "\x2716"
我有一个 .ms
文件类型,我想使用带有符号 ✖ 和 ✔ 的文件。
评估此文件后,这些字符正确显示如下:
但在将文件加密到 .mse
之后,它们会显示为问号,如下所示:
这是原始 .ms
形式的代码片段。您将需要 运行 下面这段代码来加密它。 encryptScript @"path\to\file.ms" version:1
/* This file is saved with encoding UTF-8
and the 2 special characters show fine.
But when I 'encryptScript @"path\to\file.ms" version:1' they don't display correctly. */
rollout testRol "Test"
(
button ui_btn_test "✔"
label ui_lbl_test "✖"
)
createDialog testRol
你可以这样逃避它们:
button ui_btn_test "\x2714"
label ui_lbl_test "\x2716"