Where do i change the scroll speed ?
Posted 3 months ago
NeverendingXmlScroll is a versatile continuos orizzontal auto scroll. It can be used as a menu or as an imageviewer.
Features:
-Endless horizontal autoscroll -Xml driven, you can add infinite items and images -dates, titles, texts and links xml driven -Easy to adapt to your projects -Easy graphic customization -Instructions files included
Enjoy
Posted 5 months ago
hi kleck, you can control the scroll speed simply changing a value in a string of code. Alter it to vertical can be done, but it’s not exactly simple, anyway if you need assistance write me a mail.
Posted 4 months ago
Hi Henlianap, Changing the scroll speed is quite easy: Increase the value you find in the actionscript of the second frame:
difference = (position-center)/20;
if you set the numeric value for example to 30 it will go slower. I also suggest you to encrease the framerate of the file to 25 to make it smoother.
Posted 3 months ago
Is there any chance that this file could use valid XML so that the file can be automatically generated?
i.e. Instead of Posted about 1 month ago
Hi there I purchased, one question I have is is it possible that the scroll stops when your cursor is off the movie?
Posted 8 days ago
This would be perfect for me if the scroll stops when the cursor is off the movie. Is this possible?
Posted 7 days ago
Hi, sorry about my lack of assistance… too busy!. to nilocrevlis and T4NM4N : Yes, it is possible to stop the scroll when the cursor is out there many ways to do it, I think the easist is: create an invisible button big as you scroll area and call it “btn1”, then on the second frame actionscript add:
stop(); btn1.swapDepths(_root.getNextHighestDepth()); btn1.onRollOut = function(){ gotoAndStop(3); }
after you create a third empty actionscript frame and add:
stop(); delete this.onEnterFrame; btn1.onRollOver = function(){ gotoAndStop(2); }
In this way it should work.
Posted 4 days ago
Is it possible to get this to show only the image and nothing else, so I have a scrolling image menu ?
Posted 4 days ago