Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Unreal Mouse Effect



hey guys, i want to achieve this neat feature that this person has on their website...

http://www.grootlicht.com
(the splash page)

The mouse pointer rolls behind the logo and the background.

they might have used a picture of a regular cursor but how would it know wheter your using Windows or Mac? Or the screen size?

any help would be appreciated.



FlashKit > Flash Help > Flash General Help
Posted on: 09-29-2005, 09:44 PM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

The Effect Where A Movieclip Is Effect By The Position Of Your Mouse (ill Explain)
Does anyone know how to make the effect found on this site :
http://www.pleymo.net/

where you look around a room by moving your mouse. I think it someone how controls the x and y coordinates with the position of your mouse. If anyone had a source code or fla I would be VERY grateful. Thanks

Mike

The Effect Where A Movieclip Is Effect By The Position Of Your Mouse (ill Explain)
Does anyone know how to make the effect found on this site :
http://www.pleymo.net/

where you look around a room by moving your mouse. I think it someone how controls the x and y coordinates with the position of your mouse. If anyone had a source code or fla I would be VERY grateful. Thanks

Mike

Mouse Trailer Effect For A Symbol Vs. A Mouse
i am trying to create a trail behind an object - like a mouse trailer. i have found many mouse trailer scripts but do not know what to adjust so that it will follow an object/symbol versus the mouse movement....thanks for you help....here is the script that i was gonna use....

//initialization
d=1;
speed=10;
ssize=10;
dif=60;

//create sample
_root.createEmptyMovieClip("sample", 16000);
with(_root.sample){
lineStyle(5, 0x0, 70);
moveTo(-10, 0);
lineTo(10, 0);
moveTo(0, -10);
lineTo(0, 10);
}

//hide sample
_root.sample._visible=0;

//duplicating clips
_root.onMouseMove=function(){
duplicateMovieClip("sample", "start"+d, d);
_root["start"+d]._x=_root._xmouse+random(dif)-dif/2;
_root["start"+d]._y=_root._ymouse+random(dif)-dif/2;
_root["start"+d]._width=ssize;
_root["start"+d]._height=ssize;
mColor=new Color(_root["start"+d]);
mColor.setTransform({rb:random(256), gb:random(256), bb:random(256)});
_root["start"+d]._visible=1;
_root["start"+d].onEnterFrame=function(){
this._alpha-=speed;
if(this._alpha<=0) removeMovieClip(this);
}
d++;
}

Blur Effect? And Mouse Trail Effect?
does anyone know how to do similar effect as on this website: http://ladyinthewater.warnerbros.com/ ??? if u go to cast and crew part of the website and move cursor over the picture it looks like someone was touching the screen. any ideas plz?

How Do You Do This Mouse Effect
Hey guys,
I was just wondering if anyone knew how to duplicate the interactive mouse effect that is used at the following site. http://thehorusproject.com/site.html Any help would be greatly appreciated. Thanks guys
Don

MTV.com Mouse Over Effect?
If you remember back to when MTV.com had that logo in the top left of there site with the mouse over effect? (masked image turnd over squares) does anyone know where i can either learn how to do that or get an fla file for that?

Mouse Effect Like This
how do you produce a mouse effect like this
http://www.h69.co.uk/
I know it use the char text effect thing
but how does it work are there any tutorials
out there that could help

thanxs

mac

Mouse Effect ?
Question:

I have a flash file in which i wanna put a effect like "Follow Mouse" or something.

I have text lined up in one Line which represents a MENUE. If I point or move the mouse pointer to or abouve the Text Area (Menue area) then a effect will follow the mouse curser BUT the effect is guided! means it's guiede by a horiz. line and just moves from left to rigth if the mouse touch the Text Area (Menue area).

Can anyboddy give me some advice?

Thanks

Mouse Over Effect
how should i go about makeing a effect like the 1 at the top of the etnies website (http://www.etnies.com)

Mouse Over Effect
OK, what I want to happen is when you run your mouse over a letter in an 8 letter word I want each letter to play a movie about 40 frames long. But I want it to finish the 40 frame movie of that letter even if the mouse isnt hovering anymore. That way if you run your cursor over the whole word it plays a ripple effect over the entire word - with each letter playing its own 40 frame movie. How would I go about doing this without messing everything up?

Mouse Effect
I am trying to create a movieclip with some leaves over text, and when the user moves their mouse over the leaves they scatter away from the mouse revealing the text. Does anyone know of tutorials etc that would show me how to achieve this effect using actionscript.

Thanks.

On Mouse Over Effect
How could I make the button's property as OnMouseOver and becomes the top layer of the whole .fla file, and then OnMouseAway changes it back?

Help Me With This Mouse Effect
any one know how to do the mouse effect they have on http://www.adoptdesign.com/

If you do, please let me know.

Mouse Over Effect
HI Folks.

how are you, I want to give a mouse over effect to the text in Flash, like when we go through the text the text highlights, please help me out of this. Like i made a intro and at the end i want to put 2 text one arabic and one in english and both the text i want to link it to the webpage as well as want to give mouse over effect. Please give me the solution.

Thanks Feroze

On Mouse Over Effect
hey i am developing a map.in that map 5 layers are there.if i move the mouse
on the these layers drop down should come,like onmouse over on layer1 then
one drop down should come,on drop down on another layer same drop down
with different text should display.will anybody help me?

[CS3] Mouse Over Effect Help.
Hey guys using cs3 AS2

I have a mouse effect that randomly generates instences of movie clips from my liberary. BUt I want to be able to have some control over the number of MC's being produced and Im having a real rought time trying to get it.

Here is what im working with, Im not the original owner it been handed down and hacked around.


Code:
mouseDownOn = true;

// "i" represents the instance number of each attached movie clip
var i = 0;

//This creates an empty movie clip which the other movie clips will be attached to
this.createEmptyMovieClip("canvas",100);

//This is the listener that listens for mouse movements
var myListener = new Object();
Mouse.addListener(myListener);

//This is the function that is called when the mouse is moved
myListener.onMouseMove = function() {
if (mouseDownOn==true) {
//a new variable "t" is used to refer to the movie clip which is attached on mouseMove. We're attaching a random flower movie clip. Each clip has different instance name which will be flower1, flower2 etc, and is placed one level higher than the previous movieclip.

randomNum = Math.ceil(Math.random(0)*4);

var t = canvas.attachMovie("flower_img"+randomNum , "flower"+i, canvas.getNextHighestDepth());

//"i" is incremented
i++ ;

//This moves the movie clip between 80 and -80 pixels from the x and y coordinates of the mouse
t._x = _xmouse+(Math.random()*40)-40;
t._y = _ymouse+(Math.random()*40)-40;

//the movie clip size is a random size between 100 and 170% of it's original size
t._xscale = t._yscale= (Math.random()*70)+20;
}
};

//mouseDown function
//myListener.onMouseDown = function() {
//mouseDownOn = true;
//};

//myListener.onMouseUp = function() {
//mouseDownOn = false;
//};
//
Not sure where to start. Any help would be great. Thanks for any help.

Mouse Effect - Help
I'm looking for some help to a problem.

I'm a bit of a newbie and I'm building a web site in Flash. Nothing fancy but I would like it to be classy. So I was surfing various sites for ideas. I came across this one site called:

http://www.levitated.net/

On the site I found a cool mouse trailer effect

http://www.levitated.net/daily/levPixieParticles.html

What I want to do is adapt the effect so when I click on a button the effect runs yet at the same time the cursor affect the button in it's usual fashion.

Can some one help me?

Thanks

Sloe3D

Mouse Over Effect....
Hello all,

I'm a newbie here and have an issue for a Flash site I'm creating. It's only basic flash so I'm starting simple as I'm not experienced in Action Script at all.

Anyway, the one thing the boss wants is to get an effect for when the mouse hovers over a 'hit area' a small gradient rectangle will appear. And when the mouse moves off, the rectangle will then fade away again.

I know ths isn't a well detailed description for which I'm sorry; I can't think how to describe it apart from...

...http://www.boffi.com/ (a designer kitchen site)

(go through to the flash site and click on one of the many 'collections' on the links panel. As the kitchen photoreel begins, you can roll the mouse over the links on the left to reveal the black gradient that comes out from behind the text - this is what I'm after).

I'm guessing you have to convert the black gradient to a button and then create a hit area? I cannot fathom how to do this so any help is muchly appreciated!

The other thing I will soon need to know is how to make a list of text links move or slide (up & down) once clicked (just like the links on http://www.boffi.com/) so if anyone had any good tutorials for that, it would be great. I've been looking for some while!

Many thanks!

Ian.

Mouse Over Effect
I am trying to make mouse over cursor effect like the one at the site listed below:

http://www.pierinteractive.com/

The effect is that when you mouse over a button, or movie clip a mouse trailer appears that displays information, and when you mouse off it disapears. i am sure that this is done with a clip event but I would like somebody to point me to a tutorial or .fla example. I appreciate your help greatly.

Mouse Effect
Hi all, Im using flash 8

here is a link to what im trying to do
http://www.maireles.com/home.htm

I cant seem to get the script down thow

Any help would be great.

Mouse Effect
I am trying to create a movieclip with some leaves over text, and when the user moves their mouse over the leaves they scatter away from the mouse revealing the text. Does anyone know of tutorials etc that would show me how to achieve this effect using actionscript.

Thanks.

Mouse Effect
Hi,

I'm trying to simulate an effect, but it's terrible

I'd like to make somthing like the effect around mouse in this.preloader site

http://www.lifemotion.com.br/aster

Can you help me??

I'm trying to do this way

First of all I created a Movieclip with an ID "ball" and then I did an EnterFrame event to attach this movieclip, and each movieclip attached i created an new enterFrame to make them move and grow, but my problem is exactaly this movement...

how could I simulate this that movement?

thanx

Chan

Mouse Following Effect ?
Greetings,

I know this is going to sound stupid...but how did they achieve this mouse-following effect in http://fortminor.com/site.php

Mouse Effect
Can anyone help me find a tut or guide to learn this effect?

how the turtle moves..

http://www.motusgear.com/site/index.htm

thanks in advance.

Mouse On/off Effect
i am after replicating this effect:

http://www.manchester235.com/flash.html

the circles around the 3d box move when moused over and return on mouse off, but the direction they move in is dependant upon the direction the mouse hits it.

as a relatively basic action scripter, can anyone point me to an example .fla of this method or help me in any other way?

thanks!

Mouse Over Effect
how do you create a mouseover effect withought the symbol being a button?
avalon

Mouse Effect
I am trying to create a movieclip with some leaves over text, and when the user moves their mouse over the leaves they scatter away from the mouse revealing the text. Does anyone know of tutorials etc that would show me how to achieve this effect using actionscript.

Thanks.

Mouse Effect
Hi,

I'm trying to simulate an effect, but it's terrible

I'd like to make somthing like the effect around mouse in this.preloader site

http://www.lifemotion.com.br/aster

Can you help me??

I'm trying to do this way

First of all I created a Movieclip with an ID "ball" and then I did an EnterFrame event to attach this movieclip, and each movieclip attached i created an new enterFrame to make them move and grow, but my problem is exactaly this movement...

how could I simulate this that movement?

thanx

Chan

On Mouse Over Effect
How could I make the button's property as OnMouseOver and becomes the top layer of the whole .fla file, and then OnMouseAway changes it back?

Help With Mouse Effect
Hello,

maybe you can help me. I think there is already a downable .fla somwhere maybe even on ultrashock.
I found this on the web

http://www.herbert-scale.com/

and would like to know how they did it. Does anyone of you know where i can download a simillar effect to lear nand understand?

Thank you very much,
Bests Vico

Mouse Effect
Hi I was just trying to figure out how to do this mouse effect at this web site
http://www.angelsandairwaves.com/ and enter site from the middle of the page.
now go over the navigation headers and you can see what I mean (the exploding stars)
any clues let me Know
Thanks stew

Mouse Over Effect
ANYONE!!! I need help urgently!!!

I dont know flash very well. Ive created a rolling slideshow that rolls across the screen from left to right. However I need the slides to stop once you move the mouse over it. And then to start again or continue once the mouse moves off of it?


Can you PLEASE help

Mouse Over Effect
im trying to add a sparkling stars when mouse rollover the thumnails from another file to the gallery but im having problem geting it to work

what are the right syntax for this


Code:

function p_rollover(me:MouseEvent)
{
var sp:Sprite = me.target as Sprite;
Tweener.addTween( sp, {alpha: 0.5, time: 0.4, transition:"easeOutExpo"} );
}
function p_rollout(me:MouseEvent)
{
var sp:Sprite = me.target as Sprite;
Tweener.addTween( sp, {alpha: 1, time: 0.4, transition:"easeInExpo"} );
}

Mouse Over Effect
Hi,
I want to create a pie chart with a mouse over effect. This is how it will look like.



I'll have a chart, when i mouse over section a then the b n c will fade out and will have some animation at other place. So will be same for b n c when mouse over it.
I will create a button and then the animation will be at the over part. I think this is not the right way to create it. So any advise for it? Can i know how to highlight the mouse over area? That only certain is needed to mouse over effect.

Really Badass Mouse Effect: HELP ME
Okay, I've seen this a lot on other web pages, and I though that I'd implement this into my own page, but I'm a bit stuck with the actionscripting.

I want to be able to display the co-ordinates of the mouse in a little box on the bottom left of my movie.

I've created a Dynamic Text Field, and the variable is "gps"

I think that this should be simple to do, but I just can't seem to get it right, thanks in advance.

Rayne_Fall@hotmail.com <-MSN
25594823 <- ICQ

Cool Mouse Effect
Hi,

Anyone know how he create the mouse effect, is a very nice effect. Can anyone let me know?

The link
http://homex.coolconnect.com/member4.../ver2/ver2.htm

Amiwai

Mouse Over Button Effect..
Can somebody explain to me how to make a picture change when a mouse goes over a button? I am kind of new at this and have not really worked with buttons much. Do I need new frames or can a use a MovieClip or what? Please help as much as possible.. Thanks.

Mouse Out Button Effect
I know how to make a mouse over effect but how do you make it do the mouse out effect.

Wave Effect With Mouse
Where can i find examples of wave effect. Like when the mouse rolls over the movieclip, it will scale up and subsequent movieclips will follow as the scale lowers down at the end.

Mouse Trail Effect
I want an effect that works similar to a mouse trail only I don't want to attach it to a mouse. I want to attach it to any mc/s.

In fact I have 10 black dots which animate around the stage in varous directions - I want them to have trails though as they move.

Also, just to be diffucult! Is it possible for the trails to be multicolored / psycadellic??

Thanks in advance!

How To Make An Effect While Mouse Over
I created an image as a button, and i want it to blur out when i mouse over it. however in the "over" state column theres only 1 frame where I can edit it , and therefore i cant add a motion tween. how would i accomplish this? thanks.

Zoom Effect With Mouse Over
i am going to make several lines of text appear where each letter will come in one by one, so they are all going to be different objects (movie clips or graphics). when they're done i want to have the text to have an mouse over effect...
i want it to zoom in on mouseover, but not all at the same time and same size. so that the letter right under the mouse is zoomed in most and that other ones nearby are zoomed in little bit less and the ones further away even lesser. and i want the zoom to be gliding, so that you see the zoom in happening.... and the other way around so that when you move away from the letters they will be zooming out to original size.

pff it's hard to explain escpecially in english...
i hope that someone can help me out with this
i know that is been done before but don't know how to do it...

thanx in advance

waarzegger

Mouse Over Glint Effect
does anyone know how make it so that when you put your mouse over a text it glints, i can make my text glint fine but not on mouse over.
And also, i want the link to open in the same window. go to http://www.herbsrestaurant.com/ and you will see that when you click on a link it opens in the lower part, the top doesn't change at all (kinda like frames in html), that is EXACTLY what i want. I am using flash mx 2004 trial version (please hurry, my trials about to run out, lol). Please provide me with the correct actionscrits if you noe them.

very truly yours,
baljinder

Mouse Effect On Picture
Can anyone tell me how they created the motion on vernita picture located at this link http://www.kill-bill.com/vol1/flash/index.html
Just click on the Vernita button, and then roll your mouse over the picture.

Trigger Mouse Effect
Hi there,

Sorry for my poor and limited ActionScript knowledge

I downloaded a file which has the following functions:

1. Blur Image at first.
2. After few seconds, clear image appears in a circle. It follows the mouse without clicking it.
3. After few seconds, it becomes blur again.

Can anybody tell me how should I do:
If I would like to let the viewers click on mouse themselves in order to see the clear image. Yet, remain the fading effect!

Thanks in advanced

Mouse/cursor Effect
Hi guys, i'm trying to do something like this : http://gprime.net/flash.php/cursorthief but the problem is i dont know anything about scripting.. i tried downloading a few movies regarding cursor tricks and all but i think i need more help. Anyone care to guide me along the way? Thanks for your time...

Button On A Mouse Over Effect
Hi, can anyone help me. Is it possible to put a button on a mouse over effect.
I have text on the mouse over effect, and the client want to add a "click here for ...." If anyone can help I will be much appreciated.

Effect While Mouse Is Held Down
I am making a really simple game for practice, one similar to the helicopter game.

I want to be able to caues a movie clip's y position to move continuousely when the mouse is held down.

i have action script in the root frame as follows:


Code:
if(char_mc.hitTest(bottom_mc) == false){

char_mc.onMouseDown = function() {

trace(char_mc.hitTest(bottom_mc));

char_mc._y = char_mc._y + 25;

trace(char_mc._y);
}

}

else {
trace(char_mc.hitTest(bottom_mc));
gotoAndStop(10);
}


you can ignore the gotoandstop part, and all of the traces.

with this script, char_mc._y increases by 25 everytime you click the screen, but i want it to constantly increase if the mouse is held down.

how should i go about doing this?

Mouse And Background Effect
Hi guys,

Just a quick post with HOPEFULLY a quick and helpful answer. See the background effect on THIS game which moves the background when the mouse is moved, I would love to know how to make something similar to that. Can you either, Direct me to a tutorial that will teach me how to do this OR do you know the script to do this?

All help is appriciated!

Thankyou!

Copyright © 2005-08 www.BigResource.com, All rights reserved