Hello,
You can find dimensions here:
http://developer.yahoo.com/connectedtv/dev...Guidelines.htmlThere are also example PSD files provided here:
http://developer.yahoo.com/connectedtv/dev...Collateral.htmlThe loading.png and placeholder.png are the same size as your snippet image and are not required. More details can be found here:
http://developer.yahoo.com/connectedtv/dev...and_Icon_ImagesYour snippet is defined in your snippet view as shown here:
CODEBOX
/**
* @author jstone
*/
var StaticDefaultSnippet = new KONtx.Class({
title: 'StaticDefaultSnippet',
Extends: KONtx.system.SnippetView,
createView: function() {
var container = new KONtx.element.Container({
styles: $finance.styles.snippet.container,
}).appendTo( this );
new KONtx.element.Image({
src: $finance.styles.images.snippet_placeholder,
styles: $finance.styles.snippet.placeholder,
}).appendTo(container);
}
});
Use the Sample Widgets as your guides:
$HOME/TVWidgets/Konfabulator-Latest-540/TV/Widgets
Hope this helps,
Kelly