Multiple files selection

24 views
Skip to first unread message

Soni Kumari

unread,
Jul 6, 2026, 12:09:39 AM (yesterday) Jul 6
to DroidScript
app.ChooseFile() can't select multiple files? I'm try to select multiple images but only single image selecting..., any way to select multiple images?
Message has been deleted
Message has been deleted
Message has been deleted

Jumar

unread,
Jul 6, 2026, 9:31:05 AM (16 hours ago) Jul 6
to DroidScript
Try this ChooseFiles plugin:

https://drive.google.com/file/d/1ZOLf1onHGO9pippsr2DOEBQ6_jN71rR6/view?usp=sharing

You can use it like this:

app.LoadPlugin("ChooseFiles")

function OnStart()
{
    plug = app.LoadFilePicker()
   
    lay = app.CreateLayout("Linear", "VCenter,FillXY")
   
    btn = app.AddButton(lay, "Choose files")
    btn.SetOnTouch( ChooseFiles )
   
    app.AddLayout(lay)
}

function ChooseFiles()
{
    plug.ChooseFiles("*/*", OnChoose)
}

function OnChoose(files)
{
    app.Alert(files)    
}

the files string passed in the OnChoose callback is a pipe "|" separated list of selected files.

Soni Kumari

unread,
Jul 6, 2026, 4:11:00 PM (9 hours ago) Jul 6
to DroidScript
Thank you very much!!

I have a question about html apps
Is use latest css, it work on latest Android but in Android 7 some css style dont work
Is there any issues while uploading on playstore? Or what is the best approach?
Reply all
Reply to author
Forward
0 new messages