Jozh
Jul 29, 2015 - 01:44
What do I add to this script so it output each element (date,text, width and, length ) on a separate lines of the open file? '\n' ? Thanks.
import dialogs
Dialog_List =[{'type':'date','title':'Date','key':'date'},{'type':'text','title':'description','key':'text'},{'type':'number','title':'Width','key':'wid'},{'type':'number','title':'Length','key':'len'},]
Form_Dialogs = dialogs.form_dialog('Form Dialog',Dialog_List)
date = Form_Dialogs['date']
text = Form_Dialogs['text']
width = Form_Dialogs['wid']
length = Form_Dialogs['len']