o.SDPosterUrl:"pkg:/images/l.png"
o.SDPosterUrl:"file://pkg:/images/l.png"
o.SDPosterUrl = "file://pkg:/images/l.png"
"kbenson" wrote:
It is a syntax error. You are using associative array assignment syntax outside an associative array.
o.SDPosterUrl:"file://pkg:/images/l.png"
Should be
o.SDPosterUrl = "file://pkg:/images/l.png"
Looks like you switched between assigning the whole array at once and assigning values individually and missed that one.