Forum: Poser Python Scripting


Subject: Dialog boxes

Anthony Appleyard opened this issue on Jul 18, 2008 ยท 9 posts


jenay posted Tue, 22 July 2008 at 6:10 AM

here is a small test snippet that could do the job:

from Tkinter import *
import tkFileDialog

fn=tkFileDialog.asksaveasfilename()
pz2Out=open(fn,'w')
pz2Out.write("... und aus is ...")
pz2Out.close()