# HELP - error: outout hut?

**URL:** https://forum.kirupa.com/t/help-error-outout-hut/194051
**Category:** flash
**Created:** [July 20, 2006, 4:21am UTC](https://forum.kirupa.com/t/help-error-outout-hut/194051 "2006-07-20T04:21:17Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![magentaraindrop](https://avatars.discourse-cdn.com/v4/letter/m/bc8723/32.png) [@magentaraindrop](https://forum.kirupa.com/u/magentaraindrop)
#### Post date: [July 20, 2006, 4:21am UTC](https://forum.kirupa.com/t/help-error-outout-hut/194051/1 "2006-07-20T04:21:17Z")

</div>

im trying to make a fade in/out galllery.  
so whats wrong with this l code?

function loadXML(loaded) {  
if (loaded) {  
xmlNode = this.firstChild;  
image = [];  
description = [];  
total = xmlNode.childNodes.length;  
for (i=0; i\<total; i++) {  
image\* = xmlNode.childNodes\*.childNodes[0].firstChild.nodeValue;  
description\* = xmlNode.childNodes\*.childNodes[1].firstChild.nodeValue;  
}  
id = setInterval(preloadPic, 100);  
} else {  
content = “file not loaded!”;  
}  
}  
xmlData = new XML();  
xmlData.ignoreWhite = true;  
xmlData.onLoad = loadXML;  
xmlData.load(“images.xml”);  
var loadTot = 0;  
var k = 0;  
// ///////////////////////////////////  
function preloadPic() {  
clearInterval(id);  
var con = picture.duplicateMovieClip(“con”+k, 9984+k);  
con.loadMovie(image[k]);  
var temp = \_root.createEmptyMovieClip(“temp”+k, 99+k);  
temp.onEnterFrame = function() {  
var total = con.getBytesTotal();  
var loaded = con.getBytesLoaded();  
percent = Math.round((loaded/total\*100)/image.length);  
preloader.preload\_bar.\_xscale = loadTot+percent;  
info.text = “Loading picture “+k+” of “+image.length+” total”;  
if (loaded == total && total\>4) {  
con.\_visible = 0;  
nextPic();  
loadTot += percent;  
delete this.onEnterFrame;  
}  
};  
}  
function nextPic() {  
if (k\<image.length-1) {  
k++;  
preloadPic();  
} else {  
firstImage();  
trace(“hit”);  
}  
}  
listen = new Object();  
listen.onKeyDown = function() {  
if (Key.getCode() == Key.LEFT) {  
prevImage();  
} else if (Key.getCode() == Key.RIGHT) {  
nextImage();  
}  
};  
Key.addListener(listen);  
previous\_btn.onRelease = function() {  
prevImage();  
};  
next\_btn.onRelease = function() {  
nextImage();  
};  
// ///////////////////////////////////  
var p = 0;  
var current;  
MovieClip.prototype.fadeIn = function() {  
if (this.\_alpha\<100) {  
current.\_alpha -= 10;  
this.\_alpha += 10;  
} else {  
current.\_visible = 0;  
delete this.onEnterFrame;  
}  
};  
function nextImage() {  
if (p\<(total-1)) {  
current = this[“con”+p];  
p++;  
var picture = this[“con”+p];  
picture.\_visible = 1;  
picture.\_alpha = 0;  
picture.onEnterFrame = fadeIn;  
desc\_txt.text = description[p];  
picture\_num();  
}  
}  
function prevImage() {  
if (p\>0) {  
current = this[“con”+p];  
p–;  
var picture = this[“con”+p];  
picture.\_visible = 1;  
picture.\_alpha = 0;  
picture.onEnterFrame = fadeIn;  
desc\_txt.text = description[p];  
picture\_num();  
}  
}  
function firstImage() {  
con0.\_visible = 1;  
con0.\_alpha = 0;  
con0.onEnterFrame = fadeIn;  
desc\_txt.text = description[0];  
picture\_num();  
}  
function picture\_num() {  
current\_pos = p+1;  
pos\_txt.text = current\_pos+" / "+total;  
}
