Quote:
Originally Posted by ariszlo
I don't have that. I only have playfile(filename);
|
It is the same.
Quote:
Originally Posted by ariszlo
Replaced playfile(filename); with those lines and added the plDir.mi library:
code: #include "../../../lib/pldir.mi"
but it still does not work for me.
|
Memory Buttons section should look like this:
PHP Code:
MemoryButtons.onLeftButtonUp(int x, int y)
{
buttonDown = 0;
buttondelay.stop();
if (songrecorded) return;
string filename = getPrivateString(getSkinName(), buttonID, "");
if (filename!="")
{
plEdit.clear();
plEdit.enqueueFile(filename);
int playThisFile=plEdit.getNumTracks();
plEdit.playTrack(playThisFile);
tempText("Play file: "+filename);
}
}