Thank you, Steve. Do you know where the renderSkin() method is defined?
That would be defined in the theme. Below is a skeleton structure of how I overrode the Tab Button theme with my own renderSkin:
CODE
Theme.storage.alias('BlackAngleTabStripButton', 'ControlTabStripButton');
Theme.storage.add('BlackAngleTabStripButton', $merge(Theme.storage
.get('ControlTabStripButton'), {
renderSkin : function(state, w, h, args, theme) {
}
})
Or if your creating a new theme, you can do something like this:
CODE
Theme.storage.add('DataScroller', {
renderSkin : function(state, w, h, args, theme) {
}
})
Look in the theme.js file that I mentioned to get the hang of using themes.