ActionScript 3.0 :: Resize A Rect Within Another Rect?

Aug 27, 2011

I've got a tricky one that's stumping me, could you take a quick look over it I draw a rectangle within another rectangle like this:

Code:
CanvasBorder.graphics.beginFill(0xf0ff00,0.1);
CanvasBorder.graphics.drawRect(100,100,550, 300);

[code].....

View 2 Replies


Similar Posts:


Actionscript 3 :: Resize A Rect Within Another Rect?

Aug 27, 2011

I draw a rectangle within another rectangle like this (I use it as a mask):

CanvasBorder.graphics.beginFill(0xf0ff00,0.1);
CanvasBorder.graphics.drawRect(100,100,550, 300);
CanvasBorder.graphics.drawRect((stage.stageWidth/2-Canvas.width/2),(stage.stageHeight/2-Canvas.height/2),250, 150);
CanvasBorder.graphics.endFill();

effectively its a 550x300 box with a 250x150 cutout.

Within one of my functions I need to resize the INNER 'cut-out' box from 250x150 to 150x100 - but keep the OUTER box exactly the same.

Normally when I'd resize a normal rectangle I'd do this:

rectangle .width = 150;
rectangle .height = 100;

View 1 Replies

ActionScript 3.0 :: Resize The Background Rect Shape According To The Text Label

Nov 5, 2009

Im creating a button, with a background rect shape and a text label. Im trying to resize the background rect shape according to the text label.For example, if my text label says "work" the background rect shape will be smaller then if my text label says "employment".

View 1 Replies

Flex :: Rect Rounded Corners Be Different?

Jun 21, 2010

When I use <s:Rect> to create a rectangle, I use radiusX to get rounded corners. Problem is all are the same roundedness. Is there something similar to Rect that lets me control the radius for each corner separately? If not, what's the best way to create this from scratch? graphics library or what?

View 3 Replies

Flash :: BitmapData.rect Creates A New Rectangle?

Jul 15, 2011

I was working on some blitting code today and after profiling it found that I was creating 1000s of new rectangles. I was shocked because I only had 1 or 2 different new Rectangle() calls or I was using the .rect property of BitmapData.

I started commenting out huge swathes of code until I was left with this code in my sprite class:

canvas.bitmapData.copyPixels(_bitmapData, _bitmapData.rect, destination, null, null, true);

I cached the result of _bitmapData.rect at object creation and my thousand of new rectangle calls were suddenly gone from the profiler.

Why the heck would BitmapData.rect create a new rectangle? Is there a way to check the core libraries or something and confirm this is true?

View 4 Replies

ActionScript 3.0 :: Detect Size Of Rect:rectangle In A Class?

Jan 29, 2010

From my main flex mxml, I am trying to detect the size of a rect:Rectangle that I created in my InfoBubble.as class. The info bubble itself is created in my InfoMap.as class. How can I access the attributes of the rectangle I created?

Here is the variable portion of the InfoBubble class:

Code:
public class InfoBubble extends Sprite
{
//public var textField:TextField;

[Code]....

View 1 Replies

Flex :: Converting Mxml Rect & SolidColor To Actionscript?

Mar 19, 2010

how to use actionscript over mxml for flexibility. I have this simple block of mxml that I'm trying to convert to actionscript, but I'm stuck half way though

<s:Rect id="theRect" x="0" y="50" width="15%" height="15%">
<s:fill>
<s:SolidColor color="black" alpha="0.9" />

[Code]....

What's the most efficient way to add the SolidColor in as few lines of code as possible.

View 2 Replies

Flex :: Rect Drawn With Graphics Appear Below Background Of BorderContainer?

Nov 2, 2011

In a Flex component that inherits from BorderContainer I'm overriding the updateDisplayList function to draw a rect:

override protected function updateDisplayList(unscaledWidth : Number, unscaledHeight : Number) : void
{

[code].....

View 2 Replies

ActionScript 3.0 :: Use TweenMax To Scale Up A Rectangle (instantiated As Rect) On Mouse Over?

Aug 28, 2009

i was trying to mess around with flash and I was hoping I would use TweenMax to scale up a rectangle (instantiated as rect) on mouse over, and then once it is scaled up I wanted to load an swf file to its center (the swf is called CircularPreloader.swf which is a fake preloader, just for messing around porpuse). Well, I tried but it didn't work cuz I kept getting this

error: TypeError: Error #1009: Cannot access a property or method of a null object reference.
at scaleUp_fla::MainTimeline/frame1()

Here's the code:

import gs.*;
import gs.easing.*;

[code]....

View 12 Replies

Actionscript 3 :: Prevent A Rect From Moving From Its Position When Decreasing Width?

Apr 12, 2012

I seem to be having problems with rectangles moving from their assigned positions when all I want to do is decrease their width.A game I'm working on simulates an explosive with a fuse. The fuse decreases in size as a clock counts down to 0.I think the problem has to do with local coordinates vs. global coords, but I'm not sure how to rectify the problem. Here is some code:

//fuse
_fuse = new Sprite();
_fuse.graphics.beginFill(0x000000);[code]........

Nowhere in my code does the x position of the fuse change.Aside from this one issue, the rect functions exactly how I want it to.

View 1 Replies

Actionscript 3 :: Set The Yellow Focus Rect To A Movieclip To Enable Tab Navigation?

Jul 26, 2011

How to set the yellow focus rect to a movieclip to enable tab navigation? This is my current code:

mymc.tabEnabled = true
stage.focus = mymc

View 1 Replies

ActionScript 3.0 :: Full Screen Source Rect And Onresize Event

Dec 19, 2008

So, I have my fullscreen working, selecting a rectangle to scale to. and everything is good there,.. the issue is that the I have an onresize event, that positions the entire sprite... so.. when it goes into fullscreen, it obviously fires the resize event, which inconveniently slides my content to the right, as it tries to recenter the content. any way I can make it so it doesn't fire the resize event.

View 3 Replies

Math :: Mapping Rect In Small Image To Larger Image (in Order To Do A CopyPixels Operation)?

Jun 16, 2010

I'm coding in actionscript 3 - the functionality is: large image loaded at runtime. The bitmapData is stored and a smaller version is created to display on the available screen area (I may end up just scaling the large image since it is in memory anyway).The user can create a rectangle hotspot on the smaller image (the functionality will be more complex: multiple rects with transparency: example a donut shape with hole, etc)

3 When the user clicks on the hotspot, the rect of the hotspot is mapped to the larger image and a new bitmap "callout" is created, using the larger bitmap data. The reason for this is so the "callout" will be better quality than just scaling up the area of the hotspot.The image below shows where I am at so far- the blue rect is the clicked hotspot. In the upper left is the "callout" - copied from the larger image. I have the aspect ratio right but I am not mapping to the larger image correctly.[code].....

View 2 Replies

ActionScript 3.0 :: Scale Or Resize The Image By Dragging And Resize Option?

Sep 19, 2011

I am working on image and i like to scale or resize the image by dragging and resize option.same working as "free transform tool" in flash (design part); i need same functionality in application.

View 7 Replies

ActionScript 3.0 :: Browser Resize Doesn't Trigger Resize Event?

Jul 7, 2011

I'm having a bit of a problem here. As per the title, my flash swf file works fine when tested from the IDE, but when I publish it and open it through the browser, the stage doesn't seem to resize along with the window.I post below a bare-bones example. The "back" movie clip should resize, only it remains at the starting dimensions

Code:
import flash.events.Event;
import flash.display.MovieClip;

[code].....

View 9 Replies

Flex :: Flash - Resize Children When Parent Is Resize?

Jul 29, 2009

I have Buttons which I have rotated vertically within a Canvas, that is working fine. The problem occurs, when the user resizes the window to a small size a vertical scroll bar appears, I would rather have each button squashed upto a smaller size.

<mx:Canvas xmlns:mx="http://www.adobe.com/2006/mxml" width="40" maxWidth="40" xmlns:myComponents="myComponents.*"
horizontalScrollPolicy="off"

[code].....

View 2 Replies

Flex :: Resize Event And Resize Effect Of A VBox?

Dec 8, 2010

I'm having a little issue with the resize event and resize effect of a VBox.

I have something like this:

<mx:VBox id="container"
backgroundColor="0xFFFFFF"
backgroundAlpha=".9"
paddingTop="15"
paddingLeft="15"

[Code]...

View 3 Replies

ActionScript 2.0 :: If Resize The Window Before The Swf Is Loaded - It Misaligns Until Resize

Jan 4, 2009

I have a main movie here that loads in an external swf through a container mc. everything is aligned and positioned to where it should be, and they are also set to that value onresize. the problem is, when my swf is loaded in, it works fine and is in the right position, same when you resize it. BUT, if you resize the window before the swf is loaded, it misaligns, until you resize!!

View 2 Replies

Flex :: Resize Datagrid On Browser Resize?

Sep 28, 2010

I have a datagrid that occupies 100% of browser screen. I want the grid to automatically resize when the browser is resized to small or full screen.

View 1 Replies

ActionScript 3.0 :: Can't Get Stage Resize Listener To Resize Movieclips In "main" Swf

Sep 9, 2009

I've got a large bitmap (1920 x1306) that my client wants as a bg image, scaled to the swf size on load (930 x 575); but that can "grow" up to its original size if/when a user expands the browser window. All the rest of clips in the display list are to remain in place (except for a copyright clip, which they want to always be 14 pix above the bottom of the browser frame. I've tried loading the bitmap dynamically at full size and then using scaleX,scaleY to set it's initial smaller (930x575) size, and I've tried just setting the height/width of the dynamically loaded image using the math of scaleX,ScaleY just in case the scaleX "transformed" the bitmap so that it couldn't return to its original size.  Both make the bitmap the right size. But the resize function below did  nothing to it, (or the copyright.y.) THEN I tried just putting the bitmap into the display list (both sizing methods work here, too). But even as an original member of the compiled display list, the resize event is still not reaching the target. Everything I've seen on the web says this should work - but...no luck.
 
Here's the AS3 code in the 1st frame of my swf:
 
import flash.display.Stage;
import flash.display.StageAlign;
import flash.display.StageScaleMode;

[Code]......

View 1 Replies

Flex :: Flex 3 Resize The Label And Text When Resize The Window?

May 11, 2010

i am creating flex 3 component when i re size the window i need to re size the labels and text.how to do this?

View 1 Replies

Resize A Document For Web Use?

May 5, 2009

I looked online on how to reduce file size od an .fla file for use on the web but not very clear. I have an .FLA file that is 800X600 px.  when I publish it, I reduce file size, audio to mono etc, and I am getting 1.8mb file, way to large for web use. I tried an swf and flv file but same results. I need to reduce the entire document. I read to use the onion skin the highlight everything then resize but I have over 5,000 frames in my movie. Can someone explain in detail, how to highlight all of the frames in the movie, and then reduce the file to say 400 X 300 px? I am able to drag the onion skin but only to the edge of the viewable document then I must scroll over and repeat the process. there must be an easier way to highlight all frames in the movie then resize the whole thing.

View 5 Replies

Resize Swf On Load?

Apr 13, 2010

I have swf, I want to resize it to fit browser window.So, that is width is always 100%, and height is proportional to width.[code]...

But, how can I now apply it to my swf file?

Like, i set its "id" to my "flash" (<embed src="final.swf" id = "flashme" )to pass it to the function, but I do not know how to alter params

View 2 Replies

ActionScript 3.0 :: Best Way To Resize SWF

Sep 3, 2009

I have a SWF with a video inside, later I loaded it into my website.I resized it with something like mc_loaded.width=stage.stageWidth and the same for height so i can get a fullscreen video.The problem is that this method takes a lot of the cpu performance and such.At least it becomes a bit laggy.Any idea on better ways to resize this SWF?

View 7 Replies

Flash 10 :: Way To Resize Swf

Oct 26, 2010

Can i resize swf to small size and make the data inside it take the same size ?

if i changed dimension "width and height" the data didn't change to the new size

View 0 Replies

ActionScript 2.0 :: Resize Flv With It?

Apr 19, 2011

I have an flv using the standard FLVPlayback component within my website. I want to be able to click a button to resize this player. Is this possible?

View 1 Replies

ActionScript 2.0 :: Resize From Top Of MC?

Oct 17, 2005

I want to Tween this mc I have, but when I Tween the height the it gets bigger on the bottom half, I want the top half to get bigger. Would I have to Tween the y position too?

View 9 Replies

Flash8 :: Swfobject - Can't Resize It?

Dec 28, 2009

Here is myattempt at using swfobject and alternate content:

Code:
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>[code]........

I seem to be getting closer to this, but I can't get it to NOT resize the swf!

View 4 Replies

Resize And Stage.stageHeight?

Jun 20, 2010

I have two problems. 1) the page still will not resize properly until the window is resized. I assume I have the code wrong somehow.

2) I changed the height of my menu object to stage.stageHeight, but its now coming up squished and only about 30% of the actual height of the stage. I am not sure what I did as it seemed to be working before, but I cant seem to fix it.

Code:
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
stage.addEventListener(Event.RESIZE, stageresizeListener);

[Code]...

View 6 Replies

ActionScript 2.0 :: How To Resize And Reposition MC

Nov 26, 2011

I'm trying to resize and reposition 'geschenke' which is a movie clip ... when you rollover the buttons a number will come out but since I resized the mc the positioning is off. How can I rewrite/use this code no matter what size the mc ends up being the positioning will scale with the stage.

this.createEmptyMovieClip("numbers", getNextHighestDepth());
for (i in geschenke){
zahl = Number(substring(geschenke[i]._name, 7, 8));
nummer = numbers.attachMovie("numbering", "numbering" + zahl, zahl);
nummer.stop();
[Code] .....

View 4 Replies







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