#include 'LibZPlay_MOD.au3' Local $hSong1 = CreateZPlay() Local $hSong2 = CreateZPlay() ConsoleWrite("$hSong1: " & $hSong1 & @TAB & "$hSong2: " & $hSong2 & @LF) Local $sCurrentFile1 = FileOpenDialog('Select your File', @ScriptDir, 'Supported Files(*.mp3;*.mp2;*.mp1;*.ogg;*.flac;*.oga;*.wav;*.ac3;*.aac)') OpenFile($sCurrentFile1, $sfAutodetect, $hSong1) Play($hSong1) Local $sCurrentFile2 = FileOpenDialog('Select your File', @ScriptDir, 'Supported Files(*.mp3;*.mp2;*.mp1;*.ogg;*.flac;*.oga;*.wav;*.ac3;*.aac)') OpenFile($sCurrentFile2, $sfAutodetect, $hSong2) Play($hSong2) Sleep(10000) Close($hSong1) DestroyZPlay($hSong1) Sleep(10000) Close($hSong2) DestroyZPlay($hSong2)