Creating Rounded Rectangle Outline Colour Issue

Hi all,
I am wanting to create a rounded rectangle, with an outline or boarder with a colour black (Or other colours). But i am unable to find where i'm able to add an outline colour as an option before drawing out the shape or after drawing the shape.
The only option i am able to do is changing the background colour of the shape created, and i was wondering if you are able to add an outline when creating or after creating a rounded rectangles or other shapes...
Thanks,
James

But i am unable to find where i'm able to add an outline colour as an option before drawing out the shape or after drawing the shape.
Styles -> Stroke.

Similar Messages

  • Rounded Rectangle Tool: Only creates outlines

    Desired solution:  a rounded rectangle filled with color #00628b, 40px high, 200px long.
    Situation:  The rounded rectangle tool produces an outline in the my foreground color.  I have been unable to make this tool create a rounded rectangle that is the color I listed above.
    Thanks,
    Confused_2_much11

    Pick the right tool in the options bar. (Ignore the pen – the choice is the same for the rounded rectangle.)

  • PSE 5: Creating a rounded rectangle not filled in.

    I want to create a rounded rectangle with the rounded rectangle tool, but I don't want it filled it with color, just outline / stroke.  I see it's been discussed here but I can't figure it out.  Any advance would be great.  

    Another way, in addition to the ways posted above, is to draw out
    your shape.
    Then go to layer styles and find the style set named visibility.
    There are three styles there: show, hide and ghosted. Pick the
    hide style and your color will be hidden. Then Alt+double click
    on the shape thumbnail to bring up the layer style settings
    dialog. At the bottom of the dialog is a stroke option, where you can
    choose your stroke color, size and opacity.
    The advantage of this way is you can edit the settings later by double
    clicking on the small fx beside the shape layer.
    If you wish to restore the color later, you can use the show style in the
    visibility layer style set.
    Later versions of photoshop elements work the same way.
    MTSTUNER

  • Bug report about create new footprint with Rounded rectangle in 3D info Bottom

    I create new footprint with rounded rectangle in 3D info Bottom,the rounded rectangle must be in bottom,but In fact,the rounded rectangle
    created in top layer.i think it's wrong.
    I used ultiboard 10.1.357.

    Hi,
    Thank you for reporting this. This has been a long standing issue with Ultiboard and we are looking into resolving this.
    There is a work around although a very inconvenient one. You can set the height to what you require and use a negative offset to move the shape to the other side of the board. The 3D shape will appear on the other side, but in reality is just shifted, not mirrored.
    Hope that helps. We apologize for the inconvenience.
    Yi
    Software Developer
    National Instruments - Electronics Workbench Group

  • How to create a rounded rectangle?

    I can't figure out how to create a rounded rectangle in Flash
    8... Any one
    want to help me with this?
    Best Regards,
    Chris Jumonville
    iMedia Web Design
    503.277.3553

    You can ignore this. I figured it out.
    Best Regards,
    Chris Jumonville
    iMedia Web Design
    503.277.3553
    "Chris Jumonville" <[email protected]> wrote in
    message
    news:ej6l1r$ano$[email protected]..
    >I can't figure out how to create a rounded rectangle in
    Flash 8... Any one
    >want to help me with this?
    >
    > --
    > Best Regards,
    >
    > Chris Jumonville
    > iMedia Web Design
    > 503.277.3553
    >

  • Rounded rectangle shape - save for web issue

    Hi, I made a rounded rectangle logo with radius=40 and when I save the file for web, shape appears with cutted edges. In .psd file everything looks fine, problem apperas only with save for web options (.jpg/.png). is this some bug, do somebody know how I can fix this?

    If this is a bug, I would either flatten or merge visible - making sure you have a pixel layer - even if it is blank, so the shape layers are rasterized before you save for web.  Just don't flatten it and save your original file!

  • Jagged edges when using rounded rectangle

    Hi,
    Hope someone can help me here.
    I am designing a website for myself (first timer) and have created menu bars and buttons using the rounded rectangle tool.
    The images look good but the edges are pixelated.
    I am using anti-alias and have also try feathered but to no avail.
    When I preview the site in the browser I can still see the pixelated edges (I assumed it might be a magnification or resolution issue)
    I am not using any images, have not extracted etc. I am simply using the rounded rectangle to create a menu bar and then colouring it in as a gradient, adding text and that's pretty much it.
    Any help given here will be greatly appreciated.
    Thanks,
    Eddie

    You shouldn't see anything in the browser that you don't see in Fireworks. If you have magnified your view by zooming your browser, then reset it to normal zoom. If that isn't the problem...
    One thing you can try is to make your navigation images 2 or 4 times larger than you want, export the files, import them and reduce them to 50% or 25%, depending. Sometimes, you can get what appears to be a smoother edge by reduction than you can with Firework's anti-aliasing of rounded shapes.

  • Confused on creating a rectangle and validating its size & position afterwards

    If one creates a rectangle in a layer like this:
    var childLayer = parentLayer.pathItems.rectangle(top, left, someWidth, someHeight);
    childLayer.stroked = false;
    childLayer.filled = true;
    After creating the rectangle, would one read it back like this:
    var bounds = childLayer.geometricBounds;
    alert("bounds: "+bounds[0]+","+bounds[1]+","+bounds[2]+","+bounds[3]);
    or should I use visibleBounds, or controlBounds? Or something else?
    I know if stroke not used or can exclude can use geometric bounds? Or rather all 3 bounds could be the same in that case?
    I'm confused right now because I'm assuming the bounds represent the four corners of the rectangle's position in the document and when read back out, the values (bounds[0] and bounds[1]) don't match against the top & left values originally passed in to create the rectangle. Shouldn't they be the same?
    If not, how am I supposed to validate that the layer/object uses the same top & left values for it's position as when the rectangle was created (for say validation purposes)?
    Also I assume I should be able to fetch the position of one corner using childLayer.top & childLayer.left as well right? For some reason, that doesn't match with top & left either.

    Using your code snippet, I get same values. I'm using Adobe Illustrator CS6 (64-bit).
    But using a slightly different snippet, adapted from original script code I'm working with:
    var doc = app.activeDocument;
    var finishedWidth = 6.74 * 72;
    var finishedHeight = 4.84 * 72;
    var top = (362.88 - finishedHeight) / 2;
    var left = (502.56 - finishedWidth) / 2;
    alert("orig left: "+left+", top: "+top+", width: "+finishedWidth+", height: "+finishedHeight);
    var trimLayer = doc.pathItems.rectangle(top, left, finishedWidth, finishedHeight);
    alert("done left: "+trimLayer.left+", top: "+trimLayer.top);
    var bounds = trimLayer.geometricBounds;
    alert("bounds: "+bounds[0]+","+bounds[1]+","+bounds[2]+","+bounds[3]);
    the results are off regarding trimLayer.left & trimLayer.right compared to the original top & left values passed in. But the bounds values are correct. From your code snippet, I checked the rect.left and rect.top & it's still correct.
    Here's the output of the alerts (with some rounding of values as opposed to what was displayed):
    orig left: 8.64, top: 7.19, width: 485.28, height: 348.48
    done left: 8.14, top: 7.7
    bounds: 8.64,7.2,493.92,-341.28
    and debugging the original script code, the script I'm working with, (the rect.left, rect.top and) the bounds don't match up, with a difference from 0.14 to 0.42 to the actual value it's supposed to be. Extracting the area of code that I'm debugging out (for generalization and sharing code) results in the snippet above, and for some reason there, outside the context of the full script, the bounds are correct but not the rect.left & rect.top. Unfortunately, can't share the rest of the code at present.
    Guess I'll have to investigate further, with help from my team's developers. At the moment I'm perplexed by these variations. Logically, from reading the code & scripting reference, I would have expected the values to match up in all cases.

  • How to make ROUNDED rectangle default style cp8?

    Hi,
    I want my smart shape style to be rounded rectangle, not squared. I have set up my object styles with color and all that good stuff, but there is no way I can see to make it the rounded shape instead of the squared off shape.  I also tried to change one on the properties panel thinking I could "apply to all" but that option is not available.  I am trying to use smart shapes as my captions in recording and it sure would be nice not to have to touch every single one and change it to rounded - defeats the purpose of styles, yes?
    Using CP8, latest version (I checked and there are no updates available), on a windows machine, 64 bit.
    Thanks!!!
    Kelly

    Rick, that option has effect on the captions inserted while creating a software simulation.
    @LMS_90 About which shapes as Text container are you talking? Object styles for Shapes do not include the 'form' of the shape. And at this moment, you cannot set such a form as being included in the default style, with the one exception that Rick points out: added text during a simulation capture.
    Even for Success/Failure/Hint shapes you cannot define that it always has to be a rounded rectangle. For Question slides, you can set them up in the master slides, and if you use always master slides with placeholders it is also possible. Quite a lot of the default themes have rounded rectangle shapes as text container for Title and Subtitle.
    Also in the Properties the 'form' is not part of the style: if you apply the default Shape Style that includes Stroke, Fill, Character properties, Margins, Shadow...but not the shape itself. That is the reason why 'Apply to all' cannot be used for the shape form.
    This is probably not the answer you expected, I try to change as much as possible in the Master slide.

  • Why are my rounded rectangles distorted?

    When I use the Rounded Rectangle shape on the Tools Palette, it is getting distorted in the PDF. The other shapes look good. I'm attaching a sample.
    I'm using FrameMaker 8.2p277. To create the PDF, I do File>Print and select Adobe PDF as a printer. On the PDF Options, I have selected the same joboptions that I've been using.
    I double-checked in Distiller and I do not have "Convert gradients to smooth curves" or "convert smooth lines to curves" selected. Those settings have caused trouble in the past.
    What else should I check?
    Thanks,
    Cheryl

    OK. I stumbled upon the answer. When creating a PDF by choosing the Adobe PDF printer in FrameMaker, I had to:
    1. On the Print Document window, select Setup button. That opens the Print Setup window, where I choose the Adobe PDF printer. Then I click Properties, which opens the Adobe PDF Document Properties window. On that window, the Default Settings shows "Standard". If I click the Edit button next to that, it opens the Standard - Adobe PDF Settings window. If I drill down on "Advanced" I can see that "Convert smooth lines to curves" is selected. So then I cancel out of that window, back to Adobe PDF Document Properties. On that window, I select my own joboptions for Default Settings, which I know does not have "Convert smooth lines to curves" selected. Click OK twice.
    2. Now, back on the Print Document window, I select PDF Setup. I make sure that my own joboptions is selected from the list and I click Set.
    Now, the file is generated properly and my rounded rectangles look perfect:
    If I omit either of those steps, then my rectangles are distorted. I think they look like worms that have been stepped on:
    To answer the others who responded to my posts:
    Sheila, I'm attaching a MIF file, just in case you're still curious.
    Shlomo--My Distiller is version 8.1.3.
    Thank you for your time.
    Cheryl

  • Colour issues LR3

    I shoot ijn Camera RAW on a Canon 5D2 in LR3 and I'm having colour issues; skin tones are often purple/magenta tinted and very difficult to correct. I usually set the WB to Custom and shoot a grey card and set the picture style on the camera to Neutral (why does the WB affect RAW images anyway, I thought it only operated on the jpgs?)
    On import, pics often look ok then resolve into higher contrast, garish colour versions which are less pleasing - have I set a preference incorrectly or am I missing something else?
    All help gratefully received
    Ian

    maninahat wrote:
    On import, pics often look ok then resolve into higher contrast, garish colour versions which are less pleasing - have I set a preference incorrectly or am I missing something else?
    When you first import, you see the small embedded JPEG the camera generates. This matches what you see on the LCD but is based on having the camera do the conversions which you're not doing. LR therefore has to build it's own high quality previews but more importantly, that is based on it's current default settings using it's own engine. So just forget what you initially see, you'd not get that unless you set the camera for JPEG.
    The key is setting up a custom default you prefer. You could pick a general DNG profile, move any of the sliders around etc and the, if you option click in Develop, the Reset button toggles to allow you to create a new default. From there you can of course adjust to taste. You'll still have to white balance and so forth but you should try to get a decent 'starting point' from Import on. For WB, might want to set the camera for Auto WB. Note this setting has no effect on your raw data! It's only a suggestion you can accept or alter. With Auto WB, you'll probably find more images come in looking closer to what you want then say forcing Daylight (which would look butt ugly IF those images were shot under Tungsten). Auto IS NOT PERECT by a long shot but since the setting doesn't affect the data, might as well try for something that gets you in the ball park.
    Using any card to WB (and you should use a white, not gray card) again is often just another starting point. You seasson to taste using Tint/Temp. And of course, if you shot a scene at sunset and did this, you'd kill the color expected at that time of day. Bottom line is, when you capture raw, the WB can be anything you wish, anything you think looks good. That would not be the case with a JPEG. If you set it, you're then kind of stuck with that rendering.
    Lastly, creating one or two custom DNG camera profiles can work wonders. Check out the X-rite Passport product. You'll end up with a really great target for balancing as well.

  • Round rectangle edges are blurred...

    I have seen people complain about this, but no work arounds. The blurry eddges I see on the rounded portion of round rectangles is awful. IS there a workaround?
    Graham

    It is currently a shape. The line I'm referring to is created dynamically using actionscript.
    [CODE]
    //----BLACK ROUND RECT BOX----//
    var square:Sprite = new Sprite();
    addChild(square);
    square.graphics.lineStyle(3,0x000000);
    square.graphics.drawRoundRect(0,0,425,250,36);
    square.graphics.endFill();
    square.x = 87;
    square.y = 35;
    [/CODE]

  • When I create a rectangle, I can not to change the shape of a rectangle with the cursor in illustrator CC 2014 For what?

    When I create a rectangle, I can not to change the shape of a rectangle with the cursor in illustrator CC 2014 For what?

    Xavigarcia,
    I am afraid you have come across the Live Rectangle bug which is limited to the MAC versions starting with 10.7 and 10.8, but not 10.9 (Mavericks) or 10.10 (Yosemite). Hopefully, the bug will be fixed soon.
    So a switch to Mavericks or Yosemite with a reinstallation might be the way to solve it here and now.
    To get round it in each case, it is possible to Expand the Live Rectangles to get normal old fashioned rectangles, or to Pathfinder>Unite, or to use the Scale Tool or the Free Transform Tool.
    A more permanent way round that is to create normal old fashioned rectangles, after running the free script created by Pawel, see this thread with download link:
    https://forums.adobe.com/thread/1587587

  • Rounded rectangle tool malfunction

    I have one particular image that I'm unable to apply the rounded rectangle tool to.
    Here's my steps:
    Flattened image.
    Double clicked to unlock.
    Created mask.
    Clicked on rounded rec.
    Clicked on solid fill.
    Set at 90pix ( radius )
    Pulled rounded rec tool diagonally across image.
    Created rounded rec shape obscuring image below.
    NOW COMES THE PROBLEM:
    Unable to activate rectangle "marching ants".
    Unable to click on inverse in Select.
    Unable to created separate rounded rectangle shape.
    I have done this successfully  with other images , but this one befuddles me.
    What am i missing here?
    Thank You.

    davidn46 wrote:
    I've already clearly stated what it is I want to do.
    I followed your steps If you look in the history palette you should see that I did. I do not see any problem that is why I wrote I do not know exactly what you did could you please post a screen capture of your problem, you wrote
    Here's my steps:
    Flattened image.  ------------------------------------------Third step in history
    Double clicked to unlock. -------------------------------- fourth step make background layer a normal layer
    Created mask. ----------------------------------------------  fifth step Add layer mask
    Clicked on rounded rec. ---------------------------------- does  not record in history
    Clicked on solid fill. ---------------------------------------- does  not record in history
    Set at 90pix ( radius ) ------------------------------------- does  not record in history
    Pulled rounded rec tool diagonally across image.---sixth step
    Created rounded rec shape obscuring image below.?? there is no image below there only the converted backgroung

  • Rounded rectangle set corner radius in pixels?

    If I create a rounded rectangle, is it possible to set a pixel dimension on the corner radius rather than dragging the handle and doing it by eye?
    Thanks

    Yes. Change from the default % to px in the Properties panel. You can also enter an exact radius in the Autoshape Properties panel if you use the rounded rectangle auto shape instead of a regular rectangle.

Maybe you are looking for

  • Changing a byte in a file

    hello, I have a .dbf file that has a wrong date in its header. The month is 00 instead of 01. I want to go in the file and change the third byte (thats where it stores the month) to 01 from 00. can I do something like this? FileChannel fc = new FileO

  • RFC returns different data of SE37

    I have a RFC that has a table of exit with two fileds of value (Gross Price and Tax Value). In the transaction SE37 returns the two fileds correctly. In the Web Portal (not SAP) when access the RFC with the same data, returns de same amount records,

  • Add Cloud Computer System error

    Hi Trying to 'Add Cloud Computer System' and it just closes down the app. Any ideas? Thanks

  • OS 10.3.1.156​5

    Unfortunately I have upgraded my z30 to bb os 10.3.1.1565.  I have stuck with BlackBerry over the last 7 years as the best phones for a business use but I feel that this latest update has taken too much of an android turn. As I spend a lot of time a

  • Ipod shuffle (2nd gen) causes XP to crash

    I have my ipod dock plugged into one of the usb ports in the back of my computer next to my wireless keyboard/mouse. When ever I go to dock the shuffle the computer crashes. When I start it up, it says 'keyboard failure'. I have to then remove the ba