Any script column added to the computer "folder", will not keep the determined column values.
After some seconds, some kind of refresh goes on, after which the values are gone.
It can be forced by manually refreshing by "F5" or similar. I've attached a minimized column script, it just adds some static text to the column. The text will vanish almost every time after a few seconds, watch the column called "Blink" in the screenshot.
[code]////////////////////////////////////////////////////////////////////////////////
function OnInit(data){
data.name = "Misc.Column: Computer";
data.version = "0.1";
data.default_enable = true;
var col = data.AddColumn();
col.multicol = true;
col.name = "Blink";
col.method = "Column_Computer";
col.type = "text";
col.defwidth = "250px";
}
////////////////////////////////////////////////////////////////////////////////
function Column_Computer(data){
DOpus.Output("Blink() ..");
data.columns("Blink").value = "Read quickly, I'll dissapear!";
}
[/code]