app.project.item(index).layer(index).property(Marker").keyValue( index).setParameters( keyValuePairs)
Description
Associates a set of key-value pairs for Flash Video cue-point parameters, for a cue point associated with this marker value. A cue point can have any number of parameters, but you can add only three through the user interface; use this method to add more than three parameters.
Parameters
keyValuePairs An object containing the key-value pairs as attributes and values. The object’s to String () method is called to assign the string value of each attribute to the named key. Returns
Nothing.
Example
var mv = new MarkerValue("My Marker");
var parms = new object;
parms.timeToBlink = 1;
parms.assignMe = "A string"
mv.setParameters(parms);
myLayer.property("Marker").setValueAtTime(2, mv);