CS3 - MovieClip Button (Hit Area)

Apr 30, 2010

I'm new to the forum my name is Chris. I'm currently working as a Graphic Artist for a company called TransTech Systems in Schenectady, NY [URL] I registered today Im trying to figure out. I need to disable the hit area of an object thats part of a movieclip button. Im trying to create a single image light box effect in which the blown up image closes when you mouse off the thumbnail. Here is a link to my movie [URL] If you click on the pic of the gauge you will see the image blows up, and the background fades to a transparent black for better contrast between the pic and the page. I need the background fade effect to not have a hit area otherwise the rollout action does not work.

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Flash8 Movieclip Area Movement - Restrict The Area In Which The Movieclip Can Actually Move ?

Apr 24, 2009

I have made a movieclip and gave the frame this actionscript:

------------------------------------------------------------
var keyListener:Object = new Object();
keyListener.onKeyDown = function() {[code]........

it moves fine and stuff but i was wondering how can i restrict the area in which the movieclip can actually move ? my flash file is 550px X 400px and i want to make it so that it can only move in 300px X 200px of the file if you understand ?

View 1 Replies

CS3 Movieclip Button Hit Area

May 8, 2009

I have a movieclip button with the following actionscript (which I have on the main timeline above my MC layer):

movieclip1.onRollOver = function(){ movieclip1.gotoAndPlay("normal");
}
movieclip1.onRollOut = function(){ movieclip1.gotoAndPlay("hitout");
}
movieclip1.onPress = function(){ movieclip1.gotoAndPlay("over");
}

This works perfectly! My movieclip button takes up the whole stage but I don't want the whole stage to be my hit area (which right now it is). I was searching and I found this actionscript: hit._visible = false;
this.hitArea = hit; The tutorial said to make another layer inside my MC, then add that code. But when I play my movie, I can still see my green square (which was supposed to be my hit area) and it does nothing!

View 12 Replies

Flash :: Reducing The Hit Area On A Movieclip Button?

Sep 20, 2010

I created a movie clip button that contains 2 text fields, one static and one dynamic. The dynamic text field holds strings that will vary in length. This MC in general is used as a button so what im trying to do is not have the hit area as large as the length of the text box.

If you go to http:[url].... and click on (takeout > menu) you will see on the menu all the items listed are overlapping onto the picture, i want to limit the hit area so that does not happen. I cannot shorten the MC because it will vary in length, and if it does become that long then that portion should not be clickable.

View 3 Replies

ActionScript 3.0 :: Rollover Button With Nested Movieclip Is Interfering With Hit Area

Dec 11, 2009

I have created a world map that has each region of the world as a rollover. When you rollover the US, for example, it turns red and a movieclip pops out to display some info...it's basically a graphic I created in Illustrator that is a rectangle with info written on it.
 
The rollover works fine and everything pops out, but when you move the cursor close to the popout, it thinks you have rolled off the US. When you hit the edge it pops in and out almost like it is blinking.
 
How can I make it so that they are one hit area? Here is some of the code:
 
na_mc.buttonMode=true; 
setChildIndex(na_mc,0); 
na_mc.addEventListener(MouseEvent.ROLL_OVER, onButtonOver);na_mc.addEventListener(MouseEvent.ROLL_OUT, onButtonOut);

[Code]....

View 7 Replies

IDE :: Make To Have A Button Inside Another Button Area?

Mar 5, 2010

I've made a mask with a FLVPlayback inside and with a sliding bar that appears when I make rollover in the FLVPlayback. All working well. I want to put some simple controls in the sliding bar like pause or play, but I can't access the buttons because they are inside a first button ( the FLVPlayback ) that triggers the sliding bar. How can I make to have a button inside another button area?

View 1 Replies

Professional :: Define A Hit Area For MovieClip?

Mar 27, 2010

How i can define a hit area for my movie clip. i want determine accident of two MovieClips and I need to define a hit are for them.

View 4 Replies

ActionScript 2.0 :: Keeping A MovieClip Within A Set Area?

Aug 13, 2006

I am having problems with a MovieClip, basically it can be moved arround with the mouse and it is resizeable but when i move it arround or enlarge the movieclip (when its in a published format) i want to constrain it to an area such as 400 width by 400 height.Because at the moment you can drag or resize the movieclip ouside the whole frame, which i dont want. i want to constrain it to a set area.

View 7 Replies

ActionScript 2.0 :: Duplicating Movieclip To An Area?

Feb 27, 2009

I have a game where you click a button and I want a movieclip to be duplicated in a certain area which is a movie clip named swamp_mc.On the button I am writing:

Code:
on (press) {
i = i + 1;

[code].....

View 7 Replies

IDE :: Scrolling MovieClip: Loop Within Set Area?

Jul 29, 2009

I've got a movieClip that's scrolling across the stage that loops nicely (kinda like the many cloud animations out there).

I've set the clip up to stop it's scrolling on a rollOver, and start up again on the rollOut.

My problem is that after the rollOut the loop doesn't work. The movieClip just keeps travelling.

Code:

blue.onEnterFrame = function() {
blue._x -= 2;
if (blue._x<=-0) {

[Code]....

View 5 Replies

AS3 :: CS3 Create Hit Area Button

Apr 1, 2009

I made a movie (looks like a button). Inside that movie, I have frame 1 - 36 for MOUSE_OVER, and the rest for MOUSE_DOWN. Frame 1 is for MOUSE_UP. I've assigned name to the movie home_mc, then went to scene1 and place a script on frame 1 (in separate layer):

home_mc.addEventListener(MouseEvent.MOUSE_OVER,but tonOver);
function buttonOver(event:MouseEvent):void
{
home_mc.gotoAndPlay(1);
home_mc.removeEventListener(MouseEvent.MOUSE_OVER, buttonOver);
}

The movie plays correctly,but whenever I move the mouse (while its still on the button), then the movie plays again; to me it looks like its a hitArea() not configured.

To check that I have set a button and placed my home_mc movie in OVER frame.

View 1 Replies

Professional :: How To Set A Button's Hit Area

Oct 22, 2010

I' m having an issue with setting a button hit area.I have imported a bitmap image, and converted it to a symbol button, and set it a hit event.My problem is that the hit area of the button is more than what i want, I want the hit area to be only the bitmap itself, and not its whole extent.The red circle is out of my bitmap picture, but because it is in its extent if I press there it will invoke a hit event.

View 3 Replies

ActionScript 3.0 :: Spawn A MovieClip Somewhere In The Stage Area?

May 30, 2009

I have a mini-game where I have three movieclips:The player (controlled by mouse); A random object that moves around the stage (like the arkanoid ball without the paddle and the blocks); A simple power up.The game is simple: hitting the power up increases your scoreThe game ends when the object hits the player.The question is:How can I spawn the power-up (randomly) on the stage area, every time the player hits it?When that happens I want the following events to occur:1) The power-up to be removed;2) Increase the score by 1.3) Place a new power up randomly on the stage.4) Rinse and repeat.

View 12 Replies

ActionScript 3.0 :: Scaling A Movieclip In Restricted Area?

Jun 29, 2009

I have a movieclip (view_mc), I want to scale it in a restricted area.

I have made an IF statement,

when its width and height are less than the width and height of the restricted area, then do scale.

but when it reaches the width and height of the restricted area I can't scale it down.

Here is the code:
view_mc.addEventListener(Event.ENTER_FRAME, on_enter_scale);
function on_enter_scale(e:Event):void
{

[Code]....

View 7 Replies

ActionScript 3.0 :: Resizing Movieclip In A Restricted Area?

Jul 7, 2009

I have 2 moveclip called view_mc and restricted and button called btn_scale.
 
When the user click and drag btn_scale, it resizes the view_mc where the width and height of view_mc dosen't exceed the width and height/2 of restricted area.

I made that.  But when view_mc reaches the width and height/2 of restricted area, I can't resize view_mc to be samller. (The btn_scale looks like it's disables and can't use it)

I think some logic is missing. I highlighted the code that is missing some logic.
 
var clickedX:Number;
var clickedY:Number;
var newScale:Number;

[Code]...

View 1 Replies

ActionScript 2.0 :: Drag And Drop MovieClip Onto Certain Area

Mar 12, 2004

I need to drag and drop a movie clip onto a certain area and if the position it landed is right I do not want the users to be able to drag the clip again. How can I stop the clip being dragable?

View 2 Replies

ActionScript 2.0 :: Duplicate MovieClip Within Small Area

Jun 25, 2003

On the enter frame of my movie I want to take a movie clip in my library and have 3 instances of it move randomly within a small area (~ 50 x 50 pixels). I also want the alpha to change to 0 and back to 100 every couple of seconds. Should I be using duplicateMovieClip or should I use something else? I'm trying to create something similar to how the leaves react on this site [URL].

View 2 Replies

Button Hit Area Different In Flash Than Published?

Oct 7, 2010

I am creating a simple flash animation in Flash CS5 of a hip hop group, where when you mouseover their picture, their name pops up over their head.

I made each image a button and created the frames for up, over, down, and just a black rectangle for the hit area.

The problem I have is that in Flash when I have simple buttons enabled, it works fine and flawlessly, but when I publish it the hit area is sketchy and doesn't always react when moused over.

View 3 Replies

Don't Want Angled Button's Hit Area To Be Bounding Box

Jun 12, 2009

I am trying to create buttons on a 45 degree angle. They are simply text. I have tried drawing different hit areas for the button, but when I publish the swf the hit area for the button is always its bounding box (so there is a huge space in the upper left and lower right corner which activates the button).

View 1 Replies

Professional :: Animated Hit Area Into A Button?

Aug 23, 2010

I have an 800x800px button within a 800x800 stage, in the up state only 200px of the button are visible, the others 600px remains out of the stage, the over state is a movie clip with a spring-like animation that brings the button to the left to a viewable area of 600 pixels (while now only 200px are left out of the stage). the down state is very the same than the over (without animation, so no changes in size at all).
 
The problem here is how i set my hit area: if I set it to be the size of the up state then the button works the way it's supposed to work but if i move the mouse just i little to the left (just out of the hit area, remember, same size as the up state) then is considered not to be on the over state so i come back to my initial 200px button. By the way if i set the hit area to match the size of the button once it has completed it animation on over state (600px of viewable button) I fix this issue but then I will click the button even when I'm out of the UP state.It's possible to place a movie clip inside the hit area so that it always mach the motion of the movie clip inside the over state?[URL]This is an early prototype of the site but you'll see what i mean, my buttons are the numbered tabs, when you roll over there you'll see they become animated but i planning to make this animation much more exaggerated and then is when the problem come...

View 6 Replies

ActionScript 2.0 :: Diagonal Hit Area For A Mc Button?

Apr 20, 2010

Ive been looking all over, since all my efforts bring about a rectangled shape hit even with hitArea defined.

View 0 Replies

Tween Hit Area Of Flash Button?

Mar 19, 2009

Is there anyway that you can tween the hit area of a button in flash so that it follows a button as it moves? I have my buttons set up as such:When a viewer visits the page they only see a small part of the button, and when they roll over it the entire button rolls out, but I want to be able to make the hit area only as big as the small portion, and expand when the button appears in full so the entire button is clickable.

View 1 Replies

ActionScript 2.0 :: Clicked Outside Of A Certain Area - Button Or MC?

Jun 1, 2005

is there any action script for doing something when clicked outside of a certain area? such as clicking outside of a button or MC?

View 1 Replies

ActionScript 2.0 :: Blocking The Hit Area Of The Button?

Jul 3, 2003

I have a button (with actionscript) under some dynamic text. The dynamic text, including some small transparent space around it, is blocking the hit area of the button. How do I solve this problem?

View 2 Replies

IDE :: Define Hit Area For Animated Button?

Dec 9, 2010

I've created an animated button where when you rollover it - a message box appears. My problem is that the button hit area is the whole size of the movie clip (including the message box), so the box will appear even if you haven't rolled over the button.

So basically I want to define the hit area to just the size of the button itself, rather than the whole movie clip.

View 4 Replies

ActionScript 2.0 :: Enlarge The Hit Area Of Button

May 12, 2005

how can i enlarge the hit area of a button when i'm over it? i tried creating a movieclip ("mc") containing two frames; one frame ("normal") with a button including a small hit area, and one with a button containing a larger hit area (framename="over"). when i roll over the movie clip it sucessfully changes to frame "over" with the large hit area button (from root i tell "mc" to cange to frame "over"), but in fact only up,over and down state frames are taken from the new button. the hit area is still the small one from the first frame.

basically the thing i want to achieve is, that one rolls over the button, but will have to move his mouse farer away from the overstate graphic of the button, to release it. so optically the same button, but with a larger hitarea than the one you entered when rolling over the button in the first place, so one cant accidentally get off of it too early.

View 4 Replies

ActionScript 2.0 :: Flash8 Scrolling MovieClip: Loop Within Set Area?

Jul 29, 2009

I've got a movieClip that's scrolling across the stage that loops nicely (kinda like the many cloud animations out there).

I've set the clip up to stop it's scrolling on a rollOver, and start up again on the rollOut.

My problem is that after the rollOut the loop doesn't work. The movieClip just keeps travelling.

Code:
blue.onEnterFrame = function() {
blue._x -= 2;
if (blue._x<=-0) {

[Code]....

View 5 Replies

ActionScript 1/2 :: Mouse Position Inside A Movieclip Area?

May 20, 2009

how can i test the position of the mouse inside the area of a specific movieclip WITHOUT using rollover and rollout events?
 
the movieclip is the irregular shape (star)
 
i need to do some action according to the position of mouse (inside/outside of the movieclip area) but i can not use rollover event because i have a button placed over the movieclip.

View 1 Replies

ActionScript 2.0 :: Get A Movieclip To React To Mouse Within A Certain Area (swf In Html)?

Oct 27, 2009

I got a problem with a rotating cube in html.When i'm out of the swf area, the _ymouse and xmouse are still reacting when i click somewhere outside of the swf and then the cube starts rotating again.Is it possible to limit the mouse coordinates to only the swf file?The cube i'm using is on this site.URL...

View 4 Replies

ActionScript 3.0 :: Movieclip Hit Area, Set To Dimension, Instead Of Pixel Perfect?

Dec 4, 2010

i have a simple movieclip, based off text, with a few frames, and instead of creating an invisible area to do the hit test, is there any way to set the hit area to equal the movieclip's dimensions?, google seems to not be able to provide results, i don't need pixel perfect hit detection, but rectangle detection

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved