Search  

AS3 PICTURES SCROLLER

HomeBrowse CategoriesFlashApplications and UtilitiesImage ViewersAS3 Pictures Scroller

1. Presents some photos in a nice scrolling mode.

2. In the XML file the user can define the color of the background, distance between the pictures, speed and the list of picture items. The pictures can be organized any way by writing the folder path in the attribute “folder”.

3. A picture item contains 2 attributes: “fileName” and “link”. If the link is empty

when an item is clicked it won’t navigate to any URL .

4. The pictures can be diffrent sizes. They will be proportionally resized to fit in the visible height:

stageHeight – 2 * distanceBetween

Posted 4 months ago

Very nice! I will purchase soon. Keep up the good work.

JH Fleming

Posted 4 months ago

not bad

Posted 4 months ago

How tough is it to make it pause on mouseover?

Posted 3 months ago

Hei tmcnabb104,
I move the pictures using ENTERFRAME event. To make the pictures pause on mouse over you have to go in the “PicturesScroller.as” class and at line 246 add the mouse over and out events like this:

   

this.addEventListener(MouseEvent.MOUSE_OVER, overHandler);
    this.addEventListener(MouseEvent.MOUSE_OUT, outHandler);

Than in “overHandler” function kill the EnterFrame event like this:

    this.removeEventListener(Event.ENTER_FRAME, movementE);

and in “outHandler” function readd the onEnterFrame event like this:

    this.addEventListener(Event.ENTER_FRAME, movementE);

I will make an update in this sense.

Thanks for suggestion.

Posted 3 months ago