> i need some help, i need to list folders and .html files inside folders... > folders and html are changing run-time so i use: > > > on exitFrame me > put baFolderList(the moviePath&"somefolder") into member"txtfield" > go the frame > end > > > but how can i link folders so when user clicks on it movie loads html inside
You've got a path, and a list of file names. So, parse through your list of file names, pick out the ones with ".html" in them, use fileIO with the appropriate path and file name to get the text from the file, and then set the html of a textmember to the text that fileIo returns. If you simply want to display the pages in a browser, you could use baOpenURL() or baOpenFile(). -Kurt [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!]
