flash help...? vert image scroller
- Started
- Last post
- 7 Responses
- Quae
hey i need a vertical image scroller code that detects the area of the mouse and will scroll a set of images that are buttons and have them scroll up and down ...can anyone help or give a source file for me to pick at thank everybody....
- Quae0
wrong link? james send me to a shooping mall
- mcLeod0
check out http://www.flashkit.com
they have a lot of horizontal scrolling tutorials and .fla files, so if you find one you can just change the _x in the scripts to _y
- lucyGeneric0
Ag.
use this then
var y:Number;
var clip:MovieClip;mouseListener = {}; mouseListener.mouseParent = this;
mouseListener.onMouseMove = function(){ set_y(this.mouseParent._ymouse); update_image() };
Mouse.addListener(mouseListener...this.set_y = function(to_set:Number){ y = to_set };
this.update_image = function(){ clip._y = y };clip = this.attachMovie("myMovie","myMo...
sub myMovie for a MC with buttons in it.
Use a ratio to set _y offset by MC size to spread it out
Selecta
- iDp0
lol James
- dahl0
ha ha James.
I think I'll start referring people to that site, when needed.