Images of gallery doesn't load when I upload the files on server

The gallery works fine when the files is on my computer but when I upload the files on my server the images doesn't load.
I'm using xml file to load the images. Here is the code of the gallery:
function loadPlayList(url:String) {
          delete myMO.onMouseWheel;
          delete myKO.onKeyDown;
          for (var i in infostruc) {
                    root["_ref"+i] = root["_bmd"+i]=false;
          loadedAll = false;
          infostruc = [];
          for (var i in root) {
                    if ((root[i]._name.substr(0, 3) == "art" || root[i]._name.substr(0, 10) == "reflection") && (parseInt(root[i]._name.split("art")[1]) || parseInt(root[i]._name.split("reflection")[1]))) {
                              root[i].swapDepths(root.getNextHighestDepth());
                              root[i].removeMovieClip();
          current = 1;
          root.createEmptyMovieClip("loader", root.getNextHighestDepth());
          xmlData.load(url);
function init(Void):Void {
          myMO = {};
          myKO = {};
          Mouse.addListener(myMO);
          Key.addListener(myKO);
          for (var i in infostruc) {
                    loader.clear();
                    loader.gradient_mc.removeMovieClip();
                    loader.attachMovie("default", "art", 1);
                    root["_shelveCDWidth"+i] = shelveCDWidth;
                    root["_shelveCDHeight"+i] = shelveCDHeight;
                    root["_frontCDWidth"+i] = frontCDWidth;
                    root["_frontCDHeight"+i] = frontCDHeight;
                    this["_bmd"+i] = new BitmapData(loader._width, loader._height);
                    this["_ref"+i] = new BitmapData(loader._width, loader._height);
                    this["_bmd"+i].draw(loader);
                    var mc:MovieClip = loader.createEmptyMovieClip("gradient_mc", loader.getNextHighestDepth());
                    matrix = new Matrix();
                    matrix.createGradientBox(loader._width, loader._height, reflectionRotation/180*Math.PI, 0, 0);
                    mc.beginGradientFill(reflectionFillType, reflectionColors, reflectionAlphas, reflectionRatios, matrix, reflectionSpreadMethod, reflectionInterpolationMethod, reflectionFocalPointRatio);
                    mc.moveTo(0, 0);
                    mc.lineTo(0, loader._height);
                    mc.lineTo(loader._width, loader._height);
                    mc.lineTo(loader._width, 0);
                    mc.lineTo(0, 0);
                    mc.endFill();
                    loader.art._alpha = reflectionAlpha;
                    loader.beginFill(reflectionBackgroundColour);
                    loader.moveTo(0, 0);
                    loader.lineTo(0, loader._height);
                    loader.lineTo(loader._width, loader._height);
                    loader.lineTo(loader._width, 0);
                    loader.lineTo(0, 0);
                    loader.endFill();
                    this["_ref"+i].draw(loader);
          for (var i:Number = count=0; count<stageWidth-(centerDistance*3); count += shelveCDSpacing, i++) {
                    var cArt:MovieClip = this.createEmptyMovieClip("art"+this.getNextHighestDepth(), this.getNextHighestDepth());
                    var rArt:MovieClip = this.createEmptyMovieClip("reflection"+(this.getNextHighestDepth()-1), this.getNextHighestDepth());
                    rArt.id = cArt.id=rArt.cid=cArt.cid=Number(i)+1;
                    rArt._x = cArt._x=stageWidth;
                    cArt.DistortImage(this["_bmd"+cArt.id]);
                    controlTheObject(cArt);
                    rArt.DistortImage(this["_ref"+cArt.id]);
                    controlTheObject(rArt);
                    var tmpFilter:BlurFilter = new BlurFilter(reflectionBlurX, reflectionBlurY, reflectionQuality);
                    rArt.filterArray = cArt.filterArray=[];
                    rArt.filterArray[0] = tmpFilter;
                    rArt.filters = rArt.filterArray;
                    tmask = mask.duplicateMovieClip("_mask"+cArt.id, this.getNextHighestDepth(), {_x:mask._x, _y:mask._y});
                    rmask = mask.duplicateMovieClip("_rmask"+cArt.id, this.getNextHighestDepth(), {_x:mask._x, _y:mask._y});
                    cArt.setMask(tmask);
                    rArt.setMask(rmask);
                    rArt._visible = cArt._visible=false;
          myMO.onMouseWheel = function(delta:Number):Void  {
                    if (delta>0) {
                              next();
                    } else if (delta<=0) {
                              previous();
          myKO.onKeyDown = function():Void  {
                    if (Selection.getFocus() != "_level0.goto") {
                              if (Key.isDown(Key.RIGHT)) {
                                        next();
                              } else if (Key.isDown(Key.LEFT)) {
                                        previous();
          scrollBar.scroller.onPress = function():Void  {
                    dist = this._parent._xmouse-this._x;
                    this.onMouseMove = function():Void  {
                              tmp = 1+Math.ceil(((this._parent._xmouse-dist)-scrollBarStart)/(scrollBar._width-scrollBarStop)*(infostruc.length-1));
                              if (tmp>infostruc.length) {
                                        tmp = infostruc.length;
                              if (tmp<1) {
                                        tmp = 1;
                              current = tmp;
                              updateInfo();
          scrollBar.scroller.onRelease = scrollBar.scroller.onReleaseOutside=function ():Void {
                    stopDrag();
                    delete this.onMouseMove;
          scrollBar.left.onPress = function():Void  {
                    previous();
                    shifter = setInterval(previous, scrollerDelay);
          scrollBar.right.onPress = function():Void  {
                    next();
                    shifter = setInterval(next, scrollerDelay);
          scrollBar.onMouseUp = function():Void  {
                    clearInterval(shifter);
          scrollBar.onMouseDown = function():Void  {
                    if (this.hitTest(_xmouse, _ymouse, true) && !this.left.hitTest(_xmouse, _ymouse, true) && !this.right.hitTest(_xmouse, _ymouse, true)) {
                              if (this._xmouse<this.scroller._x) {
                                        previous();
                                        shifter = setInterval(previous, clickDelay);
                              if (this._xmouse>this.scroller._x+this.scroller._width) {
                                        next();
                                        shifter = setInterval(next, clickDelay);
          goto.restrict = "0-9";
          goto.onKillFocus = function():Void  {
                    if (!isNaN(Number(this.text)+1)) {
                              if (this.text>infostruc.length) {
                                        this.text = infostruc.length;
                              if (this.text<1) {
                                        this.text = 1;
                              current = Number(this.text);
                    } else {
                              this.text = current;
                    updateInfo();
          fscreen.onPress = function():Void  {
                    fscommand("fullscreen", !(this._currentframe-1));
                    this.gotoAndStop(!(this._currentframe-1)+1);
          slideShow.onPress = function():Void  {
                    if (this._currentframe == 1) {
                              sliderShow = setInterval(function ():Void {
                                        if (current<infostruc.length) {
                                                  next();
                                        } else if (slideshowLooping) {
                                                  current = 0;
                                                  next();
                              }, slideshowSpeed);
                    } else {
                              clearInterval(sliderShow);
                    this.gotoAndStop(!(this._currentframe-1)+1);
          distance = Number(i);
          mask.removeMovieClip();
          fscreen.swapDepths(1102);
          slideShow.swapDepths(1103);
          scrollBar.swapDepths(1101);
          i2.swapDepths(1105);
          i1.swapDepths(1106);
          loader.removeMovieClip();
          loadNext();
          updateInfo();
function concat(m1, m2):Object {
          var mat:Object = {};
          mat.a = m1.c*m2.b;
          mat.b = m1.d*m2.b;
          mat.c = m1.a*m2.c;
          mat.d = m1.b*m2.c;
          mat.tx = m1.a*m2.tx+m1.c*m2.ty+m1.tx;
          mat.ty = m1.b*m2.tx+m1.d*m2.ty+m1.ty;
          return mat;
function updateInfo():Void {
          goto.text = current;
          info = infostruc[current-1].info;
          author = infostruc[current-1].auth;
          album = infostruc[current-1].album;
          displayAlternArt(root["_bmd"+(current-1)], artDisplay._width, artDisplay._height);
          scrollBar.scroller._x = scrollBarStart+((current-1)/(infostruc.length-1)*(scrollBar._width-scrollBarStop));
function brightness(_prop:String, _old:Number, _new:Number, target:MovieClip):Void {
          var brightness_array:Array = [1, 0, 0, 0, _new, 0, 1, 0, 0, _new, 0, 0, 1, 0, _new, 0, 0, 0, 1, 0];
          target.filterArray[1] = new ColorMatrixFilter(brightness_array);
          target.filters = target.filterArray;
function controlTheObject(mc):Void {
          if (mc._name.indexOf("reflection") == -1) {
                    mc.onPress = function():Void  {
                              if ((getTimer()-this.pressTime<=doubleClickRegister && this.pressTime) || !doubleClickURL) {
                                        if (infostruc[this.cid].urlToGet) {
                                                  getURL(infostruc[this.cid].urlToGet, "_"+infostruc[this.cid].urlAction);
                              this.pressTime = getTimer();
                              current = this.cid+1;
                              updateInfo();
          mc.watch("_brightness", brightness, mc);
          mc.onEnterFrame = function():Void  {
                    this._visible = true;
                    if (infostruc[this.cid].loaded && !this.loadedImage) {
                              this.allowUpdate = true;
                              this.DistortImage(this._name.indexOf("reflection")>-1 ? this._parent["_ref"+this.cid] : this._parent["_bmd"+this.cid]);
                              this.setTransform(this.px1, this.py1, this.px2, this.py2, this.px3, this.py3, this.px4, this.py4);
                              this.loadedImage = true;
                    if (Math.round(Math.abs(this._x-this.x))>=1 || this.allowUpdate) {
                              if (this._name.indexOf("reflection") == -1) {
                                        this._y = centerY+((shelveCDHeight/2)-(this._parent["_shelveCDHeight"+this.cid]/2));
                                        if (this._x>=centerX+centerDistance) {
                                                  this.swapDepths(-this._x);
                                                  this.setSides(-(this._parent["_shelveCDWidth"+this.cid]/2), -(this._parent["_shelveCDHeight"+this.cid]/2)+((Math.sin(angle*Math.PI/180)*this._parent["_frontCDWidth"+this.cid])), this._parent["_shelveCDWidth"+this.cid]/2, -(this._parent["_shelveCDHeight"+this.cid]/2), this._parent["_shelveCDWidth"+this.cid]/2, this._parent["_shelveCDHeight"+this.cid]/2, -(this._parent["_shelveCDWidth"+this.cid]/2), (this._parent["_shelveCDHeight"+this.cid]/2)-((Math.sin(angle*Math.PI/180)*this._parent["_frontCDWidth"+this.cid])));
                                        } else if (this._x<=centerX-centerDistance) {
                                                  this.swapDepths(this._x);
                                                  this.setSides(-(this._parent["_shelveCDWidth"+this.cid]/2), -(this._parent["_shelveCDHeight"+this.cid]/2), this._parent["_shelveCDWidth"+this.cid]/2, -(this._parent["_shelveCDHeight"+this.cid]/2)+(Math.sin(angle*Math.PI/180)*this._parent["_frontCDWidth"+this.cid]), this._parent["_shelveCDWidth"+this.cid]/2, (this._parent["_shelveCDHeight"+this.cid]/2)-(Math.sin(angle*Math.PI/180)*this._parent["_frontCDWidth"+this.cid]), -(this._parent["_shelveCDWidth"+this.cid]/2), this._parent["_shelveCDHeight"+this.cid]/2);
                                        } else if (this.cid == current-1 || this.cid == current || this.cid == current-2) {
                                                  if (this._x>centerX-centerDistance && Math.floor(this._x)<centerX && angle-((this._x-(centerX-centerDistance))/centerDistance*angle)>autoJump) {
                                                            this.swapDepths(1002);
                                                            var sum:Number = this._parent["_shelveCDWidth"+this.cid]+((this._x-(centerX-centerDistance))/centerDistance*(this._parent["_frontCDWidth"+this.cid]-this._parent["_shelveCDWidth"+this.cid]));
                                                            var sum2:Number = angle-((this._x-(centerX-centerDistance))/centerDistance*angle);
                                                            var sum3:Number = this._parent["_shelveCDHeight"+this.cid]+((this._x-(centerX-centerDistance))/centerDistance*(this._parent["_frontCDHeight"+this.cid]-this._parent["_shelveCDHeight"+this.cid]));
                                                            this.setSides(-(sum/2), -(sum3/2), sum/2, -(sum3/2)+((Math.sin(sum2*Math.PI/180)*this._parent["_frontCDWidth"+this.cid])), sum/2, (sum3/2)-((Math.sin(sum2*Math.PI/180)*this._parent["_frontCDWidth"+this.cid])), -(sum/2), sum3/2);
                                                  } else if (this._x<centerX+centerDistance && Math.ceil(this._x)>centerX && angle-(((centerX+centerDistance)-this._x)/centerDistance*angle)>autoJump) {
                                                            this.swapDepths(1003);
                                                            var sum:Number = this._parent["_shelveCDWidth"+this.cid]+(((centerX+centerDistance)-this._x)/centerDistance*(this._parent["_frontCDWidth"+this.cid]-this._parent["_shelveCDWidth"+this.cid]));
                                                            var sum2:Number = angle-(((centerX+centerDistance)-this._x)/centerDistance*angle);
                                                            var sum3:Number = this._parent["_shelveCDHeight"+this.cid]+(((centerX+centerDistance)-this._x)/centerDistance*(this._parent["_frontCDHeight"+this.cid]-this._parent["_shelveCDHeight"+this.cid]));
                                                            this.setSides(-(sum/2), -(sum3/2)+((Math.sin(sum2*Math.PI/180)*this._parent["_frontCDWidth"+this.cid])), sum/2, -(sum3/2), sum/2, sum3/2, -(sum/2), (sum3/2)-((Math.sin(sum2*Math.PI/180)*this._parent["_frontCDWidth"+this.cid])));
                                                  } else {
                                                            this.swapDepths(1004);
                                                            this.setSides(-(this._parent["_frontCDWidth"+this.cid]/2), -(this._parent["_frontCDHeight"+this.cid]/2), this._parent["_frontCDWidth"+this.cid]/2, -(this._parent["_frontCDHeight"+this.cid]/2), this._parent["_frontCDWidth"+this.cid]/2, this._parent["_frontCDHeight"+this.cid]/2, -(this._parent["_frontCDWidth"+this.cid]/2), this._parent["_frontCDHeight"+this.cid]/2);
                                        } else {
                                                  if (this._x>centerX-centerDistance && Math.floor(this._x)<centerX && angle-((this._x-(centerX-centerDistance))/centerDistance*angle)>autoJump) {
                                                            this.swapDepths(1002);
                                                            var sum2:Number = angle-((this._x-(centerX-centerDistance))/centerDistance*angle);
                                                            this.setSides(-(this._parent["_shelveCDWidth"+this.cid]/2), -(this._parent["_shelveCDHeight"+this.cid]/2), this._parent["_shelveCDWidth"+this.cid]/2, -(this._parent["_shelveCDHeight"+this.cid]/2)+((Math.sin(sum2*Math.PI/180)*this._parent["_frontCDWidth"+this.cid])), this._parent["_shelveCDWidth"+this.cid]/2, (this._parent["_shelveCDHeight"+this.cid]/2)-((Math.sin(sum2*Math.PI/180)*this._parent["_frontCDWidth"+this.cid])), -(this._parent["_shelveCDWidth"+this.cid]/2), this._parent["_shelveCDHeight"+this.cid]/2);
                                                  } else if (this._x<centerX+centerDistance && Math.ceil(this._x)>centerX && angle-(((centerX+centerDistance)-this._x)/centerDistance*angle)>autoJump) {
                                                            this.swapDepths(1003);
                                                            var sum2:Number = angle-(((centerX+centerDistance)-this._x)/centerDistance*angle);
                                                            this.setSides(-(this._parent["_shelveCDWidth"+this.cid]/2), -(this._parent["_shelveCDHeight"+this.cid]/2)+((Math.sin(sum2*Math.PI/180)*this._parent["_frontCDWidth"+this.cid])), this._parent["_shelveCDWidth"+this.cid]/2, -(this._parent["_shelveCDHeight"+this.cid]/2), this._parent["_shelveCDWidth"+this.cid]/2, this._parent["_shelveCDHeight"+this.cid]/2, -(this._parent["_shelveCDWidth"+this.cid]/2), (this._parent["_shelveCDHeight"+this.cid]/2)-((Math.sin(sum2*Math.PI/180)*this._parent["_frontCDWidth"+this.cid])));
                              } else {
                                        this._yscale = -100;
                                        this._y = centerY+((shelveCDHeight/2)-(this._parent["_shelveCDHeight"+this.cid]/2))+this._parent["_shelveCDHeight"+this.cid]+reflectionSpace;
                                        if (this._x>=centerX+centerDistance) {
                                                  this.swapDepths(-this._x-333);
                                                  this.setSides(-(this._parent["_shelveCDWidth"+this.cid]/2), -(this._parent["_shelveCDHeight"+this.cid]/2)+(Math.sin(angle*Math.PI/180)*this._parent["_frontCDWidth"+this.cid]), -(this._parent["_shelveCDWidth"+this.cid]/2)+this._parent["_shelveCDWidth"+this.cid], -(this._parent["_shelveCDHeight"+this.cid]/2), -(this._parent["_shelveCDWidth"+this.cid]/2)+this._parent["_shelveCDWidth"+this.cid], this._parent["_shelveCDHeight"+this.cid]/2, -(this._parent["_shelveCDWidth"+this.cid]/2), (this._parent["_shelveCDHeight"+this.cid]/2)+((Math.sin(angle*Math.PI/180)*this._parent["_frontCDWidth"+this.cid])));
                                        } else if (this._x<=centerX-centerDistance) {
                                                  this.swapDepths(this._x-333);
                                                  this.setSides(-(this._parent["_shelveCDWidth"+this.cid]/2), -(this._parent["_shelveCDHeight"+this.cid]/2), -(this._parent["_shelveCDWidth"+this.cid]/2)+this._parent["_shelveCDWidth"+this.cid], -(this._parent["_shelveCDHeight"+this.cid]/2)+((Math.sin(angle*Math.PI/180)*this._parent["_frontCDWidth"+this.cid])), -(this._parent["_shelveCDWidth"+this.cid]/2)+this._parent["_shelveCDWidth"+this.cid], (this._parent["_shelveCDHeight"+this.cid]/2)+(Math.sin(angle*Math.PI/180)*this._parent["_frontCDWidth"+this.cid]), -(this._parent["_shelveCDWidth"+this.cid]/2), this._parent["_shelveCDHeight"+this.cid]/2);
                                        } else if (this.cid == current-1 || this.cid == current || this.cid == current-2) {
                                                  if (this._x>centerX-centerDistance && this._x<centerX && !validateOk(this)) {
                                                            this.swapDepths(999);
                                                            var sum:Number = this._parent["_shelveCDWidth"+this.cid]+((this._x-(centerX-centerDistance))/centerDistance*(this._parent["_frontCDWidth"+this.cid]-this._parent["_shelveCDWidth"+this.cid]));
                                                            var sum2:Number = angle-((this._x-(centerX-centerDistance))/centerDistance*angle);
                                                            var sum3:Number = this._parent["_shelveCDHeight"+this.cid]+((shelveCDHeight/2)-(this._parent["_shelveCDHeight"+this.cid]/2))+((this._x-(centerX-centerDistance))/centerDistance*(this._parent["_frontCDHeight"+this.cid]-this._parent["_shelveCDHeight"+this.cid]));
                                                            this._y = centerY+sum3+reflectionSpace;
                                                            this.setSides(-(sum/2), -(sum3/2), sum/2, -(sum3/2)+((Math.sin(sum2*Math.PI/180)*this._parent["_frontCDWidth"+this.cid])), sum/2, (sum3/2)+((Math.sin(sum2*Math.PI/180)*this._parent["_frontCDWidth"+this.cid])), -(sum/2), sum3/2);
                                                  } else if (this._x<centerX+centerDistance && this._x>centerX && !validateOk(this)) {
                                                            this.swapDepths(998);
                                                            var sum:Number = this._parent["_shelveCDWidth"+this.cid]+(((centerX+centerDistance)-this._x)/centerDistance*(this._parent["_frontCDWidth"+this.cid]-this._parent["_shelveCDWidth"+this.cid]));
                                                            var sum2:Number = angle-(((centerX+centerDistance)-this._x)/centerDistance*angle);
                                                            var sum3:Number = this._parent["_shelveCDHeight"+this.cid]+((shelveCDHeight/2)-(this._parent["_shelveCDHeight"+this.cid]/2))+(((centerX+centerDistance)-this._x)/centerDistance*(this._parent["_frontCDHeight"+this.cid]-this._parent["_shelveCDHeight"+this.cid]));
                                                            this.setSides(-(sum/2), -(sum3/2)+((Math.sin(sum2*Math.PI/180)*this._parent["_frontCDWidth"+this.cid])), sum/2, -(sum3/2), sum/2, sum3/2, -(sum/2), (sum3/2)+((Math.sin(sum2*Math.PI/180)*this._parent["_frontCDWidth"+this.cid])));
                                                            this._y = centerY+sum3+reflectionSpace;
                                                  } else if (!validateOk(this)) {
                                                            this.swapDepths(995);
                                                            this._y = centerY+((shelveCDHeight/2)-(this._parent["_shelveCDHeight"+this.cid]/2))+this._parent["_frontCDHeight"+this.cid]+reflectionSpace;
                                                            this.setSides(-(this._parent["_frontCDWidth"+this.cid]/2), -(this._parent["_frontCDHeight"+this.cid]/2), this._parent["_frontCDWidth"+this.cid]/2, -(this._parent["_frontCDHeight"+this.cid]/2), this._parent["_frontCDWidth"+this.cid]/2, this._parent["_frontCDHeight"+this.cid]/2, -(this._parent["_frontCDWidth"+this.cid]/2), this._parent["_frontCDHeight"+this.cid]/2);
                              this.allowUpdate = false;
                              this._x -= Math.min(Math.max((this._x-this.x)/albumEase, -maxSlide), maxSlide);
                              this.setTransform(this.px1, this.py1, this.px2, this.py2, this.px3, this.py3, this.px4, this.py4);
                              if (this._x<deleteMinDistance && this._parent["_ref"+(this.cid+distance)]) {
                                        this.cid += distance;
                                        this._x = deleteMaxDistance;
                                        controlTheObject(this);
                                        this._visible = false;
                                        this.loadedImage = infostruc[this.cid].loaded;
                                        this.DistortImage(this._name.indexOf("reflection")>-1 ? this._parent["_ref"+this.cid] : this._parent["_bmd"+this.cid]);
                              if (this._x>deleteMaxDistance && this._parent["_ref"+(this.cid-distance)]) {
                                        this.cid -= distance;
                                        this._x = deleteMinDistance;
                                        controlTheObject(this);
                                        this._visible = false;
                                        this.loadedImage = infostruc[this.cid].loaded;
                                        this.DistortImage(this._name.indexOf("reflection")>-1 ? this._parent["_ref"+this.cid] : this._parent["_bmd"+this.cid]);
                    } else if (Math.ceil(Math.abs(this._x-this.x)) == 0) {
                              this._x = this.x;
                    if (this.cid+1>current) {
                              this.x = (centerX+((this.cid+1-current)*shelveCDSpacing))+centerDistance;
                    } else if (this.cid+1<current) {
                              this.x = (centerX+((this.cid+1-current)*shelveCDSpacing))-centerDistance;
                    } else {
                              this.x = centerX+((this.cid+1-current)*shelveCDSpacing);
                    if (fadeType == "brightness") {
                              if (this._x<fadePointMin+fadeDist) {
                                        this._brightness = -(250-((this._x-fadePointMin)/fadeDist*250));
                              } else if (this._x>fadePointMax-fadeDist) {
                                        this._brightness = -(250-((fadePointMax-this._x)/fadeDist*250));
                              } else {
                                        this._brightness = 0;
                    } else if (fadeType == "alpha") {
                              if (this._x<fadePointMin+fadeDist) {
                                        this._alpha = ((this._x-fadePointMin)/fadeDist*100);
                              } else if (this._x>fadePointMax-fadeDist) {
                                        this._alpha = ((fadePointMax-this._x)/fadeDist*100);
                              } else {
                                        this._alpha = 100;
function next():Void {
          if (current<infostruc.length) {
                    current += 1;
          updateInfo();
function previous():Void {
          if (current>1) {
                    current -= 1;
          updateInfo();
function displayAlternArt(art, width:Number, height:Number):Void {
          artDisplay.attachBitmap(art, 1);
          artDisplay._width = width;
          artDisplay._height = height;
function loadNext():Void {
          if (!loadedAll) {
                    var num:Number = current-1;
                    if (infostruc[current-1].loaded) {
                              var num:Number = current-Math.floor(distance/2)-1>=0 ? current-Math.floor(distance/2)-1 : 0;
                              while (infostruc[num].loaded && num<infostruc.length) {
                                        num++;
                              if (num>=infostruc.length) {
                                        var num:Number = current-1;
                                        while (infostruc[num].loaded && num>0) {
                                                  num--;
                                        if (num<=0) {
                                                  loadedAll = true;
                    var newLoad:MovieClip = this.createEmptyMovieClip("artLoad"+num, this.getNextHighestDepth());
                    newLoad.createEmptyMovieClip("art", newLoad.getNextHighestDepth());
                    newLoad._alpha = 0;
                    var mc:Object = {};
                    mc.number = num;
                    var artLoader:MovieClipLoader = new MovieClipLoader();
                    artLoader.addListener(mc);
                    artLoader.loadClip(infostruc[num].httpType+infostruc[num].art, newLoad.art);
                    mc.onLoadError = function() {
                              infostruc[this.number].loaded = true;
                              loadNext();
                    mc.onLoadInit = function(target:MovieClip) {
                              tw = target._width;
                              ty = target._height;
                              if (_CDProportions == "auto") {
                                        if (target._width>target._height) {
                                                  target._width = Math.min(frontCDWidth, target._width);
                                                  target._yscale = target._xscale;
                                        } else {
                                                  target._height = Math.min(frontCDHeight, target._height);
                                                  target._xscale = target._yscale;
                              root["_frontCDWidth"+this.number] = Math.min(frontCDWidth, target._width);
                              root["_frontCDHeight"+this.number] = Math.min(frontCDHeight, target._height);
                              target._width = tw;
                              target._height = ty;
                              root["_bmd"+this.number] = new BitmapData(target._width, target._height);
                              root["_ref"+this.number] = new BitmapData(target._width, target._height);
                              root["_bmd"+this.number].draw(target);
                              var mc:MovieClip = target._parent.createEmptyMovieClip("gradient_mc", target._parent.getNextHighestDepth());
                              matrix = new Matrix();
                              matrix.createGradientBox(target._width, target._height, reflectionRotation/180*Math.PI, 0, 0);
                              mc.beginGradientFill(reflectionFillType, reflectionColors, reflectionAlphas, reflectionRatios, matrix, reflectionSpreadMethod, reflectionInterpolationMethod, reflectionFocalPointRatio);
                              mc.moveTo(0, 0);
                              mc.lineTo(0, target._height);
                              mc.lineTo(target._width, target._height);
                              mc.lineTo(target._width, 0);
                              mc.lineTo(0, 0);
                              mc.endFill();
                              target._parent.beginFill(reflectionBackgroundColour);
                              target._parent.moveTo(0, 0);
                              target._parent.lineTo(0, target._height);
                              target._parent.lineTo(target._width, target._height);
                              target._parent.lineTo(target._width, 0);
                              target._parent.lineTo(0, 0);
                              target._parent.endFill();
                              target._alpha = reflectionAlpha;
                              root["_ref"+this.number].draw(target._parent);
                              infostruc[this.number].loaded = true;
                              if (_CDProportions == "auto") {
                                        if (target._width>target._height) {
                                                  target._width = Math.min(shelveCDWidth, target._width);
                                                  target._yscale = target._xscale;
                                        } else {
                                                  target._height = Math.min(shelveCDHeight, target._height);
                                                  target._xscale = target._yscale;
                              root["_shelveCDWidth"+this.number] = Math.min(shelveCDWidth, target._width);
                              root["_shelveCDHeight"+this.number] = Math.min(shelveCDHeight, target._height);
                              target._parent.removeMovieClip();
                              updateInfo();
                              loadNext();
xmlData.onLoad = function(success:Boolean):Void  {
          if (success) {
                    for (var i:Number = -1; this.childNodes[0].childNodes[++i]; ) {
                              var cNode:XMLNode = this.childNodes[0].childNodes[i].childNodes;
                              var val1:String = cNode[1].childNodes[0].nodeValue ? unescape(cNode[1].childNodes[0].nodeValue) : unknownSong;
                              var val2:String = cNode[2].childNodes[0].nodeValue ? unescape(cNode[2].childNodes[0].nodeValue) : unknownArtist;
                              var val3:String = cNode[3].childNodes[0].nodeValue ? unescape(cNode[3].childNodes[0].nodeValue) : unknownAlbum;
                              var val4:String = cNode[4].childNodes[0].nodeValue ? unescape(cNode[4].childNodes[0].nodeValue) : "./";
                              var val5:String = cNode[5].childNodes[0].nodeValue ? unescape(cNode[5].childNodes[0].nodeValue) : undefined;
                              var val6:String = cNode[6].childNodes[0].nodeValue ? unescape(cNode[6].childNodes[0].nodeValue) : undefined;
                              infostruc.push({art:cNode[0].childNodes[0].nodeValue, info:val1, auth:val2, album:val3, httpType:val4, urlToGet:val5, urlAction:val6, loaded:false});
                              root["_frontCDWidth"+i] = frontCDWidth;
                              root["_frontCDHeight"+i] = frontCDHeight;
                              root["_shelveCDWidth"+i] = shelveCDWidth;
                              root["_shelveCDHeight"+i] = shelveCDHeight;
                    init();
                    loadStat = "";
          } else {
                    loadStat = "There was an error loading that data, sorry.";
xmlData.ignoreWhite = true;
loadPlayList("./albuminfo9.xml");
loader._visible = false;
mask._alpha = 0;
scrollBar.scroller._y = 0;

This won't work on most servers: "./albuminfo9.xml". It should be "../albuminfo9.xml". That may or may not solve the problem. Be sure that all of your files and folders are in the same relative location on the server as they are on your computer. Also be sure that the case for each referenced item is correct. Upper and lower case are sometimes more important on a server than they are on your computer. JPG is not the same as jpg. Be sure that your files are uploading correctly.

Similar Messages

  • When i upload the files thorugh internet jvm memory is taking so much.

    i have integrated a file upload in my webapplication(JSP)
    when i upload the files thorugh internet jvm memory is taking so much.
    how can i reduce it.
    any open source for file upload process is there?
    thax,
    R. Ramasubramaniam.

    Suggestion: read [the documentation|http://commons.apache.org/fileupload/using.html] for it.
    By default it will store files in memory up to about 10k. Larger than that will be written to disk.
    If you are really worried about memory, perhaps you should take a look at the [streaming API|http://commons.apache.org/fileupload/streaming.html]
    How large are the files being uploaded?
    How many users are we talking about?

  • Bad file number - comes when i upload the file

    While i tried to upload the file more 300 kb (any file type)to 2 apache server using nfsmount (nfsmnt-apache 1 and nfsmnt2 -apache 2) through weblogic 9.2 (it is running in linux), i got the following exception, but less 200kb file i can upload the file (any type) to both apache server.
    java.io.IOException: Bad file number at java.io.FileInputStream.readBytes(Native Method) at java.io.FileInputStream.read(FileInputStream.java:177) at
    anybody known this prob, pls help me

    Suggestion: read [the documentation|http://commons.apache.org/fileupload/using.html] for it.
    By default it will store files in memory up to about 10k. Larger than that will be written to disk.
    If you are really worried about memory, perhaps you should take a look at the [streaming API|http://commons.apache.org/fileupload/streaming.html]
    How large are the files being uploaded?
    How many users are we talking about?

  • Hi everyone i tried to modify BCA so i can use a usb to load windows via BCA but now it doesn't load when i double click it!?

    i tried to modify BCA so i can use a usb to load windows via BCA but now it doesn't load when i double click it!? any ideas?

    iv solved it now

  • Turn off lightroom so it doesn't load when inserting SD card

    i would like to make it so lightroom doesn't load when i insert a SD card.... can someone tell me how this is done?

    Windows: Edit > Preferences > General
    Mac: Lightroom > Preferences > General
    UNcheck "Show import dialog when a memory card is detected"

  • I can't connect my iPod classic to iTunes, it just doesn't react when I put the USB into the PC

    hey, I have an iPod classic and it can't connect to iTunes.
    I put the USB into my computer trying to add music, but it doesn't seems to react.
    It DOESN'T say that it can't recognize the Ipod..
    - Itunes just simpely doesn't react when I put the USB-cabel into my computer.
    - when i go to the task manager the "apple device mobile" and "ipod service" is acitve in the processes
    - I've tried to restart my computer (windows XP)
    - update iTunes
    - reinstall iTunes
    - restart my apple devices mobile manager
    what I think is the problem (which I can't solve) is that iTunes doen't even react to the USB
    plz hlp me!
    - ps it really should be able to add music to my iPod without getting help from a expert.

    Hello qz0rz213,
    It would seem that iTunes has encountered or developed an issue in the process of trying to sync photos to your device. The best place to start would be removing the iPod Photo Cache (thus allowing for a new version to be created).
    Note: Deleting this folder will not remove the original images from your library.
    iTunes: Understanding the iPod Photo Cache folder
    http://support.apple.com/kb/TS1314
    If the issue is not resolved by removing the iPod Photo Cache, the following article goes into further steps that can both help you determine the source of this trouble and eliminate it.
    Symptoms
    In certain situations, iTunes may display an alert or may be unable to sync photos to an iPod or iOS device. Examples include:
    After updating iOS, iTunes displays an alert that there is not enough room to sync photos
    This error appears: "The iPhone/iPod touch '[device name]' cannot be synced. The required file cannot be found."
    This article outlines steps to resolve these issues.
    iTunes: Unable to sync photos
    http://support.apple.com/kb/TS3697
    Cheers,
    Allen

  • HT3382 I have a Samsung VGA Monitor connected to my MacBook Pro using the Mini Display Port to VGA Adapter.  How do I configure the computer so that it doesn't sleep when I close the lid of the computer.

    I have a Samsung VGA Monitor connected to my MacBook Pro using the Mini Display Port to VGA Adapter.  How do I configure the computer so that it doesn't sleep when I close the lid of the computer.

    Hi alangium,
    Welcome to the Support Communities!
    Resetting your computer's PRAM should restore your Macbook Pro's screen appearance.
    OS X Mavericks: Reset your computer’s PRAM
    http://support.apple.com/kb/ph14222
    This article may provide some information about your Mini DisplayPort to AVI adapter.  Have you tried to connect a different VGA monitor to your Macbook to see if you get the same results?
    Apple Mini DisplayPort adapters: Frequently asked questions (FAQ)
    http://support.apple.com/kb/HT3382
    18. What is the maximum resolution available for use with the Apple Mini DisplayPort to VGA adapter?
    The resolution available with the Apple Mini DisplayPort to VGA Adapter is 1920 x 1200. VGA displays that use higher refresh rates (such as 85 Hz) at resolutions of 1600 x 1200 or greater may not generate video properly until you lower the refresh rate.
    Apple computers: Troubleshooting issues with video on internal or external displays
    http://support.apple.com/kb/HT1573#5
    How can I detect displays?
    If the detect displays option is not available, hold down the Option key while you are in the Display pane.
    How do I select additional resolutions on my display?
    You can use the Display pane of System Preferences to specify how your display works. Not all options appear for all display models. By default the best resolution for your display will already be selected in System Preferences.
    To select a different resolution, use the Scaled option. Some additional resolutions may be available when you hold the Option button.
    I hope this information helps ....
    - Judy

  • My ipod touch (4gen) won't turn on or charge. My computer doesn't recognize when I plug the ipod in. What can I do?

    My ipod touch (4gen) won't turn on or charge. My computer doesn't recognize when I plug the ipon in. What can I do?

    same problem over here

  • TS1398 The internet on my Iphone 4 doesn't work when I use the Wifi

    The internet on my Iphone 4 doesn't work when I use the Wifi at home. My Mac works fine. On the Iphone it shows it's connected but it doesn't open any app. Anyone knows what to do? Thanks

    Ÿ. If you tap and hold the "Y" does it appear? If so, just slide your finger up to select.

  • How to get the full image directory when i upload the image to web page???

    hai, how to get the full image directory when i upload the image to web page???
    here is the example:
    <form action="uploadfile.jsp" method="post">
    image<input type="file" name="image" />
    <input type="submit" value="submit"/>
    <%
    String s=request.getParameter("image");
    %>
    <%=s%>
    </form>
    i upload the image from C:\image\center.gif. i use request.getParameter just can get the image name like "center.gif". Can anybody help me how to get the full path name. Thanks a lot..

    There is no need to get the path. It is also fairly pointless as the server cannot access the client's local file system.
    Carefully read this article how you can upload files the right way: http://balusc.blogspot.com/2007/11/multipartfilter.html

  • The mark of increasing volume doesn't appear when i use the back light key

    the mark of increasing volume doesn't appear when i use the back light key

    Hi,
    Please write your notebook product number (p/n), which system are you using and country of purchase.
    Resource:
    How to Locate the Notebook product number (p/n)
    ** Say thanks by clicking the "Thumb up" icon which is on the left. **
    ** Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue. **

  • PSD preview doesn't update when i change psd-file

    Hello everyone!)
    I work in Mac OS Mountain Lion. PSD preview doesn't update when i change psd-file placed on external hdd or flash drive (ntfs or exfat).
    Create psd-file.
    Сhanged psd-file in Photoshop cs6 (preview don't update).

    Same problem with PDF files.
    Now it's very difficult to detect latest version of psd-file.
    Does anyone have a similar problem using not HFS file system?

  • I'VE CREATED A FORM WITH IMAGES. WHEN I OPEN THE FILE IN ACROBAT READER, THE IMAGES ARE BALCK BOXES!

    I'VE CREATED A FORM WITH IMAGES. WHEN I OPEN THE FILE IN ACROBAT READER THE IMAGES ARE BLACK BOXES.
    THE FORM HAs (extend features to acrobat reader). THE FORM WAS DISTRIBUTED.
    NON OF MY EMPOYEES CAN SEE THE IMAGES. WHAT'S WRONG? CAN YOU HELP?

    However, the view large images is an issue for a form that is being distributed. Either a note needs to be added to the PDF to tell how to enable the view or the images need to be changed so that the enabling is not needed.

  • Firefox 6 will not load when I click the icon. I have tried to uninstall it, both through the control panel and geong straight to help.exe. In both cases nothing happens. How do I uninstall this program?

    Firefox 6 will not load when I click the icon. I have tried to uninstall it, both through the control panel and going straight to help.exe. In both cases nothing happens. How do I uninstall this program?

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • HT5278 i did this update and now the volume on my phone doesn't appear when i push the buttons on the side of the phone. occasionally i see them, but my speakers won't work for playing videos or music either. it does ring when i receive a call though! ne1

    i did the ios5.1.1 update and now the volume on my phone doesn't appear when i push the buttons on the side of the phone. occasionally i see them, but my speakers won't work for playing videos or music either. it does ring when i receive a call though, and for my alarm. ne1 else had these problems?

    I have had this happen to me on 3GS, 4 and 4s.   Usually the solution is one of the following:
    1-  If  your volume indicator says  headphones even though they are not plugged in, then:
    Stick your headphones into the headphone jack and then remove quickly.
    2. If that does not work Power your phone off. Then when restarting Reset the phone by pressing the home button and the power button at the same time until the apple logo appears.
    3. Make sure you have not chosen to send audio to an Airplay device such as Apple Tv.
    Hope one of these works for you

Maybe you are looking for

  • Frame-by-frame in graphic symbol vs video?

    Hi there, I have several Flash 8 files with a fair amount of lip syncing over approx 300-500 frames. They are all done as graphic symbols on the main timeline. Will it reduce the file size if I import the entire file as a Quicktime video or would put

  • How can I save and access documents without wifi?

    I have an ipad3 that is wireless only. I have to have access to contracts and documents sometimes in places without wifi. Is there a way to do this? I have dropbox and readdle and a bunch of other great storing apps, but they need wifi to access the

  • Invoiceing party at header level in MIRO

    Hi, We have different invoicing parties defined for the same vendor at the plant level in Alternative Data. But, the invoicing party in MIRO is at the header level. When we do MIRO by vendor, it does pull in all the POs but those POs have different I

  • How do you change the Screen Resolution?

    I can not figure out how to change the resolution on my screen. Everything is much smaller than what i would like and would like to enlarge everything. There is a simple way of doing this with a PC but i have not been able to figure it out on a macbo

  • Trying to transfer iphone 4 to 5

    Trying to transfer iphone 4 to 5 using itunes but its telling me I am dont have the latest itunes version. I have run the update and my macbook is telling me I am up to date. Any suggestions on how to fix?? PLease dont tell me I need a new mac!!