PDA

View Full Version : How do you make this effect?


westy2005
04-06-2006, 09:27 PM
How do you make a site with the screen moving as you move the mouse and also the zooming in when you click a link, I've seen a couple of sites like it here's an example http://www.nittochampion.com/ed_main.html .I love the effect is there a tutorial, file of how to do this or is there a name for this effect so I can search for some help?? Thank you any help is appeciated.

benj
04-23-2006, 11:27 PM
yeah i was wondering this as well, is there a name for this type of design??? any help would be aprecieted

Flash Gordon
04-24-2006, 12:20 AM
just move an image based upon the mouse position. Because it looks so very eligant it looks harder than it is. I could wip up a cheap and dirty example in 20 min or less....It isn't very hard. Once again, the beautfiul graphic and slick masked video of the person walking, combined with what appears to be flash 8 motion blur make it look harder.

Good luck.

gbellitt
05-19-2006, 04:09 PM
I am trying to work with a document created in Flash MX 2004 that I have converted so I can edit it with Flash 8. There are certain words in this document that, when the cursor rolls over them, a pop-up box with the definition appears,(like the words that appear when you roll over components in the above referenced movie.) The box is supposed to go away on rollout. The original code for this action which was placed in the actions of the MC (the word being defined) looks like this:

on(rollOver){
_root.MakePopUp(this._x+this._width/1.75,this._y-this._height,"Polyuria/Polydipsia\n(excessive urination)");
}
on(rollOut){
_root.popUp_txt.removeTextField();
}

I tried to make this action work on another word which I placed an invisible mc over, but the box will not go away onRollout. Here is the code I have for the new word I am trying to define:

on(rollOver){
_root.MakePopUp(this._x+this._width/2.5,this._y+this._height,"Gross/Microscopic\nblood \tin the urine");
}
on(rollOut){
_root.popUp_txt.removeTextField();
}

I have tried changing the x and y coordinates so that the box appears outside of the hit area, but it still will not go away. This seems like a simple problem, but I cannot figure it out. any help would be appreciated.