|
Mike Buess
USA
3037 Posts |
Posted - 05/15/2006 : 1:53:33 PM
|
Actually, you are using both methods incorrectly.
fdlog.open() assigns the name of the selected file to %A but doesn't automatically assign the path to %B. The correct LabTalk commands for what you want to do are...
fdlog.open(); %B=fdlog.path$; doc -a %B%A;
fdlog.multiopen() doesn't even assign the file name to %A. The number of files selected is given by fdlog.multiopen.count and fdlog.get(A,n) assigns the full name and path of the nth file to %A. This LabTalk script will work for your purposes...
fdlog.multiopen(); loop(ii,1,fdlog.multiopen.count) {fdlog.get(A,ii); doc -a %A};
Mike Buess Origin WebRing Member
Edited by - Mike Buess on 05/15/2006 2:10:05 PM |
 |
|