Sample code?
To force in an option you would use a createitem() routine you already use for parsing or simply use the lines you need.
item=CreateObject("roAssociativeArray")
item.Title="Search"
item.SDPosterURL="http://serverurl.com/searchsd.jpg"
item.HDPosterURL="http://serverurl.com/searchhd.jpg"
categories.Push(item) 'add this manually specified item into current content list
screen.SetContentList(0,categories) 'set the content of category 0 for the top line
Then later in your msg.isListItemSelected() check you would look to see if the title is Search or not with --
If msg.isListItemSelected()
If msg.GetIndex()=0 'if row 0
If categories[msg.GetData()].Title="Search" then
displaysearch()
else
playvideo(categories[msg.GetData()])
end if
else
'standard code begins here