Ir para conteúdo

Arquivado

Este tópico foi arquivado e está fechado para novas respostas.

:::paulotaneda:::

:::photoscroller vertical:::

Recommended Posts

Olá galera + uma vez!

Tô tentando fazer aki um photoscroller, sendo que na vertical. Achei um no flashkit, só que tah na horizontal... dêem uma olhada aki!... portanto, como naum manjo muito de AS, naum tô conseguindo fazer na vertical... e aki está o .fla do meu arquivo "galeria"

 

Aki tah o

// Setting the xmouse to 0 in the centre of the movie:ymouse = _ymouse - (widthmovie / 2);// Setting the speed:speed = (ymouse) / scrollspeed;// If the speed is negative, the speed will be made positive here:if (speed < 0) {	speed = -(speed);}//new function courtesy of Rob//basically says that if the mouse isn't betwen these two y points it won't work//**stupid people tip**//make sure that you figure out the top and bottom y points of your "photo" and insert them accordingly!mouseposition = getProperty("/myself", _x);if (_xmouse < 7.3) {	speed=0;}if (_xmouse > 20) {	speed=0;}// If the mouse moves to left, the photo will scroll to the right:// (That makes sense.... Doesn't it!!;-)if (ymouse < 0) {	yphoto = yphoto + speed;}// If the mouse moves to the right, the photo will scroll to the left:if (ymouse > 0) {	yphoto = yphoto - speed;}// Checking for the left end of the image:if (yphoto > 0) {	yphoto = 0;}// Checking for the right end of the image:if (yphoto < -(widthphoto - widthmovie)) {	yphoto = -(widthphoto - widthmovie);}// Placing the moviclip (photo) on it's new postition:setProperty("photo", _y, yphoto);

Desde jah agradeço galera...valew!

Compartilhar este post


Link para o post
Compartilhar em outros sites

×

Informação importante

Ao usar o fórum, você concorda com nossos Termos e condições.