I have placed a Save As button on a form using the javascript call app.execMenuItem("SaveAs");
Just before this I want to suggest a filename for the user, which I have composed in a hidden field.
I can do this successfully with app.alert("Save a copy of this form...\n\nMay we suggest a Filename: \n"+offerfilename.rawValue,3);
Is there a method that allows me to present the filename in a copy-able field in a dialog without having to put it on the form?
I really wish it was possible to just take my suggested filename and pre-populate the SaveAs with this name. Would be very very helpful.
Thanks in advance for any help.