ActionScript 3.0 :: Mouse Input To Change Alpha?
Jan 27, 2012
I'm running AS3 in Flash CS5 and I'm trying to make a box fade in when the mouse moves to the right.Here's my code thus far:
stage.addEventListener(MouseEvent.MOUSE_MOVE, changeAlpha);
function changeAlpha(event:MouseEvent) {
fader.DisplayObject.alpha =(root.mouseX/550);
[code].....
View 3 Replies
Similar Posts:
Apr 27, 2011
Trying to make it so my text appears when I roll over the image:
gticar.addEventListener( MouseEvent.ROLL_OVER, roll );
function roll ( evt:MouseEvent ) {
gtiText.alpha = 1;
}
The alpha of the symbol is currently 0.Full Code View:
import flash.events.MouseEvent;
// Stop the showcase on the homepage (frame 2)
stop();
[code]...
View 2 Replies
Aug 4, 2011
var sprite1:Sprite = new Sprite();
sprite1.graphics.lineStyle(2,0x000000);
sprite1.graphics.beginFill(0xCCCCCC);
[code].....
View 2 Replies
Jul 23, 2003
I have to make a thingie whereby when u enter values into 2 input txt boxes an image modifies its scale and alpha accordingly. Now I have done everything I am supposed to but the funny thing is NOTHING happens. I'll post the code (I applied it to the button which I think is right)...
on (release, keyPress "<Enter>") {
if (_root.scale>100) {
gotoAndPlay(1);
[Code]....
View 8 Replies
Jun 19, 2011
I got an input function in witch i set all the variable i want to display. To make it clean i would like to input any number of vars without having to change my input function to avoid the "Expecting more/less arguments". Then i would like to get any type of var (bool num int ....) in the input and then check their type, instead of declaring the first input var being exclusively a number for example. Is that possible and how, don't know if i was clear,
View 5 Replies
Sep 14, 2009
I am new to Flash and am using Flash CS4. Can someone send me the code to make a top picture fade out to reveal a photo underneath when hovering with a mouse and then fade back in after you move the mouse?
View 3 Replies
May 9, 2005
I have created a finite menu and it works fine, the only problem is that now I want to have the menu set to 50% alpha and when the user moves the mouse over the menu it gradually increases to 100%
View 14 Replies
Nov 6, 2007
What I'm trying to do is have an object go from 0% and fade to 100% when I move the mouse cursor over it.
For the life of me, I can't figure out the code to work this. I'm sure this is the easiest thing on the planet, but I've been working with AS for only about a week.
I've made the object a button symbol and given it an instance name of "btRed." I found the following code in the help file, but it isn't working.
function fadeBlock(event:MouseEvent):void {
btRed.alpha = 1;
btRed.addEventListener(MouseEvent.mouseOver, fadeBlock);
}
View 14 Replies
Nov 3, 2009
I have some png images which were converted to movieclips and exported. I would like all clicks on the transparent parts of the png to be ignored by a movie clip on a closer layer and have a movie clip under the transparent parts receive the event. Is there a way to do this? When I convert the symbol to a movie clip, the authoring tool automatically puts a bounding box on it so all clicks in the bounding box are detected. I tried searching mouse events and alpha channel stuff on the forum.
View 3 Replies
Apr 16, 2010
I am trying to dynamically change the alpha value of a set of movieclips on a timer. The timer works but I get an error message from the function. This is the error:
TypeError: Error #1010: A term is undefined and has no properties. at piedacoulisse_timer_fla:MainTimeline/zoom/piedacoulisse_timer_fla:onT ime()[piedacoulisse_timer_fla.MainTimeline::frame1:124] at
[Code].....
View 5 Replies
Apr 26, 2010
Im very new in the flash business and i started making a gallery after this videoi get 2 errors when i write te action code for alpha change. Is it because i use ActionScript3 instead of 2? because i made it with flash CS3.
View 8 Replies
Jul 12, 2010
Basically, I want to change the alpha value on my movieclip. I start my mc with an alpha of .08 (8%).
mc.alpha = .08;
What I then want to do is increment it to .9 (90%) and when it hits that, decrement it back to .08, and then when it hits that, increment it again to .9 etc.
I have tried
if(mc.alpha==.9){
mc.alpha -= .01;
}else{
mc.alpha += .01;
}
View 7 Replies
Jan 20, 2012
From what I understand you can change the alpha value of a textfield to be fully transparent. I would like to have chat output that fades after a while. I was wondering if there was a way to change just a portion of the string inside of a text field to transparent. The textColor does not have an alpha value. I could just use multiple text fields but I would like to avoid doing that if possible for efficiency sake.
View 1 Replies
Jun 18, 2009
I'm making a drawing API for my homepage. My homepage is exclusively created in Flash AS2... But I have a problem with my brush for the drawing API... I would like to change the opacity/alpha value of the brush, with keypress LEFT and RIGHT... But i can't get it to work!
Here is my code:
ActionScript Code:
lineThickness = 0;
selectedColor = "0x000000";
[Code]....
View 0 Replies
Jul 3, 2009
Ok. I am new again so I hope I am describing this correctly. I don't know the best way to do this but this is what I've dreamed up so far: I have a number of movie clips on my screen, all thumbnail sized images, each with an instance name (ex: tw_lifeoftheparty, tw_xmen, tw_xfiles, tw_diehard, etc.).
In each movieclip there are 2 layers: the thumbnail image(bottom layer) and a black border(top layer). The black border is an object named wk_border and isin each of the thumbnail movieclips.
I have given wk_border the same instance name in each thumbnail movieclip "border"
[Code]...
View 5 Replies
Nov 5, 2009
Let me try to explain what I'm doing. I have multiple movieClips (mc_aitkin, mc_anoka, there will be a lot more) on the stage that I want to change their alpha using data from an xml when it loads. I can isolate the info I want and trace it so it shows in output, but I'm not sure how to use it from there.
I've tried to convert the xml data to a number and do an if/else as shown below, but the only output I get is "not" (from a trace). So I'm guessing the if/else isn't recognizing the xml data as a number?
If I can resolve that, the next step will be to apply this function to the large number of mc's I'll have on the stage. Would that be with something like e.currentTarget.alpha = .5; ?? I don't think I can put it in the same changeAlpha function because there the property of 'e' would be undefined.[code]...
View 8 Replies
Jan 18, 2010
How can i change the alpha value of a movieclip through actionscript?
View 1 Replies
May 22, 2010
I want to make a button to change the alpha of an instance but I dont know how to make it.
Thats what I want: When I click the button, then the movie clip appears (alpha 100)When I click the button again, then the movie clip disappears (alpha 0)
View 2 Replies
Sep 24, 2010
I am making a website/online gallery. I have all my buttons assigning a frame number or value eg. [code]...
and then have all different movie clips loading depending on the the 'frameno'
My problem is that i want the button alpha to change when you are on that page. So i am assuming it would be something along the lines of.[code]...
View 9 Replies
May 6, 2004
I've been trying to change an MCs alpha with actionscipt. the movies FPS is 30. Here's the as:
onClipEvent(load) {
var alpha = blue._alpha;
alpha = 50;
var forwardA = true;
var changeA = true;
[Code] .....
Btw, "blue" is the MC that I want to change the alpha of, and this code is on that MC.
View 6 Replies
Feb 26, 2005
how to script a alpha change on roll over!
View 2 Replies
Jun 7, 2003
Is there a way to change Alpha settings on MC using AS? Something like this:
[Code]....
Im trying to duplicate the window effect on this weeks site of the week: [URL]
View 3 Replies
May 7, 2010
I am quite new to actionscript 3 here is what I want to do: When the mouse hovers over a movieclip I want another movie clips alpha to go from 0% to 100% then when the mouse moves off of the movie clip the reverse happens.
View 2 Replies
Feb 26, 2005
I do wonder how to script a alpha change on roll over!
View 2 Replies
Oct 2, 2010
I am working on a project for school using ActionScript 3. I have a matrix created with an animated movie clip. The matrix looks like a bunch of shapes changing size and color on the screen. I would like to have it so when I move my mouse moves over an individual shape in the matrix the alpha will change to be more transparent... like 0.5. I'm sure it would be a mouse move function, but I don't know how to write that part of the code.[code]...
View 16 Replies
May 16, 2010
I have 10 movie clips on the stage all of them are on the same layer and the alpha property at 0.5.
I want a single movie clip to randomly move to the top of the other at timed intervals. This movie clip alpha property will change to 1 while the other movie clip will remain at 0.5
View 5 Replies
Sep 2, 2010
I made a form and i want it to be invisible until the background's alpha is 100% and dissappear when the backgrounds alpha is anything other than 100.
reserv_form is the form reservations_box is the background
this is what i have but it dosent work:
Code:
reserv_form._alpha = 0;
if (reservations_box._alpha = 100){
reserv_form._alpha = 100;
[Code]....
View 0 Replies
Feb 3, 2004
How can I change the alpha value of the visited link's?
View 2 Replies
Jul 28, 2004
I want to make each of the squares (pictured below) change alpha every second or so. (fading).Is actionscript needed to do this?
View 13 Replies
Nov 2, 2005
is it possible to to change the value of the alpha setting of an attachedMovie
I have
Code:
function attachBk (thisBk, nextBk):Void {
if (thisBk == undefined) {
this.attachMovie(nextBk,"bkHolder1", this.getNextHighestDepth());
[Code]....
When I click a button I want bkHolder1 to fade out but so far I haven't had any success, I tried doing bkHolder1._alpha = 0 just to see if it would affect it's property but it didn't.
View 4 Replies