special Category example?

Is there any examples of the special categories any where, i have bee trying to add some but nothing is showing up…

in fact i even tried using:

 Items = [ {ContentType:"episode"
               SDPosterUrl:"file://pkg:/images/DanGilbert.jpg"
               HDPosterUrl:"file://pkg:/images/DanGilbert.jpg"
               IsHD:true
               HDBranded:true
               ShortDescriptionLine1:"Dan Gilbert asks, Why are we happy?"
               ShortDescriptionLine2:""
               Description:"Harvard psychologist Dan Gilbert says our beliefs about what will make us happy are often wrong -- a premise he supports with intriguing research, and explains in his accessible and unexpectedly funny book, Stumbling on Happiness."
               Rating:"NR"
               StarRating:"80"
               Length:1280
               Categories:["Technology","Talk"]
               Title:"Dan Gilbert asks, Why are we happy?"
               },
               {ContentType:"episode"
               SDPosterUrl:"file://pkg:/images/DanGilbert.jpg"
               HDPosterUrl:"file://pkg:/images/DanGilbert.jpg"
               IsHD:true
               HDBranded:true
               ShortDescriptionLine1:"Dan Gilbert asks, Why are we happy?"
               ShortDescriptionLine2:""
               Description:"Harvard psychologist Dan Gilbert says our beliefs about what will make us happy are often wrong -- a premise he supports with intriguing research, and explains in his accessible and unexpectedly funny book, Stumbling on Happiness."
               Rating:"NR"
               StarRating:"80"
               Length:1280
               Categories:["Technology","Talk"]
               Title:"Dan Gilbert asks, Why are we happy?"
               }
            ]

return 0

and still nothing…

Please refer to the Component Reference Section 4.4 roSpringboardScreen:

Void SetDescriptionStyle(String style)
 Set the springboard style for the poster screen. Styles allow the poster screen to look
differently for different types of content or different usage. The following is the list of valid
screen styles:
o “audio”: All tags on audio screen above are substituted with Content Meta-
Data.
o “movie”: All tags on the video screen above are substituted with Content Meta-
Data
o “video”: All tags except

If you call roSpringboardScreen.SetDesctriptionStyle(“movie”) you will have all the tags including the Categories (or Genres in the picture) displayed.

–Kevin

Thanks I will check that out