GNS integration

This is a simple external script to send message to GNS client with timeout of 300. Argument 0 is the text, Argument 1 is the timeout (save in a .vbs file)

Dim wD

set wD = CreateObject("GNS.OWL")
wD.NewMsg = WScript.Arguments.Item(0)
wD.NewTimeout = WScript.Arguments.Item(1)

set wD = nothing

You can call from the onthefly External script to test :

This is the Dragscript example to call the script with the same parameters:
immagine

TestGNS.vos (5.6 KB)

How work GNS script and ActiveX is something you must read in the official documentation.
You can send where you want and modify script also send alarm with timeout = 0 for GNS or you can check the return of an DragScript action (for example IF ERROR) and send your custom message.

If you want to do more simple the thing just create more vbs external script with all you need and call directly from dragscript where you need without arguments (like I think all of us).

You have million of choice with Dragscript on how to make you signal way, just use what platform you like or know.

All the best
Leonardo

2 Likes