Reply To: OpenFile to select multiple file

Home Forums General Programming OpenFile to select multiple file Reply To: OpenFile to select multiple file

#60947
atom
Keymaster
    • Topics: 159
    • Replies: 2945
    • Total: 3104
    • ★★★★★

    something like that should work in the new build


    t = {}
    utils:openMultipleFilesWindow (String("Title"), File("/"), String("*.*"), false, t)
    for i=0,3 do
    f = t
    if f ~= nil then
    console (f:getFileName())
    end
    end

    • This reply was modified 8 years, 5 months ago by atom.
    Ctrlr