kan ikke loade jpg-fil ind i mit scrollarea
Jeg ved ikke hvad jeg skal skrive for at jeg kan loade billedet ind i mit scrollarea... Resten virker fintBilledet hedder emty.jpg
system.useCodepage = true;
loadVariabler = new LoadVars();
loadVariabler.load("news.txt");
loadVariabler.onLoad = function(success) {
if (success) {
for (i=1; i<=this.dbmax; i++) {
_parent.tmp_mc.attachMovie("file", "file"+i, 100+i);
_parent.tmp_mc["file"+i]._y = (i-1)*145;
_parent.tmp_mc["file"+i].head = this["headline"+i];
_parent.tmp_mc["file"+i].txt = this["teaser"+i];
_parent.tmp_mc["file"+i].date = this["date"+i];
load("http://www.camden.dk/flash/"+this["pictufre_prev"+i], "_parent.tmp_mc['file'"+i+"].pic");
}
_root.FScrollPane_sp.refreshPane();
} else {
trace("not loaded");
}
};