0

我正在使用 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”

在此处输入图像描述

请提供任何帮助

关于 AAG

4

1 回答 1

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

希望这能回答你。祝你今天过得愉快。

于 2017-03-17T08:22:03.440 回答