Skip navigation
Currently Being Moderated

In a current Flash site, I can't find the code that brings in photos...

Sep 15, 2012 10:30 AM

I feel like an idiot, so I'm coming to you all for help...

 

http://dagmaredwards.com/

 

In the site above, there is a Flash photo Gallery that loads on the page. I have the .fla file for it, and in the Actions panel, there is only one set of code and it's the following:

--------------

//centro l'immagine

_level10.onEnterFrame = function() {

    if (currentImage == undefined)

        newWinBtn._visible = false;

    else

        newWinBtn._visible = true;

    if (_level10.box.getBytesLoaded()>10 && _level10.box.getBytesLoaded()>=_level10.box.getBytesTotal()) {

        //_level10.box._x = Stage.width/2-(_level10.box._width/2);

        //_level10.box._y = Stage.height/2-(_level10.box._height/2);

    }

};

Stage.showMenu = false;

quality = "BEST";

var currentImage:String;

newWinBtn.onRelease = function(){

//    var imageName = currentImage.substr(currentImage.lastIndexOf("/"));

//    var newPath = currentImage.substr(0, currentImage.lastIndexOf("/")) + "/large_images" + imageName;

    getURL(currentImage,"_blank");

}

------------------------------

 

What I'm trying to do is change the images that load (this site is for my friend, she wants to change her pictures), but I'm not sure how to do that... I can't seem to figure out how the Gallery is getting the images - I see the currentImage:String; in the code above, but I can't figure out how this gallery selects the images that're in the folder...

 

Is there anyone that can help me? Thanks all!

 
Replies
  • kglad
    62,238 posts
    Jul 21, 2002
    Currently Being Moderated
    Sep 15, 2012 10:35 AM   in reply to RuesterProd

    there's more code than that.

     
    |
    Mark as:
  • kglad
    62,238 posts
    Jul 21, 2002
    Currently Being Moderated
    Sep 15, 2012 11:13 AM   in reply to RuesterProd

    use movie explorer to quickly find all actionscript.

     
    |
    Mark as:

More Like This

  • Retrieving data ...

Bookmarked By (0)

Answers + Points = Status

  • 10 points awarded for Correct Answers
  • 5 points awarded for Helpful Answers
  • 10,000+ points
  • 1,001-10,000 points
  • 501-1,000 points
  • 5-500 points