Hi Torrezno,
Will you be running the same commands on each host you connect to?
If so we have an
example script that may accomplish what you are looking for.
I've included code below. In my testing using blocks like this seems to provide the functionality you are looking for.
Code:
crt.session.ConnectInTab("/FIREWALL /Telnet A.B.C.D0")
crt.Screen.Synchronous = True
<Commands you want to run>
crt.Session.Disconnect
crt.session.ConnectInTab("/FIREWALL /Telnet A.B.C.D1")
crt.Screen.Synchronous = True
<Commands you want to run>
crt.Session.Disconnect
Does this help?