SOLVED Websocket. Emit(‘play’, ‘’).

I’m struggling to play a particular track, (actually I just want to start the queue at the beginning).

I’ve found this question asked in another topic …

How to play a particular track in queue?
emit(“play”, 5) doesn’t work.
UPDATE:
Ok, got it: need to send 5 as JSON object.

… but that’s as far as it goes.

Can anyone answer more fully please?
Many thanks for any help offered.

SOLVED
Should be…

socket.emit(“play”,{“value”:0});

Easy when you know how!

You saved my day :smiley:
Played around for hours yesterday, without result.
Should have known, as AddPlay behaves similar…