文件名称:RemoteObj.ahk:通过网络远程访问对象
文件大小:3KB
文件格式:ZIP
更新时间:2024-05-28 13:36:39
AutoHotkey
远程对象 通过网络远程访问对象 依存关系 将对象发布到网络 ObjToPublish := new Test() ; This is the object that will be published Bind_Addr := " 127.0.0.1 " ; Only accept connections from localhost Bind_Port := 1337 ; Listen for connections on port 1337 Server := new RemoteObj(ObjToPublish, [Bind_Addr, Bind_Port]) class Test { InputBox ( Prompt ) { InputBox , Out, % this.Title, %Prompt% return Out } } 连接到发布的对象 Remote_Ad
【文件预览】:
RemoteObj.ahk-master
----LICENSE(1KB)
----Examples()
--------Server.ahk(693B)
--------Client.ahk(332B)
----README.md(987B)
----RemoteObj.ahk(1KB)