我用的是Tera术语V4.92
我创建了一个到午餐Tera术语的TTL脚本,并连接到COM端口10
;;
;; Connection via COM port
;;
connect '/C=10'
;;
;; The timeout limit is 1 min.
;;
timeout = 60
;;
;; Pauses until one of the timeout occurs.
;;
;;
waitevent 1
;;
;; Closes Tera Term
;;
closett
;;
;; Quits the execution of the macro.
;;
;;end我的脚本运行得很好,但我想禁用一个同时使用Tera术语的窗口“宏-SCRIPT.TTL”。

有什么帮助吗?
问候AAG
发布于 2017-03-17 08:22:03
从你的问题中,我相信你想要么最小化,要么隐藏的宏盒。使用show命令可以很容易地做到这一点。
;;
;; Connection via COM port
;;
connect '/C=10'
show -1
;;
;; The timeout limit is 1 min.
;;
timeout = 60
;;
;; Pauses until one of the timeout occurs.
;;
;;
waitevent 1
;;
;; Closes Tera Term
;;
closett
;;
;; Quits the execution of the macro.
;;
;;end您可以在这里参考:https://ttssh2.osdn.jp/manual/en/macro/command/show.html
希望这能回答你。祝您今天愉快。
https://stackoverflow.com/questions/41879004
复制相似问题