PDA

View Full Version : Mouse-moving-picture effect?


jeanmarc
06-25-2006, 11:51 PM
I would like to create the effect that this website has on their firstpage: http://www.oilily-world.com/

i.e. when I move the mouse over the picture it scrolls either to the right or left with the mouse movement... i dont need all the fancy blurstuff, just the basic background picture effect...

any ideas?

mooska
06-26-2006, 11:49 AM
The exact effect is more complicated, but the basic thing is
this.onEnterFrame =function(){
clip_name._x+=(_root._xmouse - Stage.width/2)/20;
}

It moves the movieClip taking the mouse distance from middle of the Stage

Sorry my english

jeanmarc
06-26-2006, 06:48 PM
I tried your code but didnt get it to work :confused:

Could you please do an example in flash and post it here or something? I would really appreciate that...

mooska
06-27-2006, 12:09 PM
Here it is

jeanmarc
06-30-2006, 12:35 AM
Thank you so much! Greatly appreciated!