Dueppe --
Sure, there's two ways. One way is to use the "largeResultSet" option:
var options = {
largeResultSet : true,
autoExecuteList : {
cycleTime : GSvideoBar.CYCLE_TIME_MEDIUM,
executeList : [ "ads", "bud light", "vw gti", "the blue angels" ]
}
}
Another way is to use CSS to manually get rid of videos. The class name on each of the TD elements that hold the videos are .resultCell_gsvb. If you create a CSS rule:
.resultCell_gsvb {
display: none;
}
then that will hide all of the videos. From there, you will need to use Javascript (getElementById, getElementByTagName) to grab the video TD's and set CSS rules on them to display as many as you want. Aka, loop through the TD elements with class name == resultCell_gsvb and set the first 2 of them to have the CSS rule display:inline.
Hope this makes sense.
-Ben