Для проигрывателя в 6 окон Кнопка открыть $result = c("openDlg1")->execute(); if ($result) { $arr = c("openDlg1")->files; foreach ($arr as $i=>$file) $arr[$i] = basename($file); c("listBox1")->items->setArray($arr); } Кнопка плеер $music = c("listBox1")->items->selected; c("sqPlayer1")->fileName = $music; c("sqPlayer1")->play(); Кнопка пауза c("sqPlayer1")->pause(); Кнопка стоп c("sqPlayer1")->stop(); Список $music = c("listBox1")->items->selected; c("sqPlayer1")->fileName = $music; c("sqPlayer1")->play();
|