Pasted below is a short, simple AutoIt script that I wrote to test TCP control of Zoom Player Max (ZP) . The functions available are at this link.
May it help someone in the future.
Thank you to BrewManNH and TheSaint for their help in other threads I started.
AutoIt
;simple AutoIt script for controlling Zoom Player via TCP ;these will be used when I open the TCP socket $ip = "127.0.0.1" $port = "4769" ;start TCP service ;open TCP socket and see if it was successful Terminate() ;now loop, presenting Text Input prompt for user to enter a ZP function and optional parameters. while 1 ;text entry prompt with Cancel button ;@CRLF needed at end of text to be sent! ;the rubber meets the road here Terminate() Exit 0
If anyone wants to add the ability to receive responses from Zoom Player I would welcome the addition. Here's a link to a very clear explanation of communicating via TCP with ZP via Autohotkey, including receiving the info ZP sends back up the pipe. Also, here's a link to download a neat TCP testing tool written in Delphi for the ZP community. Zoom Player is a great video player in my opinion, with inspiring depth AND incredible documentation.