So right now, the plugin that I'm working on adds each item to the
timeline individually like so
while (y >= 0)
{
...
SynchronizationHelper.Post(OnItemAdded, new TimelineItemEventArgs(new
TimelineItemContainer(new VisibliTimelineItem(j.links[y].link,
j.links[y].title, j.links[y].clicks + "", "
http://visibli.com/", "View
Full Stats")
{
Id = Guid.NewGuid().ToString()
})));
y--;
...
}
but this becomes very problematic in some cases - is there a way to
add items in bulks instead of adding each item individually?
More information
*Basically the plugin flickers if I do it this way mainly because each
item is being added to the timeline individually and this causes a
flickering effect - more over ideally I would like it to add all the
items at once so this effect does not occur