function file_open(list "stringType -title '叶片'"){
gg=open_file("G:/practise/log.imw", "r")
return gg
}
你这个写的不对,你的file_open()给的参数可以看出是写的一个交互式对话框,来让用户选择一个String类型的字符串,应该是
function file_open(list "stringType -title '叶片'"){
rerurn list
}
function main_ss(){
gg=interactive_execute("file_open","择打开文件")
open_file("gg[0]","r")
}
gg 获取的文件open_file()打开,在用一个方法时,你看下方法的返回值是什么。可能和你想得不同 |