我的目标是让用户按一个按钮来选择一个文件,该文件将同时用作附件和按钮图标。我知道如何分别执行这些任务,但这需要我的用户选择两次相同的文件。我正在寻找一种方法:
这可能吗?我还没有能够解决这个转换步骤。
由于
答案 0 :(得分:0)
您可以提示用户输入一次该文件,然后使用您需要的两个用例的路径。
var img = app.browseForDoc(); // prompts the user to select the file
var imgPath = img.cPath; // get the device independent path to the file
this.importDataObject("myDataObjectFileName", imgPath); // import the data object
this.getField("myImageButton").buttonImportIcon(imgPath); // set "normal" the button face
您的按钮必须先设置为显示图标,您还需要设置缩放属性。您可以使用路径上的一些简单字符串函数使附件名称与文件名相同。