See Related Forum Messages: Follow the Links Below to View Complete Thread
I Need To Change The Opacity Of A Image Wuth A Effect Of FADE, On Mouse Over A Button
I'm a complete newbie and doesn't write so well in english (why do i live?
Well, I have a problem:
When the mouse is over a button (buttonbatel)I need to change the opacity of a movieclip (fotobatel) to 70%, which already is at 40% and when the mouse is out of the button, it change back the picture to 40% of opacity. This with a FADE effect in the two positions of mouse (over & out button)
Can u help me with the action scripts for this?
Sorry about my english.
Thanks since now.
Opacity Change
I want to do a background change in my website by means of opacity changing. Is it possible to change the opacity of a layer? Or can anyone tell me the way to change the opacity of layers in a frame-by-frame animation?
Thanks!
Opacity Change
Does anyone know how to use actionscript to make a frame-by-frame opacity change?
Opacity Change
what i would like to do is... press a button and make an object change from one color to another by going through opacity change... for example... a red block fades away and fades into a blue
Opacity Change
what i would like to do is... press a button and make an object change from one color to another by going through opacity change... for example... a red block fades away and fades into a blue
Can I Can Change The Opacity In Swish
I am having a ball with swish now that I know a little more. I would like to know is there some way that I could change the opacity of my shapes in swish??? if so how? Thank you.
Opacity Change With Actionscript?
Is there a way that you can create an opacity fade using actionscript?
Say I have a movieclip and when a button is clicked, I want it to fade to 0% opacity. Does anyone know if this is do-able?
Change Opacity Over Time
Hi guys, i'm looking for AS code which will change the opacity of a movie clip by +X over Y time and not go beyone a certain opacity level. I know that that the getTimer() function will need to be used but i'm at a loss as to how to devlop it. I couldn't find the answer on Google.
Any help is appriciated.
Thanks
Bitmap Opacity Change..
Hey,
I feel horrible for asking this... but I've been trying to remember how to change the opacity of an imported graphic in flash...
The Alpha level adjuster in the color mixer does nothing... What does??
Thanks for any help..
Change Opacity With Actionscript
Hey all.
i have a problem beacuse i dont know anyone who knows actionscript at all. i know the basics but not the good stuff.
anyway ... what i want to do is:
I have a picture that is a movieclip and when the mouse goes over the movieclip (picture) i want it to fade to 0 alpha. and when the mouse rolls out go back up to 100% alpha.
thats it... i'm sure its easy but i cant figure it out.
any help would rule.
thanks all.
Nick
Actionscript To Change Opacity
Hi,
does anyone know if it is possible to use actionscript to change the opacity of a movieclip. ie. when you click on a button a movie clip elsewhere on the screen fades.
Please let me know if this is possible.
Aly_ve
Mouse Opacity
Is it possible to adjust the opacity of the cursor? I want to change opacity based on xpos, ypos. Anyone know?
j
Button Opacity To Change When Other Movieclips Completed.
I think what I want is reasonably basic, but I can't work it right!
I have my screen and there are four seperate movies on it. When these movies are dragged onto the correct movieclip, they run themselves so that they appear to drop off stage.
I want a button to become fully opaque when all four of these movies have played through to their last frame (frame 20), but I'm totally lost...could anyone help?!
PLEASE!
Thumbnails...opacity..size Change...crazy Stuff
Lets say that I have three different portfolio’s
All the thumbnails in the thumbnail grid are an accumulation of all (most) of the thumbnails from all three different portfolio’s in a random pattern. This means that they are not like all of portfolio one are on the top row and two on the second..and so on. They are all mixed up.
The thumbnail grid will load initially with all the thumbnails at 30% opacity and as you scroll over the the different thumbnails the thumbnail that is directly under the mouse will grow maybe 10 to 20% and will highlight. At the same time the images that are in that same portfolio will also highlight. (which are in a random pattern.)
Can anyone help me figure out how to do this? i've tried so many combinatiosn of buttons, and mvoei clips but I can't get both effect to happen together. Any help would be great.
Opacity Of A Graphic Depending On Mouse Position
Hi All
I'm looking to change the opacity of a graphic depending on where the mouse is on the Y axis eg 0-100 no change to the graphic 100-500 the graphic becomes trasparent as you move the mouse down the page until you reach 500 then the graphic is invisible
Any help would be great
Regards
John
Constrain Objects To Fall Within The Width Of Canvas, Change Opacity As Object Falls.
First time using Flash and I'm trying to modify a tutorial I found on this site. Bear with me if this stuff is too much of a noob question =T.
I'm using this tutorial: http://www.flashkit.com/tutorials/Ac...-980/index.php and changing it so that there are leaves instead of snow falling. So far I have this: http://dcdomain.org/images/taro/left.swf There are a few things I would like to modify though.
1) Some of the leaves are falling outside of the right margin, is there a way for me to put in a constraint that would force the leaves to stay within the canvas parameters, either not allow leaves to fall that far to the right, or have them bounce back to the left when it hits the right margin.
2) I would like to get the leaves to fade out as it falls, so when it reaches the bottom, they should have an opacity of around 0 to 10. What are the steps I should do, or the actionscript I should add to get this effect?
Existing Code:
Frame1:
PHP Code:
shape = Random(4) + 1;
flakey.gotoAndStop(shape);
fallwidth = 300;
flakey._x = Math.random() * fallwidth;
flakey._y = 0;
fallheight = 550;
magnify = Math.random();
flakey._xscale = (magnify * 75) + 25;
flakey._yscale = (magnify * 75) + 25;
step = (magnify * magnify * 2) + 3;
drift = (Math.random() * 4) - 2;
spin = (Math.random() * 6) - 3;
flakey._y = Math.random() * fallheight;
gotoAndPlay(3);
Frame2:
PHP Code:
shape = Random(4) + 1;
flakey.gotoAndStop(shape);
fallwidth = 300;
flakey._x = Math.random() * fallwidth;
flakey._y = 0;
fallheight = 550;
magnify = Math.random();
flakey._xscale = (magnify * 75) + 25;
flakey._yscale = (magnify * 75) + 25;
step = (magnify * magnify * 2) + 3;
drift = (Math.random() * 4) - 2;
spin = (Math.random() * 6) - 3;
Frame4:
PHP Code:
flakeyfall = flakey._y;
if ((flakeyfall <= fallheight) && (flakeydrift>= -35) && (flakeydrift <= fallwidth+35)) {
flakey._y = flakey._y + step;
flakey._x = flakey._x + drift;
flakey._rotation = flakey._rotation + spin;
gotoAndPlay(3);
} else {
gotoAndPlay(2);
}
One of my friends tried helping by providing me with this:
PHP Code:
//on frame 1
this.onEnterFrame = function(){
if(leafClip._x<rightboundary && leafClip._x>leftboundary){
//this is the function to make leaves fall
leafFalling()
}
}
//leaffalling function
leafFalling = function(){
//initialize alpha for leaves
leafClip._alpha = 100
//then your random falling actions go here
}
-to make the leaves fade with actionscript:
//first make them start fading at a certain y-position
this.onEnterFrame = function(){
if(leafClip._y<400){
leafClip._alpha += (0-leafClip._alpha)*.5
}
}
I tried messing around with the code he provided, inserting it into spots within the code I thought would work... obviously I had no luck.
I was able to get the leaves to change opacity, but only once and I guess the alpha stays at 0 afterwards, I tried adding the line where they return to 100% opacity afterwards, but that didn't work.
Any help would be appreciated. Thank you!
How To Cause A Mouse Trail To Change Scale On Mouse Down Only
I'm still very new to AS, but I have a project I need to complete for work. I have some code for a mouse trail that is working well, but now I need the trail effect to scale up by about 200 pixels (or 6 to 7 times) when the mouse is clicked and held/dragged and go back to original size when the mouse is released. I can't seem to get this to work. Any help with how this should be done? Code is below.
Thank you!
var cursor:MovieClip;
var particle:MovieClip;
function initializeMovie():void {
cursor = new Cursor();
addChild(cursor);
cursor.enabled = false;
Mouse.hide();
stage.addEventListener(MouseEvent.MOUSE_MOVE, dragCursor);
}
function dragCursor(event:MouseEvent):void {
cursor.x = this.mouseX;
cursor.y = this.mouseY;
}
initializeMovie();
var alphaRate:Number = .02;
var scaleRate:Number = .01;
var particleTimer:Timer = new Timer(20);
particleTimer.addEventListener(TimerEvent.TIMER, createParticle);
function createParticle(event:TimerEvent):void {
particle = new Particle();
particle.x = this.mouseX;
particle.y = this.mouseY;
addChild(particle)
particle.addEventListener(Event.ENTER_FRAME, animateParticle);
}
function animateParticle(event:Event):void
{
if(event.target.alpha > 0)
{
event.target.y += 1;
event.target.alpha -= alphaRate;
event.target.scaleX -= scaleRate;
event.target.scaleY = event.target.scaleX;
}
else
{
removeChild(getChildByName(event.target.name));
event.target.removeEventListener(Event.ENTER_FRAME , animateParticle);
}
}
particleTimer.start();
Is It Possible To Change The Mouse Pointer On Mouse Over
Hai flash friends,
I had a small doubt, pls see this and give me ur comments.
On mouseover the button the mouse arrow pointer changing to hand pointer. I don't like to change the hand pointer when the user over the button in my flash movie. I know its a default one, but is there any way to avoid this changing. So that i can click the button in normal mouse pointer[arrow].
If anyone knows idea to ignore the mouse changing while on button area, pls give me an idea. I'll be very thankful for him/her.
thx
sathish
Mouse Change
how can i create a butten without letting my mouse change when i rollover?
Change Mouse Look...
I want to make a site where when you hover the mouse over the navigation bar or a designated place the cursor will change to something like a target, etc. Help, do you need any software with Flash?
Thnx for any help.
Mouse Change
Hey guys ... When ever I roll over a button ... I don't want the mouse to change to a hand ... I want to keep it the arrow ... is that possible ...
thanks
-s
Change The Mouse.
Hi everyone! This is my problem:
I have a movie clip, that when you rollover it, fades in, and when you rollout, it fades out, but the problem is, is that when you rollover, the mouse changes to the mouse for the OVER state of a button, and I want the normal mouse to stay..does anyone know how to fix this? Thank you so much for your help!
Mouse Over - Change
hey!
is it possible to change the mc 'attached' and replacing the cursor while it is over some button or another mc?
Thanks!
Change Mouse Icon
I wish to change the mouse icon, ie the arrow, to a target in a particular region in my movei. Basically, I am doing like a reel with all the work I have done so far, and I wish that when I move the mouse over the screen shots, the arrow icons turns into a taget symbol. I already created the target symbol, but I do not know how to change the mouse icon
Can anybody help please?
Thanks for your help
Any Way To Change The Appearance Of The Mouse?
Hey yall. I'm still new at all of this. I'm making a tutorial for a software program in windows. I want it to be user active. I want them to be able to push the butons for themselves from the Internet and to be able to draw in the program (Kinda like the paint program). Is there any way to change the appearance of the mouse, and, is there anyway they can draw in the program from the Internet? Sometimes I'm just beside myself because I just can't realize how powerful FlashMX is. If yall can help, or point me to a site where I can learn more about this I would appreiate it. Thanks!
Don't Change Mouse To A Hand
Hello again,
I just like to know how can I avoid that the mouse hand appears (it means that changes) when I move it over a button.
I want the button to rollover but i don't want the hand to appears (because is not a link).
Thanks for any help!
Marlowe
Change Mouse Coordinates
Hello
In flash I designed a button. I would like, on press, to change the mouse x and y coordinates, in other words to move it somwere else. Is there a script to do this?
thanks
Marcello
Image Change On Mouse Over
Hi Guys! Can you help me with this one? Here's what I'm trying to do. Let's say I have a couple buttons. On the other side of the document I have an image. So the question is what do I do to make this image change to another one when I move mouse to another button? For example: when mouse over button#1 - I have image #1, mouse over button#2 - I have image #2
Change Mouse Help Needed
Hello,
I have a movie where the mouse is an object, which works well, but then in the lower left hand corner of the movie I have two buttons. How can I switch the mouse so that when the user is over the button the mouse is no longer the object and rather just a normal mouse (hand) to indicate they can click?
Change Mouse Cursor
Is there a way to change the mouse cursor without using startDrag();
Thanks Owen,
[F8] Is There A Way To Change Mouse Position?
Hi, I've been trying to set my mouse position onto a certain part of my movie. It's like when you start an application the mouse automatically focus on a button or something like that.
I have looked in the documentation and so far couldn't find a way to do this. _xmouse & ymouse is a read only variable so you can't set the value and you can only get the mouse position and not set them.
Is it possible to change the mouse position ?
Can I CHANGE The Mouse Position Using AS?
I am currently writing a Break Out or Arkanoid type of game where the user moves a paddle to stop the ball from falling off the edge.
I am currently having trouble with moving the paddle (using the mouse).
The problem is, if the mouse starts at the left edge of the movie, then there is no way for the user to move the mouse (which starts in the center) to the left side of the screen, since if the mouse goes any further, it leave the current window (and is no longer detected by flash).
So, it is possible to change the current mouse position so that it is in the center of the screen?
Change Mouse Icon
Hi
I going to try to create so I can rotate a MC with the mouse.
As I push down the mouse button on a MC it show two arrow (on on the left and one on the right) and then move the mouse left or right to rotete.
But first I try to understand how to change the mouse icon when someone push down the mouse in my MC.
Change Mouse State
hi
i have an mc with this code
on(release){
//do something
}
but i don't want the cursor to change in to an hand but just stay shown as arrow.
how can this be done...i don't want a self designed cursor but just the arrow flash uses...
Change The Mouse Pointer
HIi Friends,
I Have A Doubt.How To Change The mouse Pointer Inside A flash Movie.
I Create A Movie Clip Named m1.Then Use The Following scripts,
Mouse.hide();
m1.startDrag();
But The Problem Is It Can't Fit The Correct Mouse Position,And When I Click On a Button It Cant Work.
What Can I Do.
Mouse Cursor Change ...
First of all, sory about my english!
I need a sliding menu, similar to http://www.sectionseven.com
Just the part when you move the mouse to the right and to the left and NEXT TO THE CURSOR APPEARS THE RIGHT ARROW OR THE LEFT ARROW
Thanks a lot!
diego klubok
Change Mouse Pointer
Hullo,
I'm slightly new to all this, so this question might have an obvious answer. I have a Movie Clip (just a still image), to which I've added a MouseEvent.CLICK event. The problem is that the user has no way of knowing they can click on it as the pointer stays an arrow.
My question is, can I use ActionScript 3 to make the mouse pointer into a hand when it passes over the MovieClip?
Thanks,
Paul
No Change To Mouse During Rollover
Hey there folks. So I am making a site that has some easter eggs (extra trival stuff) in it. Now they are very subtle and I don't want the user to know what activated them. But the only two ways I know to make an animation play is by either a button, or by giving a movie clip a rollover function. Anybody here know how to make the mouse stay the same during the rollover?
Change Mouse Cursor
do u guys have any idea how to change the mouse cursor to another image instead of the usual arrow?
thanks
Mouse And Change Of Perspective
hi, I was just wondering if there is a way to tie the mouse position on the stage to a frame. I want to create something that appears to change perspective as you move your mouse across it. I made the change of perspective by simply creating a tween within the MC, but need to do the mouse part.
Many Thanks
No Change To Mouse During Rollover
Hey there folks. So I am making a site that has some easter eggs (extra trival stuff) in it. Now they are very subtle and I don't want the user to know what activated them. But the only two ways I know to make an animation play is by either a button, or by giving a movie clip a rollover function. Anybody here know how to make the mouse stay the same during the rollover?
Change Mouse Help Needed
Hello,
I have a movie where the mouse is an object, which works well, but then in the lower left hand corner of the movie I have two buttons. How can I switch the mouse so that when the user is over the button the mouse is no longer the object and rather just a normal mouse (hand) to indicate they can click?
Change Mouse Pointer
HIi Friends,
I Have A Doubt.How To Change The mouse Pointer Inside A flash Movie.
I Create A Movie Clip Named m1.Then Use The Following scripts,
Can I Change The Pointer with A Movie Clip.
Please Help Me
# Change Sprite To Aim At Mouse
This is what I want to do, but I am having difficulty.
When the mouse cursor(gun site) is within those boundaries.
I want the appropriate sprite to be shown.
This is only one character.
He will be standing anywhere on the base of the stage always.
The only thing that I am trying to show you by these different sprites is that I want him to look in those directions when the mouse is in those areas when the mouse cursor (gun site) is in that direction according to the character.
Someone PLeeeease Help
|