To understand how the TEN mixes work, it's quite helpful to see the
session information about the current playlist (basically all
parameters, rules, history etc.).
Here's an extension to the SmartMix plugin which displays this
information in all it's gory details:
14380

There are two parts to it, a javascript GUI for the Blender and a patch
to the plugin itself.
It could be included in the Blender toolbar like this:

Code:
--------------------
    
  { 
                                text: 'Session Info',
                                handler: function() {
                                        var args = {
                                                cmd: 'getsessionid'
                                        };
                                        Ext.data.JsonP.request({
                                                url: this.squeezeboxServer,
                                                params: {
                                                        args: 
Ext.JSON.encode(args)
                                                },
                                                disableCaching: false,
                                                callback: this.showSessionInfo,
                                                scope: this
                                        });
                                }
                        }
  
--------------------


If Michael wants to, it could be included in the official distribution.
Note that until this is done, you can't just download it and use it - it
has to be merged into the plugin's javascript and perl code.

----
Roland


+-------------------------------------------------------------------+
|Filename: sssi.jpg                                                 |
|Download: http://forums.slimdevices.com/attachment.php?attachmentid=14380|
+-------------------------------------------------------------------+

------------------------------------------------------------------------
Roland0's Profile: http://forums.slimdevices.com/member.php?userid=56808
View this thread: http://forums.slimdevices.com/showthread.php?t=97668

_______________________________________________
plugins mailing list
plugins@lists.slimdevices.com
http://lists.slimdevices.com/mailman/listinfo/plugins

Reply via email to