Regular visitors to Digiguide.tv will notice that you now require a subscription to use some of the features.
However, you can give the FREE 7 day trial version of Digiguide.tv Premium a try. Build up your profile with programmes that you like, personalise your grid and set some reminders. Remember, to get a year's worth of personalised TV content for less than 1p per day simply subscribe to Digiguide Premium
Function that is called when the user pushes this button.
String tip
Tooltip used for this button.
Integer orderNumber
A sort number that allows the button to be positioned just where you'd like it.
Boolean enabled [optional]
Whether this button is enabled or not.
Examples
function my_onInPlaceDescriptionToolBarEvent( prog, toolbar ) { toolbar.addDropButton( "%DGIMAGEDIR%Markers.dgimglib:marker-watch-delete.png", my_onButtonEvent, "<b>Click my button</b><br>Click the button for " + prog.name, 100000, true ); }
function my_onListCallback( programme, param ) { if( param ) { debugOut( "I don't like " + programme.name + " chosen" ); } else { debugOut( "I like " + programme.name + " chosen" ); }
}
function my_onButtonEvent( programme, list ) { debugOut( "Drop button for " + programme.name + " has been clicked" ); list.addHeading( "Hello world"); list.addItem( "I like " + programme.name, my_onListCallback, true, "%DGIMAGEDIR%Markers.dgimglib:marker-reminder-add.png" ); list.addItem( "I don't like " + programme.name, my_onListCallback, false, "%DGIMAGEDIR%Markers.dgimglib:marker-reminder-add.png" );