Re: Property and variable
Re: Property and variable
- Subject: Re: Property and variable
- From: KOENIG Yvan <email@hidden>
- Date: Fri, 3 Nov 2006 18:34:13 +0100
set theFoldersinput to read DATAFILE as list
set the theFolders to theFoldersinput
on findTheFile(PictureName)
set the theFolders to theFoldersinput
end findTheFile
Hello
One way is:
property theFoldersinput : missing value
set theFoldersinput to read DATAFILE as list
set the theFolders to theFoldersinput
on findTheFile(PictureName)
set the theFolders to theFoldersinput
end findTheFile
an alternate one is:
set theFoldersinput to read DATAFILE as list
set the theFolders to theFoldersinput
my findTheFile(thePictureName, theFoldersinput)
on findTheFile(PictureName,theFsIn)
set the theFolders to theFsIn
end findTheFile
Yvan KOENIG
_______________________________________________
Do not post admin requests to the list. They will be ignored.
AppleScript-Users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
Archives: http://lists.apple.com/mailman//archives/applescript-users
This email sent to email@hidden