> What about other changes than artwork, I was thinking more of
> behavior.

This can't be changed using CSS :-).

> One example is: if I don't like the default volume bar but want to
> replace it with a continuous bar or a round button or something, can I
> just exchange this class?

Yes, you could overwrite the SqueezeJS.UI.VolumeBar. You'd probably best do 
this in index.html, adding the code before initialization of the main screen 
(Ext.onReady(Main.init, Main, true);)

> I would have to change the controller as well.

You'd probably only need to overwrite SqueezeJS.UI.VolumeBaronClick() which 
does the volume calculation, based on the coordinates you clicked within the 
volume image:

Ext.apply(SqueezeJS.UI.VolumeBar, {
        onClick: function(ev, target) {
                // add your code here
        }
});

-- 

Michael
_______________________________________________
beta mailing list
[email protected]
http://lists.slimdevices.com/lists/listinfo/beta

Reply via email to