IDE :: How To Change Bounding Box Size On MovieClip

May 25, 2010

I'm making a simple platformer. I have an array holding what my level looks like and my main character is a horse.... okay it's a unicorn... anyways, Whenever I jump to a platform the hittest is saying that he has landed even though his head or his tail is just over the edge... I'm trying to make it so that only his feet will allow him to land.

View 1 Replies


Similar Posts:


ActionScript 3.0 :: Change The Bounding Box Of A Symbol?

Dec 17, 2009

I'm trying to do collision detection for my game, but I don't necessarily like the premade methods hitTestObject or hitTestPoint just as they are.  I've been searching all over the place for how to change the bounding box of a symbol, but all I found was how to get its bounding box.  I'm aware of the pixel perfect collision detection code out there, but I'm looking to use bounding boxes for certain classes.
 
Is it possible to change the symbol's bounding box and still have that box recognized by hitTestObject or hitTestPoint?   If not, I might have to write my own colllision detection code.  =/ 

View 2 Replies

ActionScript 3.0 :: Change Shape Of This Rectangular Bounding Box?

Feb 18, 2010

I have a movie clip which contains a circular image, and by default Flash CS4 gives it a rectangular bounding box. This is a problem however because I am using this movie clip as a button, so the rollover area includes the entire rectangular bounding box and not just the circular image. How can I change the shape of this rectangular bounding box?

View 2 Replies

ActionScript 3.0 :: Make A Bounding Circle Instead Of A Bounding Box?

Nov 1, 2010

Is it possible to make a bounding circle instead of a bounding box?The objects should bounce INSIDE the circle.I have now a bounding box outside the circle, but the objects exceeds the circle at the corners.

I was thinking of making an array of Points on the edge of a circle and when the object is < or > then do something... but that would be a lots of if/else statements.

View 3 Replies

ActionScript 1/2 :: Change The Size Of A Movieclip?

Nov 7, 2010

Okay so I want to add:
 
if (_root.Gir_mc._x<=595) {
_root.Gir_mc._xscale=80;
_root.Gir_mc._yscale=80;

[Code].....

View 1 Replies

ActionScript 2.0 :: Load Jpg Into Movieclip And Change Size?

Aug 28, 2009

I'm working on a UI for a set top box that has a linux os, which runs a java virtual machine, which loads a flash (swf) interface!

Im trying to load a jpg into a MovieClip using the loadMovie() command because the MovieClipLoader object was introduced in Flash 7, which the box cannot run. Im preloading the image using getBytesLoaded() and getBytesTotal() and after its loaded I want to stretch it to a certain size. Im having 2 problems:

1)The FIRST time I run the loadMovie command, it doesnt always load the jpg, and getBytesTotal is set to -1. After I load it a second time, the preloader works fine.

2)I cannot use mc_name._width = 1000 to scale the width of the jpg image to a certain width. Ive tried my code on a fresh flash file and it works on a computer using Flash 6, Actionscript 2, but not on the box. Whats weird is that if I use mc_name._xscale instead of mc_name._width, it works.

Here's the code:

Code:
ImgUrl = "http://img143.imageshack.us/img143/6639/1680x1050k.jpg";
_root._container_mc.removeMovieClip();
_root.createEmptyMovieClip("_container_mc",_root.getNextHighestDepth());

[Code].....

View 12 Replies

ActionScript 3.0 :: Change Dynamic Movieclip Size?

Jun 22, 2010

I have a container movieclip that it carries some children of a movieclip .its inner children are moving and therefore our container movieclip will resize to bigger and smaller width and height. but when i scatter then hoarding these children in container ,as trace of main container movieclip size , shows maximum value of dispersal of children and now i want to refresh the size of the container movieclip to resize its currently real size(as children dispersal) and set it as a picture of scroller.?

View 0 Replies

ActionScript 3.0 :: How To Change Size Of MovieClip With Pixels

Feb 16, 2010

Is it possible to change the size of a moveClip on the stage by pixels instead of scaling it with scaleX and scaleY? In other words I would like to be able to in crease or decrease the width and height of a movieClip using pixels.

Let say I have this moveClip on the stage, how would you change its width and height using pixels
myBtn.addEventListener(MouseEvent.CLICK, resizeMe,false,0,true);
function resizeMe(event:MouseEvent):void{
// amount doesn't matter
//myMc.scaleX = 1;
//myMc.scaleY = 1;
}

View 2 Replies

ActionScript 3.0 :: Dynamic Movieclip Change Size?

Mar 14, 2010

I have a rectangle shaped movieclip that is my contentPlaceHolder for my content. I added action script to dynamically load pictures. I addChild() the loaded pictures to my contenplaceholder movie clip. The problem is when i export and play the movie pictures are loaded but not in there actual size.

the code:
var xmlLoaders:URLLoader = new URLLoader();
var xmlDatas:XML = new XML();[code].....

Pictures are shown in the right order with my clip.y code but they are not their actual size.

View 4 Replies

Professional :: Change Size Of Sheet Inside Movieclip?

Jul 8, 2010

I'm making a vertical scroller with a mask. The content is inside a movieclip and the user scrolls around it.My problem is, I have lots and lots of content to put inside that movieclip, and I've reached the limit of the sheet. All inside the movieclip. How do I resize the sheet/canvas inside the movieclip so that I can put more info in it??I've googled it, but found nothing.Note: I just want to change the size of the sheet/canvas inside a movieclip and I don't want to change my document size. I'm using flash CS3, AS2.

View 3 Replies

ActionScript 2.0 :: Dynamic Text Size Change Within MovieClip

Mar 30, 2010

I'm trying to change the text size in a dynamic text area within a (movie clip) button. For a couple of buttons I'd like to make certain text smaller, for example, to make the "vs" smaller in "A VS B". My buttons have dynamic text in them and the font is embedded and set at size 10 initially. The code I've got in my movie is as follows:

Code:
// define new text formatting
var minimenutext_txt:TextFormat = new TextFormat();
minimenutext_txt.size = 8;
avsb_txt = "A VS B";
avsb_txt.setTextFormat(3,4,minimenutext_txt);
// assign formatting to button dynamic text
btn1.btext.buttext.text = avsb_txt;

The text "A VS B" shows up in my button, but I can't seem to do anything to change the format. I've tried making it bold, italic, that kind of thing too - but no luck. Does the setTextFormat command only work with input dynamic text boxes? Is it being overruled somehow?

View 3 Replies

ActionScript 2.0 :: Change Size Of Sheet Inside Movieclip?

Jul 7, 2010

I'm making a vertical scroller with a mask. The content is inside a movieclip and the user scrolls around it.My problem is, I have lots and lots of content to put inside that movieclip, and I've reached the limit of the sheet. All inside the movieclip. How do I resize the movieclip so that I can put more info in it?? What's the max width of a movieclip?

Note: I just want to change the size of the sheet/canvas inside a movieclip and I don't want to change my document size. I'm using flash CS3, AS2.

View 5 Replies

ActionScript 3.0 :: Bounding Box Onclick On A Movieclip?

Mar 7, 2009

Anyone know of a method whereby when i click on a movieclip on my stage i can create a bounding box which will allow me to click on any corner and re size the box manually......?

View 1 Replies

ActionScript 3.0 :: Drawing Bounding Box To A MovieClip?

Nov 6, 2011

I need to draw bounding box surrounding a movieClip with arbitrary registration point with AS3. The movieClip may be of any shape and can have it's registration point anywhere.

View 5 Replies

ActionScript 2.0 :: Change Size Of Loaded Swf File (image Or MovieClip).

Sep 17, 2011

I have successfully loaded an external swf file into my own one. now what i want is to change the size of the loaded file.

the loaded file is an image and its height:500 and width:500 but what i want is to resize it to 200x200

How can i do that.

here is my code to load external image
var peelawayimage = _root.createEmptyMovieClip("peelawayimage", 7);
var mcImage = new MovieClipLoader();
mcImage.loadClip(_root.video_image, peelawayimage);

View 9 Replies

ActionScript 3.0 :: Pan And Zoom Movieclip - Make A Bounding

May 17, 2010

I'm made a map and I want to zoom in and out. The second thing I want is to make a bounding around my MovieClip.

[Code]...

This is my code so far and I can zoom in and out but I can keep going and going. I want that he stops after 200% or something and when he is 100% you cant zoom out more. Also I want a bounding so I cant move the MovieClip outside his own stage height and width.

View 9 Replies

Actionscript 3.0 :: Display Bounding Box For A MovieClip At Runtime?

Nov 21, 2010

I have been trying to display a bounding box (free transform box) for a MovieClip at runtime whenever I click on it but am completely lost. The reason why I would like to display it is to do transformations on a MovieClip at runtime.

View 2 Replies

Flash - Change MovieClip Width Along With Dynamic TextField Size Inside

Apr 21, 2009

I am a newbie in Flash CS3. How to resize the width of of a movie clip according to the size the size of dynamic text inside it. I did it by creating a text field 'myText' and then converted it to a MovieClip symbol and named the MovieClip as myClip. The text in myText is assigned at run-time and its width changes according to the text.

I did it as follows:-
myClip.myText.selectable = false;
myClip.mouseChildren = false;
myClip.useHandCursor = true;
myClip.buttonMode = true;
myClip.myText.width = myClip.myText.textWidth + 5;

On doing this I find the clickable area changes according to the size of the text field but the text field doesn't appear at all.

View 1 Replies

ActionScript 1/2 :: .size ._droptarget - Change The Font Size Of TfNum_mc_.tf?

Sep 28, 2011

var tfNum_mc:MovieClip = tl.attachMovie("tfID","tfNum_mc_",tl.getNextHighestDepth());

If I'm to assign the above code to a dragDrop action. Is there a way to change the font size of tfNum_mc_.tf? I've tried;

tfNum_mc_.tf.size = 12;//did not work

var format1:TextFormat( = new TextFormat();

format1_fmt.size = 12;

tfNum_mc_.tf.setNewTextFormat(format1);//did not work

View 9 Replies

Flex :: Change Radiobutton Size And Label Size In Actionscript?

Aug 10, 2010

I am trying to change my radiobutton size and label size in pure as3...

searchRB = new RadioButton();
searchRB.name = "search";
searchRB.group = rbg;

[Code]....

View 1 Replies

ActionScript 2.0 :: Keep Size Of Button Same When Canvas Size Change On Run Time?

Nov 3, 2009

I want to reduce the size of Swf using the size mentioned in the object tag of html. Same swf file size can be different for different request.

The problem is this if we reduce the size all control in swf reduced according to the change in swf size. But we want the buttons and one more graphics remain same size for any change in size of swf file. How can we make it ..

View 1 Replies

ActionScript 2.0 :: Main Contents Change Size And The Menu Position According To The Size Of Main Contents?

Nov 10, 2003

i want to know how did the creator of otradesign accomplish the effect in his site like the menu and the main contents change size and the menu position according to the size of main contents.

View 5 Replies

ActionScript 2.0 :: HitTest And Positioning - Create An Invisible Movieclip That Has The Exact Size And Shape Of The Animated Movieclip

Aug 23, 2005

This is the third thread I've written for my current project (1st was answered perfectly, 2nd failed [but I still figured it out anyways]) but I'm not sure if there is a solution to this problem. I can't really explain my problem, so once again I've included a helpful animation to show you what I mean. Bear in mind that the pale-blue box represents the movie clip's borders, and those borders are usually changed to include the animation (instead of the borders moving with the animation, the borders get bigger).

For the animation problem, I've already got a solution: create an invisible movie clip that has the exact size and shape of the animated movie clip and make it follow the movie clip as it animates, and make the hitTest check the invisible movie clip instead of the animated one. As for the rotation problem, well, I don't know how to fix it. Is there a way to change that?

View 1 Replies

IDE :: Change Size Of SWF/FLA?

Apr 21, 2009

I'm wondering whether it's possible to change the size of a flash application at runtime?

I know I can scale the SWF with HTML/JavaScript, but I'm not talking about scaling here. I want to change the actual size, not just enlarge it visually. Let's say my SWF is 400x300 pixels. At runtime, I want to change it to 500x400. All the elements inside the SWF (buttons or whatever) should remain the same size. It's the Stage itself that should change.

View 1 Replies

Change Frames Instead Of Size?

Apr 24, 2009

I want to change frames instead of Size. How can I revise this?

s1.addEventListener(MouseEvent.CLICK,changeSize);
s2.addEventListener(MouseEvent.CLICK,changeSize);
s3.addEventListener(MouseEvent.CLICK, changeSize);
s4.addEventListener(MouseEvent.CLICK, changeSize);

[code]....

View 1 Replies

IDE :: Do Not Want To Change The Swf Window Size?

Feb 4, 2009

i mean..i dont want my user to maximize or minimize the file..like u ppl must have seen the softwares setups..their window file size cannot be changed.

View 1 Replies

IDE :: How To Change Flash Size

Apr 8, 2009

I have a flash file with the stage size 800x600Now I change the stage size to 1024x768 but all the constant ( movie clip, images, buttons..) do not fit with the new stage size.

View 2 Replies

Professional :: Can't Change Size Of Brushes

Jun 22, 2009

So I was doing my usual work with flash when I switched to my brush. Wanted about an 25 or so but i couldn't change the stroke size. It doesn't say anything it just won't let me drag it. Its really irritating..

View 4 Replies

ActionScript 3.0 :: How To Change Document Size

Sep 1, 2009

How can I change the size of the document dynamically? The document has a fixed size and when I use the Movieclip(root).width/height I change the size of the movieclip but not of the document. How can I access the width/height of the document?

View 3 Replies

Professional :: Change The Pasteboard Size?

Apr 2, 2010

I'm trying to work with a very long image that scrolls through a page. Piecing it together, it's roughly 12000 pixels wide. I can't view the image because the pasteboard seems to only be around 3000 pixels. Is there a way to increase pasteboard size?

View 7 Replies







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