
Re: Call for TWX Proxy bugs / wish list
No love yet Rev. I've been coding TWX a lot lately, but mostly looking for speed improvements. I'll see how hard the Port CIM will be.
Thanks for the additional info Sing, I'll keep digging.
BigD, I added the 'getFileList' command in 2.04 for just this sort of use. So let's say you wanted to select from a number of files in the TWX Proxy root folder, where the file names started with 'BD_' and ended in '.txt'. You could make it easy on the script user by coding something like this:
Code:
getFileList $txtArray "bd_*.txt"
if ($txtArray = 0)
echo "*No files found.*"
halt
else
echo "*Select a file number:"
setVar$i 1
while ($i <= $txtArray)
echo "*" $i " - " $txtArray[$i]
add $i 1
end
end
getConsoleInput $selection
Prom just posted a script that uses the basic idea
here. While it's not a windows dialog, it does simplify things.
+EP+