Hello,
i want only Logging the Output from my Commands/Alias. So i wrote a Alias like this
If i send my Alias i get only in the Logfile the line "b boden" without:
What i am doing wrong?
Thanks!
/edit: I found the answer:
I must use "LogSend"
i want only Logging the Output from my Commands/Alias. So i wrote a Alias like this
Alias: ^b ([A-z]+)$
Send:
vitem = "%1"
Send("untersuche "..vitem)
Send("lausche "..vitem)
Send("rieche "..vitem)
--Send("nimm "..vitem)
--Note("untersuche "..vitem)
--Note("lausche "..vitem)
--Note("rieche "..vitem)
Send To: script
Options = Enabled, Regular Expression, Echo Alias
If i send my Alias i get only in the Logfile the line "b boden" without:
untersuche boden
lausche boden
rieche boden
What i am doing wrong?
Thanks!
/edit: I found the answer:
vitem = "%1"
LogSend("untersuche "..vitem)
LogSend("lausche "..vitem)
LogSend("rieche "..vitem)
I must use "LogSend"