William, assuming you have the path for the folder in a variable "tFo"

on mouseUp

put the defaultFolder into tOldFo -- so we can set the default back when we've finished
  set the defaultFolder to tFo
  put the files into tFileList
  filter tFileList with "*.txt"
  repeat for each line L in tFileList
     put url ("file:" & L) & cr after fld "theField"
  end repeat

  set the defaultFolder to tOldFo
end mouseUp

best,

Mark

On 5 Feb 2009, at 10:33, William de Smet wrote:

Hi there,
Say I have several .TXT files in a directory and I want the contents of them
all to be shown in just one text field with just one mouseclick.
I know how to do this with one .TXT file but not with say 30 files.
And all these files have different names.

Any idea's or scripts are welcome!

Greetings,

William
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to