Re: Print to PDF under OS X and 9.2-correction
Re: Print to PDF under OS X and 9.2-correction
- Subject: Re: Print to PDF under OS X and 9.2-correction
- From: "John S. Baltutis" <email@hidden>
- Date: Fri, 4 Apr 2003 22:27:45 -0800
Had my cut and paste actions duplicated in the earlier post-disregard it.
This is a corrected version.
On 4/4/03, MR <email@hidden> wrote, among other things:
>
>
MAKENEWFOLDEROSX (Second script)
>
>
--snippets of code in the following script came from various
>
contributors on this list, THANKS!
>
Perform Applescript [
>
set x to cell "report_date_start" as string
>
set y to cell "report_date_end" as string
>
tell app "Finder
>
make new folder at desktop with properties {name: "Rev Rpt " & x & "
>
to " & y}
>
end tell]
>
>
MAKENEWFOLDER9.2 (Third script)
>
>
--snippets of code in the following script came from various
>
contributors on this list, THANKS!
>
Perform Applescript [
>
set x to cell "report_date_start" --as string doesn't seem to work
>
under 9.2
>
set y to cell "report_date_end"
>
tell app "Finder
>
make new folder at desktop with properties {name: "Rev Rpt " & x & "
>
to " & y}
>
end tell
Here's a partial solution. This works in OS 9.2.2 (modified because I don't
have FM). Note: your examples have "Finder vice "Finder", but I don't know
if that's what you tried to run in your script.
set x to "report_date_start"
set y to "report_date_end"
set Myname to ("Rev Rpt " & x & " to " & y) as string
tell application "Finder"
make new folder at desktop with properties {name:"Myname"}
end tell
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.