1# HelloWorld python script for the scripting framework 2 3def HelloWorldPython( ): 4 """Prints the string 'Hello World(in Python)' into the current document""" 5#get the doc from the scripting context which is made available to all scripts 6 model = XSCRIPTCONTEXT.getDocument() 7#get the XText interface 8 text = model.Text 9#create an XTextRange at the end of the document 10 tRange = text.End 11#and set the string 12 tRange.String = "Hello World (in Python)" 13 return None 14