i want to use pics as my navigation and want them to enlarge and move to the middle when mouse-overed, and returning to the original position after mouse-out. It is sorta like the handphones in the web page.
i tried using the simple creating animated rollovers tutorial. when i mouse-over, it was alright, but when i mouse-out, it just went back to its original position. i want it to have a smooth motion back, like what showed in the website.
i have used this script
onClipEvent (enterFrame) {
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.nextFrame();
} else {
this.prevFrame();
}
}
and the effect was horrifying.
please enlighten me…
I don’t know about anyone else but not even my broadband connection will load your URL. it’s extremely slow and after about 10 minutes its not even half way loaded.
btw, I know what you mean by views vs. reply’s I have the same problem.
I don’t know much but maybe if you tried to make a lable key frame and then change
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
this.nextFrame();
to
if (this.hitTest(_root._xmouse, _root._ymouse, true)) {
gotoAndStop ("whatever ");
The link worked fine for me… dont know why others were having problems if thats the case… if you want to creat this effect you can do it several ways… but this is probably the best cuz it uses easing and also moves the other images to the side…
Its called a Tsunami effect… you can find a couple other threads about it on the board if you search… theres a link to a tutorial on one of them.