Flex :: 4.5 - Create A Resizable Bordercontainer With 8 Dots?

Dec 26, 2011

I would like to have a bordercontainer in Flex, that the user can resize on his own with 8 dots in the top left, top, top right, left, right, bottom left, bottom and bottom right (like MS Paint etc.) Does Flex have a default solution for this, or do I have to write it myself?

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Create A Resizable Photogallery Using A XML File?

Apr 7, 2005

I need to create a dynamically resizable photogallery wherein the menu is going to be placed beneath the image and land on a Y coordinate based on the size of the image.

The following links will help illustrate what I am attempting to accomplish:

[URL]

Though subtle, the example for 2.html places the numeric menu a few pixels south, and then might need to go north depending on the size of the following - or previous - image.

View 1 Replies

How To Create Dots Animation

Nov 1, 2011

I want to create animation like this. [URL]I don't know its create from actionscript or only simple flash.

View 1 Replies

ActionScript 3.0 :: Create A Simple Resizable Triangle That Can Be Controlled By 3 Handles On The 3 Corners

Jul 23, 2009

I am trying to create a simple resizable triangle that can be controlled by 3 handles on the 3 corners. However I also want the other handles to change their position based on how the length of a specific line changes. On the updateScreen function Ive created, I calculate the change in the length of a specific line depending on which handle is selected. I also calculate the point that is in the center of the triangle. As the length of a specific line increases/decreases, I want the opposite point to get closer/farther from the center of the triangle. Here is some example code from the .fla.

[Code]...

View 2 Replies

Flex :: Toggle A Mask To A Group In Flex (works For BorderContainer)?

Oct 6, 2011

Here's my test application:

<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"[code]....

I would expect the mask to be applied when the checkbox is selected, and removed when it issin't. But it doesn't seem to work.However, when you change to , it works like a charm. Can anyone explain to me why?

Note: In my actual application, i'm applying this in a skin to a component that is extending SkinnableComponent which can't use BorderContainer so a solution to this would be great.

View 1 Replies

ActionScript 3.0 :: Create A Flash Which Will Have Multiple Dots To Indicate Locations?

Jan 13, 2010

I am trying to create a flash wich will have multiple dots to indicate locations, on mouseover to these dots a panel will appear on the right hand side showing some related information.

View 1 Replies

Flex :: BorderContainer As Foreground Object

Sep 12, 2011

I am searching for a way to have my spritevisualelement have round corners so that it is displayed in a circular shape.The SpriteVisualElement contains a Video Stream from FMS to display but I do not want it to be rectangular.[code] But the Container keeps being in the background and the whole remote Video which is displayed in the "vid" (=id) is in the foreground.How can I set the Container to be in Foreground? then just setting whole application background would do the job.

View 1 Replies

Flex :: Change BorderContainer Background Color With AS

Oct 7, 2010

I'm trying to change the background color and or text color of a BorderContainer in flex 4 using Action Script, but have not idea how to. The Border Container component doesn't seem to have any properties like:
idname.color = "#333333";
idname.backgroundcolor = "#333333";
How might I go about doing this?

View 2 Replies

Flex :: BorderContainer Corner Rounding Only At Top Or Bottom

Jul 9, 2011

I need to round at only the top or bottom of a border container not all four corners, is their some CSS that I can use or do I have to create two new skins. I was reading their used to be a property for this for HBox back in the old days, is their not a property for BorderContainer now?

View 1 Replies

Flex :: Jerky Mouse Movement On BorderContainer

Sep 4, 2011

It seem when I trying to drag the bordercontainer to move along x-axis position on mouse down. It appear to move stable but became jerky when I drag a little faster.Any way to get bordercontainer move with smooth motion?[code]

View 2 Replies

Flex :: Set BorderContainer's BorderWeight, Contained Label Is Shifted?

May 22, 2011

I have a BorderContainer with a Label inside. I need this Label to be centered inside the container. BorderContainer has no layout (I guess it getst the default one, basicLayout...).

My code:
BorderContainer's definition:
<s:BorderContainer xmlns:fx="http://ns.adobe.com/mxml/2009"

[code].....

View 1 Replies

Flex :: Change Spark BorderContainer Default Height?

Sep 29, 2011

How to create horizontal layout container like HGroup but with border and border radius?In this example there is some default height:

<s:BorderContainer width="100%" borderWeight="2" cornerRadius="5">
<s:layout>
<s:HorizontalLayout/>

[code]....

I want it to have height of the heighest element in container. Like in HGroup. Add: Why is height for above example BorderContainer equal to 112 ?

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 :: Control The Depth (z Index) Of Bordercontainer In Flex?

Mar 3, 2012

i'm desperately trying to set my border container the highest z-index so it will always appear on top.

how can I know how many objects are in my flex stage, so i'll be able to set the bordercontainer the highest depth? what shell i write in the depth property in order the border container would always be on top? (it's important to mention that i created dynamic objects)

<s:BorderContainer includeIn="state2" width="200" height="200" backgroundColor="#992F2F"
horizontalCenter="-61" verticalCenter="23" depth.state2=currentState.num>
</s:BorderContainer>

View 1 Replies

Flex :: Collapsing A Spark BorderContainer Dynamically Does Not Collapse Its Children

Sep 2, 2010

protected function lbHideQuery_clickHandler(event:MouseEvent):void
{
if (lbHideQuery.selected)
{

[Code]....

View 1 Replies

Flex :: Spark BorderContainer - Draw Border For Specific Sides?

Dec 6, 2010

Is there a way to easily specify on which sides a border is drawn for Flex 4's Spark BorderContainer?[URL]But that uses MX styling which seems like a hack. Is there a better or 'correct' way without having to build a skin? It seems incredibly silly to build a skin for a 'Bordered' component when this is a very common use case.

View 1 Replies

Flex :: Flash Builder 4: Error #1009 In When Button Is Wrapped In BorderContainer

Sep 7, 2010

I have a component where a Button is wrapped in BorderContainer. I'm passing a custom property to the component at run-time to change the label of the button but Flex is reporting the following error:

Cannot access a property or method of a null object reference

When the error occurs, Flex highlights the following code:

myButton.label = value;

Here's the app:

// MyApp.mxml
<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"

[code]....

View 1 Replies

Flex :: Make A Window Not Resizable?

Apr 26, 2011

So I'm trying to open a second window that is meant to be a fixed size window. I've set resizable property to false but that doesn't seem to have any effect.

here's my sample code

Main app

<?xml version="1.0" encoding="utf-8"?>
<s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"

[Code]....

When I run this code, my expectation is that TestWindow should not be resizable. however I can resize it without any problem.

View 2 Replies

Actionscript 3 :: - Library To Make Draggable / Resizable / Rotatable Objects In Flex?

Apr 1, 2010

I would like to have in my Flex application the ability to post objects (for instance images or text items) where user can drag/drop for absolute positioning on the screen, resize it and rotate it (although not high priority). I'm wondering if there is a library that would do so out of the box or do you recommend implementing my own?

View 3 Replies

Flex :: Style Of Tabulation : Replace Spaces By Dots?

Apr 11, 2011

For a multiple choice questions, I would like to format text like this :

[Code]...

I tried with 3 labels in horizontal layout for each lines but it doesn't work for the third case.Now I use tabStops for alignment, it work well, but I can't find how to replace spaces by dots in a proper way.

View 1 Replies

Flex :: Resizable Grid Row And Grid Item

Sep 24, 2009

I have a mx:Grid component in my flex application. But I would like to resize it by clicking and dragging in the border. This component doesn't allow doing that.I want to put a panel in each gridItem of this Grid component and resize it.

View 1 Replies

Actionscript 3 :: Add Verticallayout To A Bordercontainer On Runtime?

Dec 10, 2011

I'm creating a bordercontainer on runtime:

var bcArtist:BorderContainer = new BorderContainer();
var imgArtist:Image = new Image();
var lblArtist:String = new String();
bcArtist.id = artistXML.pk_artist_id;
bcArtist.width = 75;
bcArtist.layout = VerticalLayout;

But the last line gives this error:

1067: Implicit coercion of a value of type Class to an unrelated type spark.layouts.supportClasses:LayoutBase.

View 2 Replies

ActionScript 3.0 :: BorderContainer - Get The Width That Is Visible On The Screen?

Jun 1, 2011

I'm programmatically creating a spark BorderContainer in ActionScript and filling it with a few labels. After I make it visible, it's width is 298 pixels. However, I only know this because I'm taking a screenshot and measuring the width. If I trace() the width, or explicitWidth, or measuredWidth, or getExplicitOrMeasuredWidth(), or getLayoutBoundsWidth() ... ad nauseum ... the reported width is always 42 pixels. Without fail. how the hell I can get the width that is visible on the screen? It's absolutely ridiculous how easy this should be, but isn't.

View 1 Replies

Actionscript 3 :: Make A BorderContainer To Listen For Scroll Events?

Aug 19, 2010

There is my scenario:

I have a BorderContainer that is contained by a Scroller.

Question :

How can i make my BorderContainer to listen for Scroler events?

e.g. When i scroll down or up, or right or left, i want to change my BorderContainer's cordinates(x, y).

View 1 Replies

Flash :: Tree ItemRenderer Can't Show Tiny TitleWindows Added To A BorderContainer In Renderer

Mar 14, 2011

I am facing some problem that I add some title widows to the ItemRenderer of tree. but some time tree don't show those tiny title windows in tree item-renderer.. is this the issue that tree re-use its renderers..(these windows are skinned like little cricles, and added specific to the data of item renderer.. these TitleWindows are added using addElement() to a s:BorderContainer in the renderer)[code]...

View 1 Replies

Flash :: Resizable MovieClip Component?

Jan 24, 2010

I was wondering if any one can be kind and help me, I was looking on google about a class or component in as3 that allow me to load an assets like a swf or image an give me so sort of handlers to change the size of the asset loaded, you know like in flash when you want change the size of a symbol you have a little squares handlers that you can pull to change the size, I don't want to reinvented the wheel, and I'm sure it should a be a class or component that I get or buy,

View 1 Replies

ActionScript 3.0 :: Flash - Set Window To Non-resizable?

Aug 4, 2011

How? :SS Or is that possible at all? :S

View 1 Replies

ActionScript 3.0 :: Aligning The Mc's On A Resizable Stage?

Jun 5, 2010

I have a movie clip (menu2_mc) containing a navigation menu, which I want to have appear always on the middle of the screen and at the bottom say 15 pixels in even when the window is resized.I followed a tut by kevin schmitt which allows the background to be fullscreen on a resize. I have been able to center the clip on screen but still having problems nutting out how to change the y coordinates on a screen resize.

[Code]...

View 2 Replies

ActionScript 2.0 :: Make A Resizable Textfield?

Sep 30, 2003

I have situation like two textfield, one for input and the other for output. Then there comes the problem that for single line input, I type a long sentance but when it shows in the output textfield(because the length is limited there), it only can show part of the text.

Is it possible to define the length of the output textfield change according to the input textfield? Or is it possible that when the input textfield has more text than the output textfield required, then the text shown in the output textfield automatically change into smaller font size?

View 3 Replies

ActionScript 3.0 :: How To Make Runtime Resizable TextBox

Aug 28, 2009

I am trying to make run time resizable textbox

var myLabel:TextField = new TextField();
myLabel.text = "The";
myLabel.autoSize = TextFieldAutoSize.LEFT;
myLabel.x=10myLabel.y=10myLabel.multiline=true;myLabel.type = TextFieldType.INPUT;
myLabel.addEventListener(Event.CHANGE, resizeHandler);
addChild(myLabel);function resizeHandler(evt:Event):void {
if(myLabel.width>200) {
myLabel.autoSize = TextFieldAutoSize.NONE
myLabel.width=200 myLabel.multiline=true; }}

When width is graeter that 200 cursor move to next line. It is not done

View 2 Replies







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