ID:264887
 
Code:
var/File = input("Which file would you like to view?","File to view") in list(flist(some_path))
alert("file is [File]")

incase your wondering
some_path="file/"

Problem description:
it should say:
"file is ooc.txt"
instead its saying:
"file is /list"

what am i doing wrong?


flist() proc returns a list to begin with so theres no reason to put list() around the flist proc.
In response to Youngj52032
thanks...