One standard technique (if I understand you correctly) is to make a 
list of the contents of the changing folder as the projector starts 
up.

(paraphrased from the Help entry for getNthFileNameInFolder:)

The following handler returns a list of file names in the folder on 
the current path. Use 'theFiles = currentFolder (theFolderPath)'.

on currentFolder, thePath
    fileList = [ ]
      repeat with i = 1 to 100
        n = getNthFileNameInFolder(thePath, i)
        if n = EMPTY then exit repeat
        fileList.append(n)
      end repeat
    return fileList
end currentFolder

hth

-Buzz


At 2:13 PM +0000 11/9/01, bjuhr wrote:
>hey. Im trying to create a Projector where I can download .dir files from
>internet to a folder on the hard drive. Then Import them into the projector.
>Here comes the next problem... I want all the .dir files in that folder to
>be dynamicly updated every time the projector is opened. Imagine one of
>those magazines where you get something with each issue... then after a
>while you have you have a lot.
>
>I want all the .dir files in that folder to be loaded into the projector
>without having to program the import of every single file before i make the
>projector. You know... Import the whole . dir content of the folder.
>hmmmm...
>
>Hope this makes sence to someone... Im desperate for help.
>
>thanks.
>/Kristian
>
>
>[To remove yourself from this list, or to change to digest mode, go to
>http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
>email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
>Lingo-L is for learning and helping with programming Lingo.  Thanks!]


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/lingo-l.cgi  To post messages to the list,
email [EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED])
Lingo-L is for learning and helping with programming Lingo.  Thanks!]

Reply via email to