I'm a bit confused about what the purpose of this is, but it sounds like you 
are going to drop a whole bunch of images in a folder (and perhaps have the 
end user add to the collection) then build an html-like page that references 
the images? To iterate through a folder's files you can use code similar to 
(where pFolderPath is your image folder):

fileList = []
pathInfo = the moviePath&pFolderPath
x=1
repeat while getNthFileNameinFolder(pathInfo, x)<>""
   broadFileName = getNthFileNameinFolder(pathInfo,x)
   if  broadFileName contains ".jpg" then
     fileList.append(getNthFileNameinFolder(pathInfo, x))
   end if
   x = x+1
end repeat

Then iterate through fileList to create a reference object (perhaps your 
html-like file, if that exists here).  You also mentioned having the images 
show up in your cast - in that case you need to use importFileInto (D8.5 
lingo help file (search "importFileInto").

Hope this gets you started in the right direction --

Evan


>From: "Chris Joker" <[EMAIL PROTECTED]>
>Reply-To: [EMAIL PROTECTED]
>To: <[EMAIL PROTECTED]>
>Subject: <lingo-l> Link to external JPGs of any name
>Date: Tue, 8 Jan 2002 11:59:36 -0500
>
>
>
>Anyone have any idea how I can link to external .jpg files regardless of
>their names.  In other words I want to link to an external file full of 
>jpgs
>and have them show up in the cast and if I change the jpgs (regardless of
>their names) the new images will show up in the cast as well.
>thanks,
>Chris
>
>[To remove yourself from this list, or to change to digest mode, go to
>http://www.penworks.com/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!]
>




_________________________________________________________________
Send and receive Hotmail on your mobile device: http://mobile.msn.com


[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/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