2017-01-26 48 views
0

我使用萬億期限V4.92如何禁用Teraterm宏對話框

我創建了一個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 

我的腳本完美運行,但我想禁用的標題相同時間萬億期限共進午餐窗口「MACRO - SCRIPT.TTL」

enter image description here

任何幫助,請

問候 AAG

+0

偏題,屬於[su] –

回答

1

從你的問題,我相信,你想要麼減少隱藏宏框中。這可以通過使用顯示命令輕鬆完成。

;; 
;; 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

希望這回答了你。祝你今天愉快。

+0

非常感謝!這似乎是正確的選擇。我會嘗試一下,讓你知道結果 – Med