ActionScript 3.0 :: How To Stop Scaling On Mouse Up
May 7, 2009
In this code when I MOUSE_DOWN on the upArrow the box scales larger till it's 350 pixels wide I want the scaling to stop on MOUSE_UP. Example [URL]
import flash.display.Sprite;
import flash.events.MouseEvent;
var square:Sprite = new Sprite();
square.graphics.beginFill(0xFFCC00);
square.graphics.drawRect(0, 0, 100, 100);addChild(square);
[Code] .....
View 5 Replies
Similar Posts:
Jun 8, 2005
I have a movieclip that I want to be scaled to 400.After that I don�t want it to scale anymore.How can I stop it going back to it�s original value and scale again and again.I have the as in "On enter frame",I dont want a button to be pressed to start scaling.
View 6 Replies
Nov 5, 2010
I have a movieClip in my metronome you can see here: When I resize the metronome the tiled movie clip I use for the decorative borders resizes as well and I would like it to tile more images when it is resizedI would like more tiles and I want them to be their original size.
View 3 Replies
Mar 29, 2010
I have a website which im designing exclusively in flash. The project size is 1000x500. The video which im using is 320x150. On the stage ive set the player to 320x150. The stage size is 1000x500 (thats the size and span of the website). When the page works from the internet. It expands to fill the screen of the viewing computer. Which is what i want anyway since Ive set my publish settings to get this. But the video player gets scaled along with the page that scales to occupy the viewing screen. So when the player becomes a little larger than its orginal size the video looks low quality. Is there a way that the player alone could be set to maintain its orginal size of 320x150 and not scale because this is causing the video to get distorted and pixellated ?
View 1 Replies
Mar 27, 2009
It also need to have some random scaling to it, maybe something like this code below.
Code:
targXscale = 50;
targYscale = 200;
[code]....
View 1 Replies
Dec 1, 2010
I have a turret in the middle of the screen and I want to draw a laser from there to the mouse coordinates. I could do this with this.graphics.lineTo(mouseX,mouseY) etc. but I'm not happy with the graphics I can get programmaticly so I want to get the same effect but with a graphic I've imported.But I'm stumped on how I can scale the graphic to the mouse coordinates.I'm also concerned that even if I can scale it it will look stretched. Does anyone know of a good way to do this?
View 0 Replies
Feb 20, 2004
I have a dragable movie clip that on release I want to scale, depending on the mouse position, the further the mouse up the screen (y) then the smaller the clip scales on release.
View 6 Replies
Aug 1, 2004
I have a MC that follows the mouse. I want to do so the MC will smoothly/softly stop when i stop moving the mouse. Is it hard to code, And it would be very nice if someone could do some code for it
View 2 Replies
May 13, 2010
i am using this on Mc
onClipEvent(enterFrame){
diffx = _root._xmouse - this._x ;
diffy = _root._ymouse - this._y ;
[code]....
View 1 Replies
Jun 5, 2010
how to stop spray when the mouse is stop
import com.greensock.*;
import com.greensock.easing.*;
stage.addEventListener(MouseEvent.MOUSE_MOVE,spray Flowers);
[Code]...
View 9 Replies
Jan 3, 2011
i've got a main home page in flash coded in AS2 that first loads up 8 thumbnails when you click on one it goes into fullscreen mode and loads images dynamically side by side that you can pan through with your mouse.the problem is is that i am using the setBackground(); and it is not scaling the Loader components inside my movie clip correctly initially, it is scaling them down yet when i resize the window it scales them perfectly.Here is my AS to scale:
ActionScript Code:
// this tells Flash NOT to allow the assets to be scaled
Stage.scaleMode = "noScale";
[code].....
View 9 Replies
Mar 11, 2008
I've search through all the threads with "scaling" and "resizing" and can't find the solution.
Basically I have a GUI element on a gallery that I don't want to scale, while the rest of the page is free to resize/scale.
I think I need to add a listener of some sort to the stage, but I'm not sure how to do this.
View 2 Replies
Feb 23, 2009
I'm building some navigation that extends all the way from left to right across my SWF. When the window resizes, I'd like the nav buttons to get wider but not have the text on the buttons get wider.
The buttons themselves are rectangles with a vertical gradient and a stroke around the outside. I'm using 9-slice scaling so the stroke doesn't scale, but the middle (gradient) gets wider or narrower.What'd be great is to be able to select an object or layer and say "don't scale, even if the rest of this movie clip scales". Is there a way to do that, or will I have to do it via actionscript?
View 1 Replies
May 20, 2010
i have a diagonal movieclip that I am trying to scale along with the background video. The background video scales perfect, I am attaching the diagonal movieclip (br in the code as bottomright) with addChild
Instead of scaling with the window, it seems to repeat such as the image is displaying. this is the main section of the code that is doing the scaling
var br:mc_bottomright = new mc_bottomright();
addChild(br);
//proportional scale
if ((stage.stageWidth / stage.stageHeight)> (owidth/oheight))
[code]....
View 4 Replies
Apr 10, 2009
I am trying to achieve an effect of scaling a movie clip on click...very similar to [URL] When the user clicks on See, Hear, Play and Shop boxes, the boxes expand. I have created a box movieclip that has a bar on top. This bar is a movie clip inside the box movieclip. When i try to scale the main box movieclip, the internal bar movie clip scales as well. How to stop this?
View 2 Replies
Aug 20, 2010
i have an ad that when the page loads, it can have 15secs of animation and then stop. the animation can only be started again if the user rolls over the ad but has to stop and go back to the end of the animation if they rolls off the ad.
i know the basics of Flash and the part that's giving me the trouble is the roll off the ad.
View 3 Replies
Apr 18, 2004
really sorry to bring this one up again. I've managed to create quite good working gallery. What I'm trying to now is create a menu that is attached to the scaling part but does not scale it self - in other words just changes position. here's an example of what I mean: galleru #1
View 14 Replies
Apr 18, 2004
What I'm trying to now is create a menu that is attached to the scaling part but does not scale it self - in other words just changes position. here's an example of what I mean: galleru #1
View 13 Replies
Aug 5, 2009
i wanna stop image scrolling when mouse over?
View 3 Replies
Aug 10, 2009
I am creating a sort of "information slideshow" for a clients website where a movie clip on the main stage acts as a slideshow and when not touched by the users mouse it fades through 3 stages giving information on 3 different subjects, then when the user places their mouse over the movie on the HTML page the animation stops to allow the user to use the scroll bar on the right of the movie to scroll through the information on the subject, then when the user is finished then can move the mouse away from the movie and it will continue to play through as it did before.
i have the animation playing with the 3 seperate "states" and identical scroll-boxes for each state and im trying to think of a way to make the animation stop when the mouse is over it WITHOUT using a button, when a button is used on the top layer of the animation the scroll boxes are not useable as the button is on top of them, so i tried making a gap in the button to cater for them but then of course the mouse isnt over the button when the user goes for the scroll box and the "rollout" part of the script is activated and the movie continues to play. is there a way to make the animation stop prehaps when the mouse is over the "main automation" movie clip WITHOUT the use of a button, or what would be even better is when flash detects that the mouse is over the top of the actual .SWF itself it stops the movie.
View 8 Replies
Nov 8, 2011
i have a plane that gonna follow the mouse but i dont want the plane to stop when it reaches the mouse position , instead it needs to continue its wauy then follow the mouse when it moves again this is what i have so far package
{
import flash.display.MovieClip;[code]....
View 2 Replies
Jan 10, 2012
I hav an image which i haved converted into a symbol(button)Now the thing is..inside the Button movie clip, i hav embedded a sound only on the mouse-over keyframe but My problem is that when i click the button(mouse-down), i get the sound too.
View 1 Replies
May 10, 2011
I have a movieclip which has this script attached to it (plays a soundclip on hover) - problem is that if I move the mouse out I need to stop the soundclip. Right now it just starts again while its still playing (on mouse over) == not good.
I tried to make a MOUSE_OUT event and a .stop(); but it does not seem to work.
import flash.media.Sound;
import flash.media.SoundChannel;
//Declare a BeepSnd sound object that loads a library sound.
[Code].....
View 3 Replies
Jun 15, 2005
i tried to make the ball follow my mouse, i am trying to stop the ball following my mouse when i drag it out side the border.
View 3 Replies
Nov 7, 2005
I am moving 1 mc by onClipevnet (enterframe) while mouse is there on certain portion of the stage and i stop that moving of mc while mouse is not over tht certain portion of the stage or moves out of tht certain area. Bt i want to stop moving with ease not suddanly.
View 2 Replies
Apr 8, 2006
I have the following code on a movie clip which follows the mouse fine on the x axis, but does anyone how I can modify it to detect when the mouse has stopped, then the object (a bird) will then stop it's running action?
Code:
onClipEvent (load) {
_x = 0;
[code]......
View 1 Replies
Apr 12, 2006
I need to be able to use the buttons, but when the menu keeps easing towards the mouse it's hard to reach them. Is it possible to stop the easing once the mouse x and y is eaqual to the menu x and y? And start the easing again on rollOut? How do I do this?
View 13 Replies
Feb 16, 2008
i have a mouse trail that loads in frame 1 with this script...
[Code]...
but i want to stop this at frame 3... does anyone know how to do that? (i only want it to run while my preloader is active.
View 3 Replies
Apr 9, 2009
I have a presentation which is one movie clip in one frame on the main timeline. The movie clip has quite a lengthy timeline. What I need to do is stop the movie at a frame then play on mouse click and in some cases gotoandplay, then stop again. There are no other movie clips inside the main movie clip and I want there to be no buttons. Just proceed to the next bit on mouse click.
View 2 Replies
Jul 30, 2011
if you had a parent movieclip, say mc1, and two movieclips inside that, say mc2 and mc3, and you had a color button that changed the color of mc3, how would you stop the button from affecting mc2? to make it clearer, mc3 is a fence section and mc2 is the shadow affect (for realistic looking fence section). when the button is pressed on the stage, the color take both movieclips and turns them into its functions color.
View 4 Replies