I am developing a very simple plugin that needs access to information in a standard RR label ("TRACKPATH"). In the plugin code how do I read the information in that label?
I'll continue my searching but I haven't found anything yet.
Printable View
I am developing a very simple plugin that needs access to information in a standard RR label ("TRACKPATH"). In the plugin code how do I read the information in that label?
I'll continue my searching but I haven't found anything yet.
assuming your using the plugin example to communicate with RR the command would be var = RRSDK.GETINFO("<LABELNAME>")
Excellent, thank you.
Next problem. I have found that I can issue a command (like "RRNEXT") but it will not execute until I leave the function. So in this case I want to make RR play the next song and then I want to delete the song. But I can't delete while in the function because I can't make RR move off that song until I leave the function. Is there any way to force RR to execute my command while I'm in the function?
Any command you send will be added to the execute queue.
try
sending RRNEXT||RRERICE_DELETESONG
and then have your plugin process the RRERIC_DELETESONG command.
obviously you will need to have a variable in your plugin that holds the path of the file to delete.