Skip to content

交叉使用

在 skill 中执行其他脚本

TIP

通过此方式可以通过中间文件间接使用其他脚本语言去实现一些当前脚本实现较为复杂的或不可实现的功能

在当前项目根目录下创建 0.vbs 脚本,内容如下

vb
msgbox "hello"

在 skill 中调用

lisp
(defun testSkill ()

	axlUIWPrint(nil "=======Test========")
	shell( "cscript 0.vbs" )
)