Creative Flash Scroller Forum


box Creative Flash Scroller
With Creative Flash Scroller you can scroll any kind of Flash Content: static text, dynamic text, pictures, animations, movies. It comes with multiple scroll behaviors: touch scroll, mouse gesture scroll, scrollbar scroll and even supports mouse wheel behavior. You can add smooth scrolling or motion blur effects and customize it to suit your design, from an easy to use interface.

Find out more about Creative Flash Scroller

Thread: Auto Scroll

title left
User Details
message
title right
Nick Riccobono

post date:
2008-07-15 18:59:43
Was wondering if it would be possible to make a movie clip auto scroll after a set amount time of not being active, then when the mouse is over the scroll pane, that it stops and now allows the mouse to scroll it.

Any examples, or script you can supply to showcase this, or is it not possible?

Thanks,

Nick
Jon Stanciu [Extend Studio]

post date:
2008-07-17 09:13:10
Hi Nick,

The following code applies the behavior you request:

setTimeout(startScroll, 2000);
function startScroll() : Void {
xtd_scroller.scrollRight(true,100);
}

Firstly, let me describe the stage: it contains only the movie clip I want to scroll and an instance of Classic Scroller over it; the Classic Scroller instance on the stage is called "xtd_scroller". The setTimeout method allows you to set a time (2000 miliseconds) until the automatic scrolling starts and it's a Flash method. The automatic scrolling will be achieved by creating the startScroll method which makes use of the Creative Flash Scroller scrollRight method (or any other scrolling method available). While the automatic scrolling takes place, it can be bypassed by simply touch scrolling the movie clip normally; after the manual scrolling, the movie clip will remain still where the user lets it.

More information about the properties, methods and events available in Creative Flash Scroller can be found in the complete product documentation, in their dedicated sections - the ActionScript dictionaries.

<a href="http://www.extendstudio.com/documentation/creative-flash-scroller/" target="_blank">Click here for the complete product documentation</a>

I hope my answer solves your problem and you will obtain the best results with our product.

Kind regards,
Jon Stanciu