Actionscript 3 :: Create HBox With Only The Top Corners Rounded In Flex?

Oct 27, 2009

I'm trying to create an HBox in flex that has only the top corners rounded. HBox (and all the other flex containers) have a cornerRadius style, but it applies to all corners. I'm not seeing a way to specify the style of individual corners.

Is there any built-in way to do this, or will I need to write my own custom drawing code to draw the background with rounded corners?

View 2 Replies


Similar Posts:


Actionscript 3 :: Create Flex Image With Transparent Border And Rounded Corners?

Mar 21, 2012

I have a photo in a Flex project[code]...

But now I'm wondering if I can make this image as the image below, in Flex (4 / 4.5 / 4.6) (in MXML and/or ActionScript 3)

View 1 Replies

Progressbar - Flex HBox With Background Color And Rounded Corner?

Jun 7, 2011

I am facing a wiered problem in Flex. I Have a canvas with a HBox and Label. Please find the code below.

<mx:VBox verticalAlign="top" horizontalAlign="center"
fontSize="12" fontWeight="normal" verticalGap="0">
<mx:Label text="Cover" />
<mx:Canvas width="120" styleName="pbcontainer">
<mx:HBox id="pb" height="35" />

[Code]...

View 1 Replies

Flex :: Progressbar - HBox With Background Color And Rounded Corner?

Nov 10, 2006

I am facing a wiered problem in Flex. I Have a canvas with a HBox and Label. Please find the code below.

<mx:VBox verticalAlign="top" horizontalAlign="center"
fontSize="12" fontWeight="normal" verticalGap="0">
<mx:Label text="Cover" />

[code]......

View 3 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

Flex :: Adobe Catalyst: Rounded Corners?

Dec 26, 2009

I've created a rectangle in catalyst and under the "properties" panel, all I can see is Corners 10 for the rectangle. Is there a way to individually define each corner similar to CSS. I can't see any source code view in catalyst to enable me to fine tune it for each of the 4 corners. How do I specify the roundedness of each corner separately?

View 1 Replies

Actionscript 3 :: All Rounded Corners TitleWindow In Flex?

Jun 30, 2010

how can i get a title window with all rounded corners, so that i may make it whole round or circular shape ?

View 2 Replies

Flex :: Rounded Bottom Corners On Window?

Sep 30, 2010

I'm making a flex 3.5a/air2 application and I've made a popup window but I can't seem to get its bottom corners rounded. Setting cornerRadius seems to only affect the top corners. There doesn't seem to be a roundedBottomCorners property like there is for panels, and adding a controlbar with a cornerRadius also has no effect.

View 2 Replies

Flex :: Make The Rounded Corners Of The Client App In WindowedApplication?

Apr 2, 2010

In my application,showFlexChrome is set as true in WindowedApplication,and the *-app.xml is setted as follows

<systemChrome>none</systemChrome>
<transparent>true</transparent>
<visible>true</visible>

I know how to make the top border rounded corners with follow codes:

borderStyle="solid" cornerRadius="8"

But I cannot find a method to make the bottom border of my app window rounded-corner.

View 1 Replies

Flex :: Can't Show Rounded Corners On Custom Panel Skin?

Aug 12, 2011

I wanted to change the background color of my Panel title area and I discovered that I needed to create custom skin or skin extender to accomplish this. So I created a skin called myPanelSkin based upon the Spark.PanelSkin. My background color works fine but it will no longer show the cornerRadius defined either on the component or in a styleI then tried another approach and simply created a new skin as an exact copy of the Spark.PanelSkin. It also looses the cornerRadius.

View 2 Replies

Draw A Triangle With Rounded Corners?

Nov 23, 2002

It's easy to draw a round cornered rectangle/square but how do you draw a triangle with rounded corners?

View 4 Replies

IDE :: Can't Get Rounded Corners On My Rectangle Tool To Go Away

Feb 7, 2004

I'm trying to get plain straight corners on a rectangel. I have been drawing a rectangle or even before drawing one, selecting the little tool in the lower left and I put in a value of 0, but as soon as I draw anything it rounds up again. How do I get rid of this problem??

View 2 Replies

ActionScript 2.0 :: How To Draw Box With Rounded Corners

Jul 16, 2004

I need to draw a box with rounded corners. I can't get a hang of it. I want to draw it from the following variables:
boxwidth = 200;
boxheight = 200;
radius = 5;
How do I draw this? You should see the artwork I have (by mistake) created while trying to get it right.

View 7 Replies

Flash :: Css3 - Rounded Corners Not Displaying Over Top

Nov 16, 2011

I have a bookmarklet that has rounded corners. When using the bookmarklet over the top of a flash website and even a pdf document (I think) etc. Rounded corners appear as transparent squares.

View 1 Replies

Actionscript 3.0 :: Draw Triangle With Rounded Corners?

Dec 19, 2008

Is there a simple way to draw a triangle with rounded corners in AS3?

View 1 Replies

Actionscript 3.0 :: Draw A Triangle With Rounded Corners?

Oct 7, 2009

Draw a Triangle with rounded corners?

View 2 Replies

ActionScript 3.0 :: Draw Rectangle With Only 2 Rounded Corners?

May 23, 2009

is it possible to draw a rectangle specifying which corners should be rounded and which not in a simple manner?

View 3 Replies

ActionScript 2.0 :: Flash Satay .swf Rounded Corners?

Jun 12, 2010

I was wondering how to use the container .swf required by Flash Satay to also display rounded corners of a fixed size.

View 1 Replies

ActionScript 3.0 :: Drawing Irruglar Shape With Rounded Corners?

Jan 7, 2010

i have been tasked to create a rollover state that has dynamic irregular shapes that surround the movieclip target. The target is always a rectangle and the shapes will look roughly like:I think i will have to draw this old school without using the easy predfined shape classes. I first thought about doing two rounded rectangles to fake it, but the line cross over (pointing green arrow) will overlap. Anyone have ideas on how to approach this? If i go with the drawing api, is there a formula to working out the rounded curveTo angles on the corners to always be the same radius?

View 2 Replies

Css :: Properly Set Corner-radius Of A MX List And Get Rounded Corners?

Apr 8, 2011

I have a mx.components.List component with a bunch of custom styles:

<mx:Style>
.dropDownListStyle
{

[code]....

I'm creating the list in AS:

_dropDown = new List();
...
_dropDown.styleName = "dropDownListStyle";

The List is then added as a popup with PopUpManager:

PopUpManager.addPopUp( _dropDown, this );

The problem is that the corners of the newly created popup are not rounded. I found that border-style is needed in order to get the effect, but adding this property didn't help. I'm building the project with Flex 4.1, but the List and its parent are MX components and it's a lot of work to migrate them to Spark.

View 2 Replies

ActionScript 3.0 :: Scale9grid A Button To Preserve Its Rounded Corners When Resizing?

Aug 24, 2009

I am trying to scale9grid a button to preserve its rounded corners when resizing but I have run into trouble.The button is an ordinary Button symbol and it has 4 layered states (Up, Down, Over, Hit).In each layer there are some shapes (the outer button border, two background shapes inside the button for shading and then some extra outer border shapes to create the pressed down effect). The button contains no other elements,not even a textfield (the textfield is on the same level as the button).

The button is inside a movieclip (which also carries the textfield) that is of the same size as the button and is resized as by Adobe design when the button is resized (i.e. I am never manipulating its size).The Button is 35 high and the textfield is 25 high. They have their registration points both centered and placed at the the same coordinate.I use the follow code to resize and scale9grid the button:

popup.btnLoginButton.width = popup.btnLoginText.width + 20;
popup.btnLoginButton.scale9Grid = new Rectangle(10, 5, popup.btnLoginText.width, 15);

The above scale9Grid throws a Error #2004: One of the parameters is invalid.The same error occurs unless the Rectangle parameters are very small - for example Rectangle(5, 5, 5, 5) even though the textfield is much longer. But when the Rectangle is that small of course no scale9grid scaling is taking place.

View 2 Replies

Flex :: Create Wobble Effect For A Component (VBox/HBox)?

May 11, 2011

how can we create a wobbling effect using flex 3?I need something like the effect which is show in ubuntu when we see an alert or move a folder.

View 1 Replies

Flex :: Graphics - Create A Rounded Rectangle With A Dashed Line?

Jun 14, 2010

How can I create a rounded rectangle with a dashed line? I've seen several routines that draw their own straight lines, but nothing for rounded rectangles.

View 2 Replies

Flex :: Hbox HorizontalScrollPosition Not Working?

Jan 12, 2010

I am applying hb.horizontalScrollPosition = value and it does not work withhorizonalScrollPolicy = on/off. Is there any other way to achieve this?

View 1 Replies

Flex :: Set The Hand Cursor On A HBox?

Aug 12, 2011

I'm trying to set the hand cursor on a HBox. I've tried buttonMode and useHandCursor but have had no luck. This example displays the busy cursor. how to make it display the flashPlayer's hand cursor?

<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:components="com.dn2k.components.*" >

[code]....

View 4 Replies

Flex :: Change Size Of An HBox In Flex To Fit It's Container?

Jul 28, 2010

I create an HBox, fill it with a grid of buttons, and set the scroll policy. When I resize the window, the stage changes size, and so does the HBox ... to a point. Once it reaches the height of the Grid it contains, it stops shrinking, like it has a "min-height". This ruins the scrollbar that I'm trying to establish in this case.

I've set the height to 100%, shouldn't it always take the height of the stage, it's parent?[code]....

View 2 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 :: Center Align A Button In A Hbox?

Oct 7, 2009

I have a VBox inside which I have 4 HBoxes. The second level HBox is initially hidden.When I click the label, 'Show more Options', the second level HBox is displayed.Now I have the space occupied by the 'second level HBOx' empty and the 'search' button appaers below the space.My first question is, Is there a way to position the Search Button in such a way that, the space is not there and after the 'Show more Options' label is clicked, the 'Second Level HBox' appears?And the second question is, Can I position the Search Button at the center of the page. Is there any method to center the contents of a HBox of a VBox?This is my code:

<mx:Form x="47" y="219" width="80%" >
<mx:VBox id="searchBox" >
<mx:HBox id="searchTitle" width="100%" height="20" backgroundColor="#2680D5">

[code].....

View 3 Replies

Flex :: Fill An HBox In From The Right - VBox From The Bottom?

Jan 27, 2010

I only really need the HBox answer but figure that if we get a good answer in here I'm trying to do a similar thing with a VBox. It would be nice to know this in both actionscript and MXML. So I have an HBox that I want some text aligned from the left and some radios from the right. Like so:

[CODE]...

View 2 Replies

Flex :: Button Behind Transparent Hbox Unclickable?

Feb 15, 2010

I have a HBox with no background, but with some children. Behind the HBox is a button which need to be clicked. The button is unclickable at the moment because the HBox is on top of it. I need the button to be clickable and still have the HBox on top of it

View 1 Replies







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