Hi guys, currently I write python to run the jsl code by using RunCommand like below:
import win32com
jmp = win32com.client.Dispatch("JMP.Application")
jmp.RunCommand('SHOW("Hi");')
print(jmp.GetLogContents)
I am wondering if there any docs or records that I can read to find other COM attributes for JMP like OpenDoucument, CreateOneWay
I tried searching but few info was found. thanks!