summaryrefslogtreecommitdiff
path: root/scripting/examples
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2005-02-11 15:32:27 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2005-02-11 15:32:27 +0000
commit9e8bd71b8acc57038e1361f0b4e9138bf68e78d2 (patch)
tree4440c3a84dc0267ac447270434ac5f1ab3941c87 /scripting/examples
parentde946f169a4cc99d3e658c2607ad93b268ab3054 (diff)
INTEGRATION: CWS pyunofixes1 (1.1.2); FILE ADDED
2004/12/12 19:46:22 jbu 1.1.2.1: Ã#i25309# moved scripts one level higher, as files are now also container for scripts
Diffstat (limited to 'scripting/examples')
-rw-r--r--scripting/examples/python/HelloWorld.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/scripting/examples/python/HelloWorld.py b/scripting/examples/python/HelloWorld.py
new file mode 100644
index 0000000000..cc634c265b
--- /dev/null
+++ b/scripting/examples/python/HelloWorld.py
@@ -0,0 +1,14 @@
+# HelloWorld python script for the scripting framework
+
+def HelloWorldPython( ):
+ """Prints the string 'Hello World(in Python)' into the current document"""
+#get the doc from the scripting context which is made available to all scripts
+ model = XSCRIPTCONTEXT.getDocument()
+#get the XText interface
+ text = model.Text
+#create an XTextCursor
+ cursor = text.createTextCursor()
+#and insert the string
+ text.insertString( cursor, "Hello World (in Python)", 0 )
+ return None
+