如何禁用Teraterm宏对话框

时间:2017-01-26 17:06:39

标签: macros ttl teraterm

我正在使用Tera Term V4.92

我创建了一个TTL脚本来午餐Tera Term并连接到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 Term同时发布的窗口标题为'MACRO - SCRIPT.TTL'

enter image description here

请帮助

问候 AAG

1 个答案:

答案 0 :(得分:1)

根据您的问题,我认为您希望 最小化 隐藏 宏框。使用 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

希望这能回答你。祝你有愉快的一天。