Search  

BLURSCROLLER

HomeBrowse CategoriesFlashAnimationsMouse ControlledBlurScroller

Typo in Documentation

Under usage it states the function is SmoothScroller, but it should be BlurScroller. I apologize for this typo.

BlurScroller v1.0

BlurScroller is the sequel to SmoothScroller with a few tweaks and a new feature: Blur!

With this scrolling class, you can scroll items with easing either by up and down buttons, a slider, or just the mouse position.

Since it scrolls a display object, that object can contain anything (text, images, movieclips, video), and it will scroll. You can even scroll content along the x axis OR the y axis.

You can turn blur on or off on the fly, and control the amount of blur to apply.

My example exports at 80kb, but yours will vary depending on the content you’re scrolling.

Written in AS3 , AS2 version is in the works and will be available upon request.

Posted 5 months ago

wow this looks amazing is it as3?

Posted 5 months ago

nice one!

Posted 5 months ago

really nice but, why not on press scroll with mouse position?

Posted 5 months ago

sonicsight: yes it’s AS3

sniper91: I’m not sure what you mean.

Posted 5 months ago

I think he’s talking about mouse scroll

Posted 5 months ago

Nice update.

Ive purchased Smoothscroller, any advice on how to make the mask size change with any onresize listener? I’ve been playing with the code but its tough to get working properly.

Cheers

Posted 5 months ago

weighter: that’s a good question. I did that exact thing in my MediaGallery

All you have to do is stop the slide, give it a new max value, and then apply the slide again. Here’s my actual code for this from my MediaGallery, this is for the album selection:

albumScroller.endSlide(); albumScroller.max = 0 – albumItems.width + this.stage.stageWidth – 15; if (albumScroller.max < 0) albumScroller.slide(“mouse”, 100, this.stage.stageWidth – 100, albumItems);

Posted 5 months ago

Sorry, the code pasted weird, here it is again:


albumScroller.endSlide();

albumScroller.max = 0 - albumItems.width + this.stage.stageWidth - 15;

if (albumScroller.max < 0){
    albumScroller.slide("mouse", 100, this.stage.stageWidth - 100, albumItems);
}

Posted 5 months ago

I’ll give it a shot thanks for the quick response and willingness to help. You’re an A+ seller, and I will never hesitate to recommend or purchase from you in the future. Keep up the excellent work.

Cheers weighter

Posted 5 months ago

I appreciate the kind words. I want everyone to end up with a quality product, so I’m more than willing to help out any way I can.

Posted 5 months ago

i like the design ;)

Posted 5 months ago

bookmarked! Will definitely buy it in the near future.

Posted 5 months ago

awesome idea!

Posted 5 months ago

Great looking script. I would really like to get ahold of the actionscript 2.0 version. Is this available yet?

Posted 4 months ago

Not yet, maybe in the coming week.

Posted 4 months ago

i´v actually purchased that class. how can i get rid of the blur effect as stated in the documentation? couldn´t solve that problem till now.

Posted 3 months ago

slahann: sorry for the delayed response. You can do this:


var scroller:BlurScroller = new BlurScroller(target, properties, false);

Or to change it on the fly, you can do this after a scroller has already been created:


scroller.blur = false;

I just tested this and it is working. If you have any other concerns, feel free to email me. I can respond faster that way. Thanks for the purchase.

Posted 3 months ago

Noice!

Posted 3 months ago

Wow. If only it was AS2 . Oh well, next site!

Posted about 1 month ago

Hi Darkhouse,

I’ve made a sliding gallery which uses a different mouse events, and i was wondering if there is a way to use my MouseEvent.CLICK handler to move my gallery to a specific x location. with the blurScroller.

DEMO : ( current project ) http://www.dennisveldman.nl/DEMO/SITE/galleryNew.html

The method I’m using now makes use of tween lite, but i would love to use the blurScroller to achieve this. instead of tween script.

Hope to hear from you soon.

gr

ludd

Posted 9 days ago