How to create a blend or gradient that doesn't reach the edge of the shape

I am creating a shape that looks like a pill... a rectangle with two circles on the ends, if you will. But it's all one shape. I want a gradient or blend (what exactly is the differnce?) that has a white middle and dark gray edges. The white goes along the pill horizontally... but the dark gray is above and below this white "line" but the rounded edges of the pill shape are the dark gray. This seems like it would be easy, but I can't figure out how to do it. I'm using CS6.

Julie,
To get something that resembles a straight pill (or a capsule) as the one you describe, you may:
1) Create the outer rounded shape and split it into two: one on top with the stroke, one below with the solid fill corresponding to the colour adjacent to the stroke;
2) Select the filled path and Object>Path>Offset Path, using a negative value that is half the width less a suitable small amount (1pt or something);
3) Change the fill of the small inner path to a paler grey or white;
4) Select both the filled paths and Object>Blend>Make (with Smooth or a suitable number of steps in the Object>Blend Options).
To easily get something that is more like a round pill, you may apply horizontal gradients to the paths in the blend, along with a suitable number of steps.
With a new version, you may also use the new 3D features.

Similar Messages

  • How do you make a portrait view that doesn't loose the pictures?

    I'm trying to layout a portrait view book in iBooks Author and I don't understand why Apple doesn't include a template that doesn't lose the pictures when you change screen orientation. Seeing that 99.9% percent of all paper books in the world are in portrait view I would have expected this to be the default view rather than landscape view. Has anybody been able to make a portrait view book that retains the graphics and other bells and whistles or am I just banging my head against the wall?

    In portrait mode the figures and things are always links down the side of the text. The only way I found to stop them disappearing was to insert them in portrait mode. They don't disappear when you change back to landscape, you just have to move them to wherever it is you want them to be. The best workflow is edit in portrait, then switch to landscape for formatting.

  • How Do I Remove an Add-On That Doesn't Have the Remove Option?

    I have two add-ons that don't have Remove as a button like all my others do. One never worked with Firefox 5.0, but it was added when I downloaded a program. The other one also came with a program and only shows Enable or Disable. I no longer use either program and I just want to get rid of these add-ons. Thanks!

    Sorry for losing track of your question and not replying sooner.
    1) You can uninstall all Java Console extensions from the Firefox Extensions list, since this extension is obsolete and has no function. If the "Remove" button for the Java Console extension is inactive or "greyed-out", exit Firefox, reopen Firefox from the context (right-click) menu "Run as Administrator" option, then try again. If this doesn't work, you can also manually remove unwanted extensions by opening the installation directory "extensions" folder and deleting the associated subfolder (e.g., to uninstall the Java Console 6.0.25 extension, open the C:\Program Files (x86)\Mozilla Firefox\extensions\ folder and delete the "{CAFEEFAC-0016-0000-0025-ABCDEFFEDCBA}" subfolder).
    Reference:
    http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    2) The RealPlayer Browser Record Plugin extension can be removed from Firefox by opening RealPlayer, going to "Tools -> Preferences -> Download & Recording" and unchecking the option, "Enable Web Download & Recording". Reference: http://kb.mozillazine.org/Uninstalling_Extensions#Windows_Registry_extension
    Removing the [[Using the RealPlayer plugin with Firefox |RealPlayer plugin]] is another story. Either just disable or see [[Troubleshooting plugins]] to manually remove. You can also uninstall the RealPlayer program itself, if you don't use it - see http://windows.microsoft.com/en-US/windows7/Uninstall-or-change-a-program for help with that.

  • How to create a variance on data that exists iIn only one database column

    How to create a variance on data that exists iIn only one database column?
    I'm trying to create a calculation to show the difference between the budgets for two different years in a Discoverer crosstab query.
    I'm using the lag function to repeat the value of a column for the current year and the year before.

    Lag and lead seems to be the only choice and they work excellent. Checkout the new 10g Database features. There is new SQL modal clause which might give additional and powerful analytics but in this case lag and lead should be sufficient.
    regards
    http://www.infocaptor.com/workbook-dump.php

  • I have create many free acounts for apple I have reached the limit of creating free acounts how can I delete that free acounts which I have made?

    I have create many free acounts for apple I have reached the limit of creating free acounts how can I delete that free acounts which I have made?

    iOS devices can only create 3 free iCloud accounts, Get a new iOS device
    why would you need more than 3 iCloud accounts for 1 device o.O

  • How to Create report in Material Master that outputs stock

    Hi,
         How to Create report in Material Master that outputs stock, grouped by Material Type and Plant. The output shows Material No, Storage location, Unit of Measure and Description in addition to group totals. Data was extracted from MARA, MARC, MARD, MAKT,MKPF,
         MSEG and T001W.and what are the fields to be used.

    hi,
    check the transaction MMBE or MC.9..
    for mmbe the program is RMMMBESTN.
    check the logic in the program.

  • How to create a task list view in c# that doesn't display the timeline

    How can I create a view for a task list using c# that doesn't display the timeline.  I want to do this using server side code but I can't seem to find a view property that will hide the timeline.  I know how to do it manually through the UI but
    I need to automate it.
    Caroline

    Hi Garoline,
    We can set ViewData of the view to empty to achieve your requirement. The following code snippet for your reference:
    using (SPSite site = new SPSite("http://sp2013sps/"))
    using (SPWeb web = site.OpenWeb())
    SPList list = web.Lists["TaskList"];
    SPViewCollection allviews = list.Views;
    string viewName = "Test View";
    System.Collections.Specialized.StringCollection viewFields = new System.Collections.Specialized.StringCollection();
    viewFields.Add("Checkmark");
    viewFields.Add("LinkTitle");
    viewFields.Add("Due Date");
    viewFields.Add("Assigned To");
    string myquery = "<where><gt><fieldref name='ID' /><value type='Counter'>0</value></gt></where>";
    allviews.Add(viewName, viewFields, myquery, 100, true, false);
    SPView view=list.Views[viewName];
    view.ViewData = "";
    view.Update();
    Best Regards,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to create dynamic context based on a structure defined in the program?

    Hi Experts,
             I need to create a dynamic context based on a structure wa_struc which i have define programatically.
    When I pass wa_struc to structure_name parameter of create_nodeinfo_from_struc, i get a runtime error:
    "Parameter STRUCTURE_NAME contains an invalid value wa_struc."
    How to create dynamic context based on a structure defined in the program?
    I have written the code like this:
    TYPES: BEGIN OF t_type,
                v_carrid TYPE sflight-carrid,
                v_connid TYPE sflight-connid,
             END OF t_type.
      Data:  i_struc type table of t_type,
             wa_struc type t_type.
      data: dyn_node   type ref to if_wd_context_node.
      data: rootnode_info   type ref to if_wd_context_node_info.
      rootnode_info = wd_context->get_node_info( ).
      clear i_struc. refresh i_struc.
      select carrid connid into corresponding fields of table i_struc from sflight where carrid = 'AA'.
    cl_wd_dynamic_tool=>create_nodeinfo_from_struct(
      parent_info = rootnode_info
      node_name = 'dynflight'
      structure_name = 'wa_struc'
      is_multiple = abap_true ).
    dyn_node = wd_context->get_child_node( name = 'dynflight' ).
    dyn_node->bind_table( i_struc ).
    Thanks
    Gopal
    Message was edited by: gopalkrishna baliga

    Hi Michelle,
              First of all Special thanks for your informative answers to my other forum questions. I really appreciate your help.
    Coming back to this question I am still waiting for an answer. Please help. Note that my structure is not in a dictionary.
    I am trying to create a new node. That is
    CONTEXT
    - DYNFLIGHT
    CARRID
    CONNID
    As you see above I am trying to create 'DYNFLIGHT' along with the 2 attributes which are inside this node. The structure of the node that is, no.of attributes may vary based on some condition. Thats why I am trying to create a node dynamically.
    Also I cannot define the structure in the ABAP dictionary because it changes based on condition
    I have updated my code like the following and I am getting error:
    TYPES: BEGIN OF t_type,
    CARRID TYPE sflight-carrid,
    CONNID TYPE sflight-connid,
    END OF t_type.
    Data: i_struc type table of t_type,
    dyn_node type ref to if_wd_context_node,
    rootnode_info type ref to if_wd_context_node_info,
    i_node_att type wdr_context_attr_info_map,
    wa_node_att type line of wdr_context_attr_info_map.
    wa_node_att-name = 'CARRID'.
    wa_node_att-TYPE_NAME = 'SFLIGHT-CARRID'.
    insert wa_node_att into table i_node_att.
    wa_node_att-name = 'CONNID'.
    wa_node_att-TYPE_NAME = 'SFLIGHT-CONNID'.
    insert wa_node_att into table i_node_att.
    clear i_struc. refresh i_struc.
    select carrid connid into corresponding fields of table i_struc from sflight where carrid = 'AA'.
    rootnode_info = wd_context->get_node_info( ).
    rootnode_info->add_new_child_node( name = 'DYNFLIGHT'
    attributes = i_node_att
    is_multiple = abap_true ).
    dyn_node = wd_context->get_child_node( 'DYNFLIGHT' ).
    dyn_node->bind_table( i_struc ).
    l_ref_interfacecontroller->set_data( dyn_node ).
    But now I am getting the following error :
    The following error text was processed in the system PET : Line types of an internal table and a work area not compatible.
    The error occurred on the application server FMSAP995_PET_02 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    Method: IF_WD_CONTEXT_NODE~GET_STATIC_ATTRIBUTES_TABLE of program CL_WDR_CONTEXT_NODE_VAL=======CP
    Method: GET_REF_TO_TABLE of program CL_SALV_WD_DATA_TABLE=========CP
    Method: EXECUTE of program CL_SALV_WD_SERVICE_MANAGER====CP
    Method: APPLY_SERVICES of program CL_SALV_BS_RESULT_DATA_TABLE==CP
    Method: REFRESH of program CL_SALV_BS_RESULT_DATA_TABLE==CP
    Method: IF_SALV_WD_COMP_TABLE_DATA~MAP_FROM_SOURCE_DATA of program CL_SALV_WD_C_TABLE_V_TABLE====CP
    Method: IF_SALV_WD_COMP_TABLE_DATA~MAP_FROM_SOURCE of program CL_SALV_WD_C_TABLE_V_TABLE====CP
    Method: IF_SALV_WD_COMP_TABLE_DATA~UPDATE of program CL_SALV_WD_C_TABLE_V_TABLE====CP
    Method: IF_SALV_WD_VIEW~MODIFY of program CL_SALV_WD_C_TABLE_V_TABLE====CP
    Method: IF_SALV_WD_COMPONENT~VIEW_MODIFY of program CL_SALV_WD_A_COMPONENT========CP
    -Gopal
    Message was edited by: gopalkrishna baliga

  • My iTunes library is too large for my iPod classic--can I create a separate library so that I can split the current library and sync the distinct libraries onto separate iPods?

    My iTunes library is too large for my iPod classic--can I create a separate library so that I can split the current library and sync the distinct libraries onto separate iPods?

    - If the Gmail accounts are IMAP one then if the library is erased and then you use the account old email will be redownload
    - Easing the library on the MacBook does not effect what is on the iMac. On the other hand if you deleted the messages in the Mail app on the MacBook then they will deleted from all devices.
    -See the middle of the following. It would seem to help in your situation
    http://www.howtogeek.com/209517/how-to-stop-your-macs-mail-app-from-wasting-giga bytes-of-space/

  • Hi iv got a sky router downstairs and a time capsule up stairs how do i set it up so that it just extends the sky wifi and then the hard drive in the time capsule is accessible from all over the house thanks

    hi iv got a sky router downstairs and a time capsule up stairs how do i set it up so that it just extends the sky wifi and then the hard drive in the time capsule is accessible from all over the house thanks

    Connect an Ethernet cable from one of the LAN <--> ports on the back of the Sky router to the WAN (circle of dots icon) port on the back of the Time Capsule. This connection must be maintained at all times.
    Then, using the setup "wizard" on your iMac illustrated below, configure the Time Capsule to create a wireless network that uses the exact same wireless network name and password that the Sky router is using.
    You can get the setup wizard going in several different ways, but the simplest might be to click the WiFi icon at the top of the Mac's screen and then click on Time Capsule under the heading of New AirPort Base Station.
    The wizard will open up and analyze the network, then the suggest the correct setup. The example below shows an older AirPort Express that is about to be setup in the same way. You will see a Time Capsule icon on your screen when you run the setup wizard.

  • How can I delete an app from launchpad, that doesn't have the little cross in the left top corner. The app isn't an App Store app. The application is also not present anymore in my application's folder in finder.

    How can I delete an app from launchpad, that doesn't have the little cross in the left top corner. The app isn't an App Store app. The application is also not present anymore in my application's folder in finder.
    I tried to use the attached command through TERMINAL :
    sqlite3 ~/Library/Application\ Support/Dock/*.db "DELETE from apps WHERE title='Help';" && killall Dock
    sqlite3: Error: too many options: "DELETE from apps WHERE title='Help';"
    Use -help for a list of options.
    But i didn't work as I got the above error message.
    best regards
    Jeroen

    I'm in the same boat as you -- except that I manage both a school lab (volunteer job) and macs in the enterprise (pay job).  What I think we need is the Education Volume Purchasing Program
    http://www.apple.com/education/volume-purchase-program/faq.html
    Unfortunately this all seems a little rough around the edges -- for example, I have found updates for AppStore apps on the support.apple.com updates download site, but then when I install them via ARD they don't actually update the software.  (The AppStore icons still show as needing the updates, and the version info reports the old version.)  The documentation is also vague about which AppleID to use in which circumstance.  I think they just haven't finished thinking through the implications of the various procedures and policies upon the various kinds of customers.  When we deployed Mountain Lion on the school lab, we made an install usb and went around and installed it on each computer -- and it appears that you are on the honor system as far as paying for all of the licenses that you install.  We did!  But they appear to have no way to enforce it.
    So far, I have only deployed 9 Lion macs in my day job, and our "solution" to the AppStore showing updates problem has been to drag the AppStore icon off of the users' docks so they don't see them!

  • How to create an inspection lot for each line item of the Purchase order?

    Hi,
    How to create an inspection lot for each line item of the Purchase order ?
    In detail if possible.

    Hi
       please check this
    [thread|Create Inspection Lot;

  • When i play back an mp3 dj mix i,ve burn,t to cd in my car when i turn the engine of and then restart the car the cd starts back from the beginning how do i solve this problem so that when i turn the engine on end off the cd plays from the same place

    when i play back an mp3 dj mix i,ve burn,t to cd in my car when i turn the engine of and then restart the car the cd starts back from the beginning how do i solve this problem so that when i turn the engine on end off the cd plays from the same place it did before i turned the engine off

    It could be that the CD player will only playback "Redbook" CD's from the previous position.
    And starts mp3 type CD's from the beginnig.
    However.. it's not Logic related.
    pancenter-

  • When trying to upload a MS word file (.docx) to gmail, it uploads into a folder that doesn't contain the original document when i try to download it from e-mail.  how do i solve this?

    when trying to upload a MS word file (.docx) to gmail, it uploads as a 'folder' that doesn't contain the original document when i try to download it back from the e-mail.  how do i set the format to simply upload the document itself???  Thanks...

    Yes, excuse me. attach a file.  I have separate folders on my desktop to organize my word documents, so I'm guessing this might be a part of the problem.  When I go to attach one of these documents into gmail, the resulting attachment is another folder icon (not the original organizational folders) with 4 subfolders containing a slew of .xml files reading things like "header.xml" "format.xml" "settings.xml" "style.xml" "contenttype.xml" There are also a few .jpegs and a small folder reading "word" as one of the subfolders.

  • How do I uninstall Google Drive so that I can reinstall the upgrade?

    I have a Mac Air, Processor 1.7 GHz Intel Core i5 running OS X (10.9.3)
    I have been using Google Drive to share files with friends and family but this week began getting a pop-up that I need to upgrade my Google Drive software.
    I downloaded the file from Google but when I try to install/replace, I get the following two messages:
    The operation can’t be completed because the item “Google Drive” is in use.
    The operation can’t be completed because a required item is in use.
    My browser is closed so I don't know why it appears that the software is in use.
    So, I checked this forum and found that because of some problems with Google Drive and OS X, I need to "uninstall" my current Google Drive application but I don't know how to do that.
    Can someone please tell me, step-by-step, how to completely uninstall this software so that I can reload the newer version?
    Thanks so much for your help!
    Chris Carbaugh

    Open Google Drive window. Click On "Settings" at top of window. Select move to trash. Then Empty Trash.

Maybe you are looking for

  • CS6 "There was an error writing metadata" message PC and Mac

    I have seen this in the forums but looks like no one has an answer yet. Adobe chat support was totally not helpful. I am getting an error message when trying to apply keywords to some images in Bridge. The error is very non-specific, all it says is "

  • How to import .exe files into Captivate

    I have some Flash .exe files that I want to import into Captivate so I can combine the files....and also so I can choose the properties for the files (for example, either to run on a loop or also to take to a website upon completion). So, how do I im

  • Speakers for a G5

    Maybe this is the wrong section for this, but, can anyone give some advice on some good speakers for the G5 that i just bought? I had a G4 and obviously those will not work on this new rig.

  • Exception CNTL_ERROR raised when using REUSE_ALV_GRID_DISPLAY

    Hi, I would like to ask your help concerning the following issue. I have a program called ZBAL_ZSTOCK2 which uses the following FM : CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'     EXPORTING       i_interface_check       = 'X'       i_buffer_active       

  • Mask layer selection tool

    anyone else have the issue of using selection tool, then going to brush the areas not wanting to be selected after using refine edge, new mask with layer, the paint tool making the selected area completely exposed, or painting on black and not exposi