Create shape with round and square corners

Hi all
I haven't used illustrator for a while so I'm really stuck on soemthing that should be simple.
I want to create a shape that has round corners on the bottom and square cormers at the top.
I have created two shapes, one with round corners and one with square one.
I was hoping to put them together then use the pathfinder to unite them but this then make the round corner square.
Is it possible to unite shapes with different corners.

myttmt,
Or create a rounded rectangle that is one corner radius too high, press C (Scissors Tool) and cut at the top of the straight sides (first right then left), press V to switch to the Selection Tool and delete the selected top cut, then select the remaining part and Ctrl/Cmd+J to join.
The bottom rounded rectangle thread lives. Or is it the tanker cross section thread?

Similar Messages

  • Create View  with Force and No Force

    Can Anyone Tell me how to create view with force and no force i have very little idea about this

    This is the syntax.
    CREATE [OR REPLACE] FORCE VIEW view
    [(alias[, alias]...)]
    AS subquery
    [WITH CHECK OPTION [CONSTRAINT constraint]]
    [WITH READ ONLY [CONSTRAINT constraint]];You can see interesting threads about this topic here.
    Re: Creating view forcibly
    Creating View forcefully
    Cheers
    Sarma.

  • Create Window with Textbox and Button For getting Input Value

    Hi All,
    I have create plugin application but i want to take input from user. Therefore i want to create window with textbox and button.
    please may i get solution...

    Or if that's all you need to do, just use JavaScript or a form.

  • Can anyone recommend an alternative software programme to Pages? I have an OS X 10.7.5 macbook pro, so I am unable to get it. I want a programme that I can create docs with pictures and text on, invitations, posters etc. Many thanks in advance-..

    Can anyone recommend an alternative software programme to Pages? I have an OS X 10.7.5 macbook pro, so I am unable to get it. I want a programme that I can create docs with pictures and text on, invitations, posters etc. Many thanks in advance…..

    LibreOffice

  • I am creating webpages with frontpage and trying to make collapsible lists. The lists collapse and work correctly in "preview" mode, but do not work when accessed through firefox or explorer 8. Does anyone know what I am doing wrong?

    I am creating webpages with frontpage and trying to make collapsible lists. The lists collapse and work correctly in "preview" mode, but do not work when accessed through firefox or explorer 8. Does anyone know what I am doing wrong?

    Welcome to the 'wonderful' world of HTML5 e-learning.
    In my view, from the issues I am seeing everywhere, HTML5 output from rapid e-learning tools such as Captivate is not ready for the kind of mobile device e-learning you want to develop.
    Sorry to be pessimistic, but you may need to consider going back to the drawing board and coding it from the ground up.

  • Round and square brackets in regexp

    Hello,
    Can someone please explain to me what is the difference between:
    SELECT REGEXP_INSTR('aoeeeeo','(i|e)o') position FROM dual;
    and
    SELECT REGEXP_INSTR('aoeeeeo','[ie]o') position FROM dual;
    I mean, what is the main difference between round brackets with the alternation operator and square brackets in regular expressions?
    Thank you very much,

    It will perhaps be clearer if you look at it with more than just single characters...
    SQL> select regexp_replace('this is fred and his test string', '(is|and)','XXX') from dual;
    REGEXP_REPLACE('THISISFREDANDHISTES
    thXXX XXX fred XXX hXXX test string
    SQL> select regexp_replace('this is fred and his test string', '[isand]','XXX') from dual;
    REGEXP_REPLACE('THISISFREDANDHISTESTSTRING','[ISAND]','XXX')
    thXXXXXX XXXXXX freXXX XXXXXXXXX hXXXXXX teXXXt XXXtrXXXXXXg
    SQL>The round brackets allow you to specify whole strings whereas the square brackets allow you to specify sets of individual characters.
    Therefore in my first example it looks for IS or AND and replaces those.
    In the second example it looks for any occurence of the characters I,S,A,N,D and replaces those.

  • Creating shapes with blend modes in actionscript 3

    Ok I'm having a lot of trouble with ActionScript 3. I'm supposed to make five buttons that when clicked show a different blend mode using 2 or more shapes. Each of these blend modes also has to have a text box explaining what the blend mode does.  The assignment requires only one layer which is the actions layer. Everything has to be made using script only, which is why I'm having so many problems.
    Can someone please help me with this and simplify it has much as possible. I need to have some sort of answer sometime tomorrow. I thank anyone who helps.
    I have this code so far.
    import flash.text.TextField;
    import flash.text.TextFormat;
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.MouseEvent;
    import flash.display.Shape;
    //create button instances
    var btn:darkBtn = new darkBtn;
    var btn2:invertBtn = new invertBtn;
    var btn3:overBtn = new overBtn;
    var btn4:screenBtn = new screenBtn;
    var btn5:subBtn = new subBtn;
    //add our interface objects to the main display list
    addChild(btn);
    addChild(btn2);
    addChild(btn3);
    addChild(btn4);
    addChild(btn5);
    //button positions
    btn.x = 12;
    btn.y = 395;
    btn2.x = 131;
    btn2.y = 395;
    btn3.x = 250;
    btn3.y = 395;
    btn4.x = 367;
    btn4.y = 395;
    btn5.x = 485;
    btn5.y = 395;
    //create a new font
    var mainFont = new GeorgiaRegular();
    //create a new text format object
    var mainFormat:TextFormat = new TextFormat();
    mainFormat.size = 18;
    mainFormat.leading = 4.5;
    mainFormat.font = mainFont.fontName;
    mainFormat.kerning = true;
    //create text field copy
    var mainTxt:TextField = new TextField;
    mainTxt.x = 307;
    mainTxt.y = 182;
    mainTxt.width = 221;
    mainTxt.height = 333;
    mainTxt.multiline = true;
    mainTxt.wordWrap = true;
    mainTxt.defaultTextFormat = mainFormat;
    mainTxt.autoSize = TextFieldAutoSize.LEFT;
    mainTxt.embedFonts = true;
    //create a URLLoader object
    var textLoad:URLLoader = new URLLoader;
    //create a new URLRequest
    var darkReq:URLRequest = new URLRequest ("text/dark.txt");
    var invertReq:URLRequest = new URLRequest ("text/invert.txt");
    var overReq:URLRequest = new URLRequest ("text/over.txt");
    var screenReq:URLRequest = new URLRequest ("text/screen.txt");
    var subReq:URLRequest = new URLRequest ("text/sub.txt");
    //test to see that the external file has completely loaded
    //once it has executed the function that will add the loaded content
    //to our dynamic text field
    textLoad.addEventListener(Event.COMPLETE, textComplete);
    //function to execute once the external data is loaded;
    //adds the external file data (the actual text) to our text field
    function textComplete(event:Event):void
        mainTxt.text = event.target.data;
    //create a new shape object
    var sq:Shape = new Shape();
    //use the lineStyle method of the graphics object to
    //set the line thickness and color
    sq.graphics.lineStyle(2, 0x000000);
    //use the beginFill method to fill the shape
    //with the specified color
    sq.graphics.beginFill(0xFF86600);
    //use the drawRect method to draw a rectangle
    sq.graphics.drawRect(175, 100, 100, 100);
    //use the endFill method to end the fill of the shape
    sq.graphics.endFill();
    //add our shaped to the display list
    addChild(sq);
    //create a new shape object
    var circ:Shape = new Shape();
    //use the lineStyle method of the graphics object to
    //set the line thickness adn color
    circ.graphics.lineStyle(2, 0x000000);
    //use the beginFill method to fill the shape
    //with the specified color
    circ.graphics.beginFill(0xFF9900);
    //use the drawCircle method to draw a circle
        circ.graphics.drawCircle(150, 150, 85);
    //use the endFill method to end the fill of the shape
    circ.graphics.endFill();
    //add our shape to the display list
    addChild(circ);
    //apply a blend mode to the circle
    circ.blendMode = BlendMode.MULTIPLY;
    //create a display object container
    var contentContainer:Sprite = new Sprite;
    addChild(contentContainer);
    contentContainer.x = 10;
    contentContainer.y = 24;
    contentContainer.width = 1000;
    contentContainer.height = 725;
    //set initial page
    contentContainer.addChild(mainTxt);
    textLoad.load(darkReq);

    blendModes can only be applied to DisplayObjects (Sprites, MovieClips, Bitmaps etc)
    For an example how to get it working:
    DisplayObject - Adobe ActionScript® 3 (AS3 ) API Reference

  • How create EtchedBorder with round corner?

    Hi,
    does anybody have an idea, how to create an EtchedBorder (for a JPanel) with round corners?
    Thx.
    Hans

    did you check the source of the EtchedBorder ?
    you can create an round button that paints the same
    just .. with round corners
    here an example for RoundBorder
    http://examples.oreilly.com/jswing2/code/ch13/CurvedBorder.java

  • Create dll with arrays and call it

    I am trying to create dll with labview in order to pass a 2d array to the main program. The problem is that I don't really know how to create the function to call it (I don't know much about pointers)
    The function I have created to call the dll is void Untitled1(TD1Hdl *Array1) which is suposse to return the array created on it.
    For example, in the program attached, how should I do to pass the array to another program using dlls?
    Thanks a lot,
    Juanlu
    Attachments:
    Untitled 1.vi ‏7 KB

    The code you've provided doesn't do anything (just a control wired to an indicator) so I'm not sure what you're asking here.
    If I understand correctly, you want to build a DLL from your LabVIEW VI.  From what language will you call that DLL?  There is no standard way to pass a 2-D array.  If you can convert to a 1-D array, you can use a simple pointer.  With a 2-D array, you're stuck with LabVIEW's array representation (the TD1Hdl type), which means that whatever code calls that function will need to understand the LabVIEW data type and how to manipulate it.

  • Create website with IDCS3 and SiteGrinder?

    Media Lab's SiteGrinder is an amazing product for easily converting Photoshop designs into working websites without any knowledge of coding. Unfortunately, I have much more experience with InDesign than with Photoshop, but as it's possible to import InDesign files into Photoshop, I'm wondering if I can go this route with my InDesign designs, rather than learn how to use Photoshop more extensively. Has anyone here created a website with InDesign and SiteGrinder, with minimal Photoshop "intervention"?

    > Are you referring to everything crowding and overlapping when the text is enlarged? Isn't that a common problem with all sites?
    It's common -- far too common -- but not inevitable. It's bound to happen with SG, though, because they carve up the layout into fixed size chunks and then use absolute positioning, so there's no way for the containers to accommodate changes in font size except by crashing into each other, or growing scroll bars, which is only sometimes going to work. For the same reason -- starting with a single Photoshop image -- they can't identify headings or lists, so the pages aren't properly accessible to some assistive technology. If you don't care about accessibility, you should realize that this also means that they become hard or impossible for search engines to analyze, so people aren't going to find your site so easily.
    But I guess this discussion is a bit out of place on an InDesign forum. To get back to that, if you wanted to start in InDesign, the best thing to do is use XML export to get properly marked-up XHTML, and then lay it out with CSS. There's a good piece about doing this somewhere over on InDesign Secrets -- I don't have the exact URL to hand. But you would have to learn some CSS to do that. It seems that you are determined to go with SiteGrinder, though, so I can only recommend that you try things like changing the font size, and checking it with different browsers, so that you don't end up with something too awful. But if you do find the time to read, for example, Zeldman's book on Designing with Web Standards, you'll end up better at making sites than if you don't.

  • Creating model with Control and Design LV2009

    Hello,
    I'm trying to make a PI control model with Control and Design in labview 2009. I'm tyring to create the following transferfunction:
    D(z)=Kp+((Kp*Ki)/(1-z^-1))
    But labview adds by itself an extra z^-1 in the Numerator
    See the attachment what I have tried. I first want to create 1+(1/(1-z^-1)). What I'm I doing wrong ?
    Greetz,
    Jeroen
    Attachments:
    model.jpg ‏50 KB

    Jeroen,
    The two expressions "1+(1/(1-z^-1))" and "(2-z^-1)/(1-z^-1)" are equivalent to one another.  They just have the terms rearranged.  Since LabVIEW expresses a transfer function as a numerator and denominator, it is drawing the function as "(2-z^-1)/(1-z^-1)".  You aren't doing anything wrong.
    Chris M 

  • I have created video with music and pictures.  I have exported it. But all that shows is the music no pictures.  I have done this before and it worked ok.  Am I missing something?

    I have created a video with pictures and music.  When i export it, it goes into a MP4 video.  which I have done before and it worked ok.  Now the only thing on the MP4 video is music but not my pictures.
    I am very new to this and have taught myself everything so far.  I have no technical understanding.  So please make any answers as basic as you can.
    Many thanks.

    I am using standard photoshop cs6.
    Regards
    Clifford Marker
    Director – Clifford Marker Associates.
    Email :  <mailto:[email protected]> [email protected]
    Tel : 0208 504 2570
    Tel : 07539 833852
    9 Warners Close, Woodford Green, IG8 0TF
    Web :  <http://www.cliffordmarkerassociates.com/> www.cliffordmarkerassociates.com
    CMA Logo
    This communication and any attachments are confidential and may be protected from disclosure. We endorse no advice or opinion contained in this communication that is not the subject of a contract between the recipient and ourselves. If you have received it in error please notify us immediately and note that any storage, use of disclosure is strictly prohibited and maybe unlawful.
    Whilst we check the communications we send for virus infection, we accept no responsibility for any loss or damage caused to your systems by this communication.
    Those communicating with us by electronic mail will be deemed to have accepted the risks associated with interception, amendment, loss and late or incomplete delivery. They will also be deemed to have consented to you intercepting and monitoring such communications.

  • Create Report with CR4E and XML Data Source

    Hi all,
    I have a problem when create a report with CR4E that should use a XML data source. It is not possible to choose fields from the field explorer, because ther are no fields from the XML-file. Is there a general problem when using an ODA data source in CR4E?  At the moment I can only create reports with a database as data source.
    Please help me with a tip.
    Thanks
    Arnold

    Hi,
    After Installing CR4E Version 2  the code snippet for creating a XML-report not works as JSP. Has anywhere a hint to resolve the problem or a complete JSP-file?
    reportClientDocument = new ReportClientDocument();
    java.lang.NoClassDefFoundError: com/crystaldecisions/reports/common/data/CrystalResultSet
         com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.<init>(Unknown Source)
         org.apache.jsp.XMLDataSource_jsp._jspService(XMLDataSource_jsp.java:64)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:98)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:331)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:329)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:265)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    Thanks
    Arnold Meier

  • How to create table with rows and columns in the layout mode?

    One of my friends advised me to develop my whole site on the
    layout mode as its better than the standard as he says
    but I couldnot make an ordinary table with rows and columns
    in th layout mode
    is there any one who can tell me how to?
    thanx alot

    Your friend is obviously not a reliable source of HTML
    information.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Mr.Ghost" <[email protected]> wrote in
    message
    news:f060vi$npp$[email protected]..
    > One of my friends advised me to develop my whole site on
    the layout mode
    > as its
    > better than the standard as he says
    > but I couldnot make an ordinary table with rows and
    columns in th layout
    > mode
    > is there any one who can tell me how to?
    > thanx alot
    >

  • How to create table with javascript and jquery in abap

    Hello masters,
    i want to create table using javascript and jquery.
    i know how to use these languages but i dont how to implement them to abap.
    regards.

    Look at the sample BSP application SBSPEXT_HTMLB
    also you can look at the below Blog..
    /people/brian.mckellar/blog/2003/10/31/bsp-programming-htmlb-tableview-iterator
    <i>*Reward each useful answer</i>
    Raja T

Maybe you are looking for