Hi candri
Edit this file modules ▸ mod_jaslideshowlite ▸ assets ▸ elements ▸ jafolder.php
and change it as showed below
class JFormFieldJafolder extends JFormField {
protected $type = 'jafolder';
public function getInput() {
$jaFolder = array();
$jaFolder[0] = new stdClass();
$jaFolder[0]->name = 'yourfolder/images';
$jaFolder[0]->text = 'yourfolder/images';
$jaFolder[0]->value = 'yourfolder/images/';
$this->buildTree('images', 0, '', $jaFolder);
your folder will be the name of the folder you wish -
Hope it helps