If I have a variable called tData that contains lines of comma delimited data and I have another variable called tExport (created from 'ask file') that contains "/Users/Larry/Desktop/List.csv" shouldn't the following statement save the data to that file on my desktop:
put tData into URL tExport
I'm not sure what I'm missing. Thanks.
Larry
Save some data question
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: Save some data question
Try this.
And check out file, and binfile in the dictionary for more info.
Code: Select all
put tData into URL ("File:" & tExport)
Re: Save some data question
Thanks sturgis,
That worked just fine. I had looked up URL in the dictionary but had not thought of looking up File.
Regards,
Larry
That worked just fine. I had looked up URL in the dictionary but had not thought of looking up File.
Regards,
Larry