Contains the same set of functions as Options (except Save). It is created for each of MS IE windows and for each of plugins. It can be used to pass data by plugin to itself.
Example:
function MP_Load() {
if (IQ.InMain) {
URLs = IQ.Session.GetOrdList('URLs');
URLs.Set(URLs.Count.toString(), document.URL);
}
};
function MP_Button() {
URLs = IQ.Session.GetOrdList('URLs');
s = '';
for (i = 0; i < URLs.Count; i++)
s = s + URLs.Get(i.toString()) + '\n';
window.alert(s);
};
//This plugin keeps addresses of all visited pages and shows them on the user request