ActionScript 3.0 :: Contain Rectangles With Scrollable Container?

Jan 17, 2010

I created a small rectangle and made it into a symbol movie clip. then I went inside of it and added a small 100x100 image on the left side along with a description of the image on the right side filling up the rest of the space.

I now want to somehow put it in a container that will automatically add a vertical scrollbar on the right side and somehow add more rectangles on top of each other. perhaps the scroll bar wont be initially on the screen until the container fills to have more than 5 rectangles in it or so.

Is there a component I can extend somehow to add this kind of functionality or does one already exist that I can use?

View 3 Replies


Similar Posts:


ActionScript 3.0 :: Draw Multiple Rectangles With Mouse And Allow Exclusion Of Individual Rectangles

Mar 28, 2010

I have the following AS code to draw a single rectangle using mouse, but I need a different code that allows drawing multiple rectangles and the selection/exclusion of individual rectangles like a modeling tool (eg.: MS Visio).

View 2 Replies

Actionscript 3 :: Add Rectangles To Get The Bounds Of All The Rectangles

May 18, 2011

Is there a way to add a grid of rectangles together so that you can get a "container" rectangle (the bounds) of all the rectangles put together?

View 1 Replies

Flex :: Prevent Container In ItemRenderer From Exceeding Width Of List Container?

Jul 2, 2011

In a Flex Mobile project I have a simple itemRenderer where I'm trying to create an "bubble" texting effect, similar to ichat or iphone (just so you get what im going for). But if the text is longer than the screen it runs off, rather than just going down a line.

If I set Group thats holding the rectangle(to create the bubble effect) and the label to 100% it works and keeps it from exceeding the list containers bounds, BUT the group is always at 100% and looks bad, I'm trying to keep the "bubble" JUST AROUND the text.

Anyway so, at the top of my itemRenderer I tried specifying:

<s:ItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark" width="100%" height="100%">

And here's my layout I figured since msg_container has a width of 100% I was hoping bubble_lable_group would just not exceed that but...it doesnt...it just runs off. I tried setting a max width but that does not allow you to input percents. And just to say it 1 more time. I know if i set bubble_lable_group width to 100% it works, and keeps it from going off the edge, but then the rectangle "bubble" stretches all the way across and just looks bad.

<s:VGroup id="main_container" horizontalAlign="left" paddingBottom="10" paddingTop="10"
verticalAlign="top" width="100%">

[Code]....

View 1 Replies

Professional :: Run Project (main Container SWF And Child SWFs) Into Another Container File Which Place On A Website?

Jun 17, 2010

I am facing a issue in Flash container. I am having a project which has main container which call different SWFs into it. Now I call this main container file into another container, and their problem starts. Many option doesn't work properly which generally have _root, _parent etc...
 
If I want to run project (main container SWF and child SWFs) into another container file which place on a website. I want to show whole project from this container file so what I need to do?

View 1 Replies

Flex :: Dynamically Adding Container To A Dynamic Container

Sep 21, 2011

I have a loop that goes through data from a book and displays it. The book is not consistent in it's layout so I am trying to display it in two different ways. First way(works fine) is to load the text from that section in to a panel and display it. The second way is to create a new panel (panel creates fine) and then add collapsable panels(nested) to that panel. Here is the code from the else loop.

else if (newPanel == false){
// simpleData is just for the title bar of the new panel
// otherwise the panel has no content

[Code]....

The error I get is: ReferenceError: Error #1069: Property panel4.4 not found on components.readTest and there is no default value.

I have tried setting the "name" property instead of the "id" property.

View 1 Replies

Actionscript 3 :: Random Point Between Two Rectangles?

Jan 16, 2011

I'm making a top view zombie survival game in AS3. I want to spawn the enemies in waves defined by "frames", or the difference between a bigger rectangle and a smaller one within it, like a picture frame. Right now here is my code, which is pretty inefficient. I was wondering if there was a better way. This code doesn't work right either, all the enemies spawn in the bottom right of the screen:

public static function waveOne():Point {
var inner:Rectangle = Waves.WAVE_ONE_RECTANGLE_1;
var outer:Rectangle = Waves.WAVE_ONE_RECTANGLE_2;[code]....

View 1 Replies

Actionscript 3 - What Is The Box Model For Flash Rectangles

Jun 29, 2011

In CSS, we have a box model to define how border, margin, padding, and fill contribute to the total width and height of a rectangle. I'm porting some of my HTML/CSS design into Flash and can't quite figure out what Flash's box model is. In Flash, I've created a rectangle with gradient fill and a non-scaling 1 pixel stroke. I'm trying to get pixel-perfect positioning and sizing, but the experience has been unpredictable. I'm not really seeing a pattern to the following questions. The answer really changes depending on the exact circumstances.

When you set x and y both to be 0, where does the border lay? Is it off the screen? Is it being cut in half by the origin? Or is it completely visible?When you set width to 100, is the fill 98 wide or 100 wide?What happens to the 1px thick border when the rectangle is not positioned at whole number coordinates?

Example:

var sh:Shape = new Shape();
sh.graphics.lineStyle(1.0, 0x00FF00, 1.0, false, LineScaleMode.NONE);
sh.graphics.beginFill(0xFF0000, 1.0);
sh.graphics.drawRect(0, 0, 100, 100);

[code]....

I tried to create a 100x100 square at x:10, y:10. When I measured the total width and height in Photoshop, it came out to be 101x101.One would either expect the final dimensions to be 100x100 (border on inside) or 102x102 (border on outside).

View 2 Replies

ActionScript 3.0 :: How To Draw Grid Of Rectangles

Oct 9, 2009

I have been learning how to draw rectangles. How would I draw a grid of rectangles so each is separated by some spacing? For example 4 col x 3 rows.

View 9 Replies

ActionScript 3.0 :: Dynamically Add Rectangles To The Stage?

Jul 21, 2010

I'm trying to develope a simple game, but i'm facing a problem, that I think it is simple for yours who have experience in AS3.I trying this:

Quote:
...LOOP.........
var dynamicObj:MovieClip = new MovieClip();

[code].......

View 3 Replies

ActionScript 2.0 :: Multiple Rectangles Size And Pos?

Mar 22, 2004

I have 5 rectangle mc's. All different sizes and different positions.

I have a final size and position.

I want to click on 5 different buttons and make the corresponding mc grow and move to the desired final size.

View 14 Replies

Flex - Hide Container Of A Viewstack Container?

Dec 23, 2010

I have a viewstack container w/ 3 views: red, black, and blue. How can I completely hide the black & not include it?

[Code]...

View 2 Replies

Flex :: Drag Circle From One Container To Another Container?

Jan 13, 2012

I am creating an flex Air project,so mxml file will run. I have circles in one Big circle at one side and will be same on other side.

Now how to drag any circle from any Big circle to other side. Or it could be like any two container having circles, then how to drag and drop circle?

For one circle i am able to do drag and drop.But I want one Big circle on left hand side and one big circle on right hand side .And small circles with class names will be in these big circles.Now i want to drag and drop those small circles in big circles.Big cicles should not move. Even i have tried this code in actionscript

package
{
import flash.display.Sprite;
import flash.events.MouseEvent;

[Code].....

But in this i want big circles should not move and small circles should only be dragged.

View 1 Replies

ActionScript 3.0 :: Scale Container In Another Variable Container?

May 6, 2010

I need to place an image into a container. The problem is that I will not know the size of the image or the container beforehand, so it all has to be dynamic.this is how I started (have not gotten to stage(or container) changing size yet. No matter what I try, either all the images are the same width, or they are all the same height. If some images are portrait and other landscape, I don't want all the images to be X pixels high. In this variation of the code, all the images turn out the same height, regardless of portrait or landscape.

ActionScript Code:
var ratio:Number = container.width/container.height;//get the ratio, if width is bigger than height then ratio is greater than 1, else ratio is smaller than 1

[code]........

View 0 Replies

Professional :: Drawing With A Pencil - Circles And Rectangles?

Jan 21, 2012

When I am drawing with a pencil, the line looks like the shape I want to draw, but when I stop drawing, the shape reshapes to another shape whick looks like circles and rectangles = it does not look like the shape I wanted to draw. What is the problem?

View 1 Replies

Professional :: Rectangle With Arbitrary Number Of Rectangles?

Mar 27, 2012

I'm trying to figure out how to tile a rectangle (the stage) with an arbitrary number of rectangles. Simple tiling where all the tiles are the same size and simply stacked in a grid.I'm doing this with a resizable layout and a number of tiles that is arbitrary and will change over time.

Given a more or less 4:3 or 16:9 monitor I would like a solution that tends toward minimizing the perimeter of the tile and being similar in aspect ratio to the screen. I realize that if I have a prime number of tiles that I won't be able to make a nice grid, but other than that it seems there should be some way to do this.Lets say I have 231 tiles I need to arrange. The factors are 1, 3, 7, 11, 21, 33, 77 and 231.If the screen is really, really wide 1 x 231. Wide but not not as crazy wide as before 3 x 77. And most likely 11 x 21 is what I would need.So is there an easy way to do this on the fly? Is there a pre-calculated way to make it easy?

View 1 Replies

ActionScript 3.0 :: Creating A Series Of Solid Rectangles?

Jul 13, 2009

Fairly new to ActionScript 3. I am creating a series of solid rectangles which will be acting as butttons for my site, a new rectangle is created by looping through an XML List, 1 rectangle for each title in my List. They will be displayed 1 above another down the left hand side of my screen.

What I want to do, if possible, is create a vanishing point on the right hand side of my screen which the rectangles will use to alter their perspectives.Obviously the rectangles with a far different Y position to the vanishing points, will display with a greater perspective.

View 2 Replies

ActionScript 3.0 :: Find If Two Rectangles Are Intersecting When Rotated?

Aug 9, 2011

I have two sprites that are drawn as rectangles. I want to know if the rectangles are intersecting. I run into trouble when the objects rotate.

View 2 Replies

ActionScript 2.0 :: Removing Rectangles Drawn Using Code?

Aug 11, 2011

I have written code to draw a rectangle around each movieclip on the stage when the user clicks a "Show Hotspots" button in the movie. However, when the user (me in this instance) clicks the button a second time, I want those drawn rectangles to disappear. How do I clear a rectangle that is created through code?

View 4 Replies

ActionScript 2.0 :: XML Drawn Rectangles To Movieclip Array?

Dec 27, 2007

I am using an external custom class to draw xml driven shapes in a movieclip. take a look at [URL] for a better idea of what I am working on. I am looking to turn each shape (which would be a booth) into a button...so that I can click each booth and have some info come up about it. I am having a hard time calling the array from the main movie.

View 1 Replies

ActionScript 3.0 :: Draw Random Colored Rectangles

Jan 20, 2011

I am trying to draw random colored rectangles. I want to have them everywhere. Repeat them at X and Y. Its just repeating at X. Dunno why it dont want to take "for loop" at Y position

[Code]....

View 6 Replies

ActionScript 3.0 :: Making Rectangles & Collision Detection

Mar 28, 2011

Although, The amount of material online is quite confusing, As there usually is more than one way of doing a task. The part that i am up to is making collision detection work. Let me explain some background first, so you can understand how im trying to make it work. Steps

[Code]...

View 4 Replies

ActionScript 2.0 :: Multiple Rectangles Size And Position?

Mar 22, 2004

I have 5 rectangle mc's. All different sizes and different positions.I have a final size and position.I want to click on 5 different buttons and make the corresponding mc grow and move to the desired final size.

View 14 Replies

ActionScript 2.0 :: Drawing API - Rectangles Replication / Echoing

May 11, 2004

I have a pretty simple script that allows you to draw multiple rectangles using the drawing API in MX. I need to create multiple MC containers, so that I can later do other functions to these areas. Now, why the rectangles are drawing in the way they are. If you copy this script into a blank file and run it, you'll see what I mean. Why is it duplicating/replicating/echoing as you draw? If you debug and list Objects, it is creating the MCs properly, so where are these other lines coming from?

Code:
drawLevel = 0;
drawOK = "yes";
this.onMouseDown = function() {
if (_root.drawOK == "yes") {
this.createEmptyMovieClip("rect"+drawLevel, drawLevel);
[Code] .....

View 5 Replies

ActionScript 2.0 :: Draw Lines Or Rectangles With A Commandline?

Jul 17, 2002

Is there any possibility to draw lines or rectangles with a commandline in ActionScript?

View 4 Replies

ActionScript 3.0 :: Slice Image Into Random Number Of Rectangles?

Jun 21, 2010

I want to create animation. I want to slice image into random number of rectangles (it can't be squares) and I want to animate all of this rectangles at once.

View 2 Replies

Actionscript 3 :: Better Pack Rectangles Tangent To A Sphere For A 3d Gallery?

Mar 16, 2011

I am creating a 3D sphere gallery with ActionScript 3 and the Flash 10 3D (2.5D) APIs. I have found a method that works but is not ideal. I would like to see if there is a better method.

[Code]...

To see this in action, click here. alternate link. Notice that with the default settings, the number of items actually in the sphere are less by 13. I believe is the error introduced by my approximation in the first step.

I am not able to figure out a method for determining what the exact radius of such a sphere should be. I'm hoping to learn either a better method, the correct method, or that what I am trying to do is hard or very hard (in which case I will be happy with what I have).

View 2 Replies

ActionScript 3.0 :: Randomly Place X Number Of Rectangles On Stage?

Aug 13, 2009

how could I randomly place x number of rectangles on stage so that they dont overlap?
not tween, just place?

View 0 Replies

ActionScript 3.0 :: Split Rectangle Into N Smaller Rectangles And Then Recombine?

Aug 23, 2010

We have a 100 by 100 px square.

How would one split this up into N number of random x/y rectangles?

And more crazy, how could you then position these back in order?

I checked out 2d Packing but its not really what im after.

View 0 Replies

ActionScript 2.0 :: Filled Rectangles That Have Been Created By Attached Lines?

Dec 14, 2005

I have a fla wher you in a rectangle can put in columns and rows by clicking buttons. Now I want that if you click in one or the smaller rectangles created by the columns and rows, this rectangle shal be filled with a color. I also want to know how many of the rectangles are filled.The meaning is that the user shal visualize a fraction and the as shal be able to know if its right.

View 3 Replies







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