I have a variable width circle, trying to figure out how to change start / finish thickness variance

Hi all, 
Just wondering how I do this and still be able to edit the start point / end point thickness?
In this screen shot I am trying to get the start point (the thinnest point) a little thicker.
Can I edit these variable width profiles or? Any other / better ways to do it?
Any help would be great

You need to use the width tool:
The profiles are all just starting points.  Depending on how precise you need to be, you might need to cut the circle at that point so you can get at the thinner end of the line.  If you try while it's a circle, you can get pretty close, but the thicker end is over the thinner end. 
If you need to cut it, (scissor tool, "c")  use the keyboard to move the thicker point out of the way, adjust the thickness with the width tool, and then move the point back. Marquee select them both with the direct select tool (Click and drag with the white arrow, "a") and "join" (command-J) them back together to make it a circle again.

Similar Messages

  • HT201209 I need assistance with trying to figure out how to change my security code answer

    I need assistance with trying to figure out how to change my security code answer

    If you mean the answers to your security questions, then f
    rom http://support.apple.com/kb/HT5665 :
    If you have three security questions and a rescue email address
    sign in to My Apple ID and select the Password and Security tab to send an email to your rescue email address to reset your security questions and answers (the steps half-way down that page should give you a reset link)
    If you have one security question and you know your Apple ID passwordsign in to My Apple ID and select the Password and Security tab to reset your security question.
    If you have one security question, but don't remember your Apple ID passwordcontact Apple Support for assistance. Learn more about creating a temporary support PIN to help Apple confirm your identity when you contact Apple Support.
    If you can’t reset them via the above instructions (you won't be able to add a rescue email address until you can answer your questions) then you will need to contact iTunes Support / Apple in your country to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down this page to add a rescue email address for potential future use : http://support.apple.com/kb/HT5312

  • Trying to figure out how to change the tuning of certain notes so I can play notes in between pitches for example the middle note between B

    Trying to figure out how to change the tuning of certain notes so I can play notes in between pitches for example the middle note between B & C or E & F. I can use different tracks if needed but I would prefer to know how to do it for individual notes as well. They have to be exactly in the middle so it's not out of tune.

    Danny,
    The theme to Doctor Who is in 12/8. In music theory, there's no such thing as a 12th note, the notation and nomenclature is all based on things being divisible by four. So for the diddly-dum feel to happen, you have to give the beat to a quarter note plus another eighth note -- we call it a dotted quarter note, and now you have three eighth notes per beat so you can go diddly. So, since you can't call the time signature 12/dotted quarter, you call it 12/8 and go faster. Make sense? Anyway, for GB's purposes, all you need to know is that you'll get that feel by choosing 12/8.

  • HT5616 i am trying to get all my apple stuff under 1 apple id. i have 2 and i? can't figure out how to change it????

    i have 2 apple id"s, i want to use only one on all my apple products. does anyone know how to change this?

    You cannot merge two Apple ID accounts.  The main reason for this is to prevent theft.  If someone were able to get your account information, and then they transferred your purchases from your Apple ID to their own, and then changed all of your login information, you'd not only be locked out of your account, you'd lose your purchase history.
    You can download content from multiple Apple IDs (and there's rarely a reason to create more than one Apple ID for a single user) onto your devices, though.  Log in with one, download the content, then log out, log in with the second, and download that Apple ID's content.

  • Trying to figure out how to change the desktop background with powershell/batch.

    The entire thing I'm doing is pretty pointless lol. But I wanted to prank my mother. This is my computer by the way nothing malicious. I just had an idea that the next time she goes to click and open opera I would have a batch files disguised as it instead
    that would just say some things. Mimic deleting files. Kill exlporer.exe. Change the background to one I created saying something like GOT YA! with a troll face or something. And then either run explorer.exe again or shutdown my laptop. I don't really know
    what I am doing lol. I have the batch file done but the changing of the desktop has me puzzled. I can have the batch file to replace the current bmp file with one I've made but it doesn't actually change the background. And JFY WPA files just happened to be
    where I decided to sit the files for this prank at until I'm done with them.
    I used this to copy it over.
    copy /y "C:\Users\user\Documents\WPA Files\Internet Explorer W
    allpaper.bmp" "C:\Users\user\AppData\Roaming\Microsoft\Internet Explorer\Inter
    net Explorer Wallpaper.bmp"
    I used this to try to get the wallpaper to refresh to show the new one before I found out this doesn't work with windows 8.1
    RUNDLL32.EXE user32.dll,UpdatePerUserSystemParameters
    I found this but I am not entirely sure what to do with -name or -value or if I need to do anything to them or the others.. Doubt this would even refresh or what ever to make the new wallpaper actually show though.
    set-itemproperty -path "HKCU:Control Panel\Desktop" -name wallpaper -value $image
    Also found this which I don't get at all..
    Add-Type @"
    using System;
    using System.Runtime.InteropServices;
    using Microsoft.Win32;
    namespace Wallpaper
       public enum Style : int
           Tile, Center, Stretch, NoChange
       public class Setter {
          public const int SetDesktopWallpaper = 20;
          public const int UpdateIniFile = 0x01;
          public const int SendWinIniChange = 0x02;
          [DllImport("user32.dll", SetLastError = true, CharSet = CharSet.Auto)]
          private static extern int SystemParametersInfo (int uAction, int uParam, string lpvParam, int fuWinIni);
          public static void SetWallpaper ( string path, Wallpaper.Style style ) {
             SystemParametersInfo( SetDesktopWallpaper, 0, path, UpdateIniFile | SendWinIniChange );
             RegistryKey key = Registry.CurrentUser.OpenSubKey("Control Panel\\Desktop", true);
             switch( style )
                case Style.Stretch :
                   key.SetValue(@"WallpaperStyle", "2") ; 
                   key.SetValue(@"TileWallpaper", "0") ;
                   break;
                case Style.Center :
                   key.SetValue(@"WallpaperStyle", "1") ; 
                   key.SetValue(@"TileWallpaper", "0") ; 
                   break;
                case Style.Tile :
                   key.SetValue(@"WallpaperStyle", "1") ; 
                   key.SetValue(@"TileWallpaper", "1") ;
                   break;
                case Style.NoChange :
                   break;
             key.Close();
    [Wallpaper.Setter]::SetWallpaper( 'C:\Users\user\Documents\WPA Files\Internet Explorer Wallpaper.bmp', 0 )
    And this to run the powershell script once I have one lol
    PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& {Start-Process PowerShell -ArgumentList '-NoProfile -ExecutionPolicy Bypass -File ""C:\Users\user\Documents\WPA Files\desktopchange.ps1""' -Verb RunAs}"

    Haha you're funny. I can't decide if you sincerely want me to learn or if you enjoy my struggle(I'm dumb) and think I'm up to no good. I do enjoy learning though :). 
    If I thought you were dumb I would have ignored you.  I just think it would be more fun for you to find the answers.  This is a technical forum and not a free answer forum.  It is for people who are learning or who have specific technical
    questions.  I am dropping you in the "might be learning" bin.  If you had asked a specific technical question I would have answered it.
    ¯\_(ツ)_/¯

  • Cannot update Apps on iPhone only Mac & iPad. I have new ID on latter. Cannot figure out how to change on iPhone.

    I cannot update apps on my iPhone. It has my old Apple ID. Fine on Mac & iPad they accept my new ID (automatically). Tried syncing iPhone with Mac. Didn't  work.

    To change the Apple ID on the iPhone go to Setttings > iTunes & App Store > then tap the Apple ID at the top and sign out.

  • I have a Macbook Pro and can't figure out how to change my password. Any help?

    This is  a password for like entering my compu

    Boot from your recovery partition by holding down the key combination command-R at startup. Release the keys when you see a gray screen with a spinning dial.
    When the recovery desktop appears, select Utilities > Terminal from the menu bar.
    In the Terminal window, enter “resetpassword” (without the quotes) and press return. A “Reset Password” window opens.
    Select your boot volume if not already selected.
    Select your username from the menu labeled “Select the user account” if not already selected.
    Follow the prompts to reset the password.
    Select Apple menu > Restart from the menu bar.

  • On my mozilla start page, there is a search bar in the middle of the page. It has always been google, but suddenly it is bing. I hate bing! I've been trying to figure out how to change it but it is beyond me.

    I downloaded a game from msn games a week or so ago, and I'm thinking that is what brought this about. I deleted the game off my computer, but don't know how to fix this...

    If you are talking about the default Firefox 4+ homepage - '''about:home''' - run this code in the Scratchpad to change the '''about:home''' search engine back to Google.
    Firefox button > Web Developer -> Scratchpad - <br /> copy and paste this script into Scratchpad > then hit Execute > Run
    <pre> <nowiki>
    javascript:{localStorage["search-engine"]="{\"name\":\"Google\",\"searchUrl\":\"http://www.google.com/search?q=_searchTerms_&ie=utf-8&oe=utf-8&aq=t&rls=org.mozilla:en-US:official&client=firefox-a\"}";void(0);}
    </nowiki> </pre>

  • Trying to figure out how to make font arch around a circle on pages

    i just downloaded pages and am trying to figure out how to arch my font in a half circle, around a sun. frustrated, totally new to the mac world, help, any tips on how to optimize the features on my new lovely comp?! thanks

    In Pages it isn't easy as it doesn't have any feature to do it.
    Here is a how you can do it but it is clunky. http://i-work-in-pages.blogspot.com/2010/03/curving-text-in-pages-suggestion.htm l
    Better is to get an application that can do it.

  • I am trying to figure out how I can get my library transferred to the Honda Accord 16gb hard drive?  I have purchased music of off I tunes and do not have the physical CD.  Anybody with any suggestions on how this can be done?

    I am trying to figure out how I can transfer my library to my new 2014 honda accord that has an internal 16gb hard drive.  The manual for the car says that it needs to be original CD's but I have purchased alot of the albums/songs I have from I tunes therefore not having the original CD.  Can someone help me with this as I dont want to load each CD into the player to record and have some albums that I purchased off of I tunes that I would like to be on the hard drive.
    Thanks Any Help is appreciated.

    If Honda says you need the original CDs, you need the original CDs.

  • I really need someone to help me. I have been trying to figure out how to select a PDF document to convert to a Word doc. When I go to select a PDF file, all that shows up is the WORD docs. does not show ANY of my PDF files... Please help me figure out wh

    I really need someone to help me. I have been trying to figure out how to select a PDF document to convert to a Word doc. When I go to select a PDF file, all that shows up is the WORD docs. does not show ANY of my PDF files... Please help me figure out what is going on? We have it set on auto renewal so I know its not that we haven't renewed this subscription, because we pay automatically.

    Hi olivias,
    It sounds like there may be some confusion on your system about what application should be associated with PDF files. You can reset filename associations by following the steps in these articles (depending on your operating system):
    How to change the default application for a file type | Macworld
    http://windows.microsoft.com/en-us/windows/change-default-programs#1TC=windows-7
    Please let us know if you have additional questions.
    Best,
    Sara

  • TS4223 I accidentally bought the HD version of a movie for my daughter's iPod nano (it can't be watched on the Nano).  So I'm trying to figure out how to re-download the SD version.  do I have to pay for the lower version??

    I accidentally bought the HD version of a movie for my daughter's nano. you can't watch HD on a nano.  So I'm trying to figure out how to re-download the SD version.  This help screen makes it seem like you can just correct the problem and just "download" the lower version.  But when I follow the steps, I basically get to where I'm just having to actually purchase the other version.  Do I have to pay to get the lower quality version after I've already paid for the HD version?

    When you purchase an HD movie or show, in most cases the SD copy can be downloaded from your purchases area in iTunes. On the main iTunes Store page, go to Purchases under the Quick Links and then select Movies or TV shows as appropraite. Click the "Not On This Computer" button. Uncheck the "Download HD when available" box and you should then see the SD copies of the movies/shows and be able to download them.
    Note that with digital copies from a Blu-Ray or DVD, if it comes with an HD copy, you normally cannot get the SD copy as well and have to purchase it separately if you want it.
    Regards.

  • I have creative cloud, I have both photoshop and lightroom current versions installed - I was using the trial period.  I paid for the 9.99 a month and now I'm trying to figure out how to get a current program so it won't expire - which is still says it is

    I have creative cloud, I have photoshop and lightroom current versions installed - I was using the trial period.  I paid for the 9.99 a month and now I'm trying to figure out how to update this. 

    You need to uninstall the trial applications and reinstall from the CC app.

  • I have recently had to fire my web designer who was using iWeb.  Now I'm trying to figure out how to get the site to open in iWeb on my new MacBook Pro.  Is there a way?

    I have recently had to fire my web designer who was using iWeb.  Now I'm trying to figure out how to get the site to open in iWeb on my new MacBook Pro.  Is there a way?

    Firstly iWeb CAN'T IMPORT any kind of published html code as it has no import facility.  You can however add html code, javascript and css by selecting the html snippet and placing it on your page the entering the code in here and clicking on Apply.  You DO NOT create a shape as you say - you use the html snippet and place your code in there.
    There are not really a lot of ways in which you can write code - if you want to enter small amounts of code, then you would use an ordinary text editor to do this such as Text Edit on a Mac or Text Wrangler.  If you want to add code to iWeb like this, then you would either use the html snippet method in iWeb itself or you would have to publish the site to a local folder from iWeb and open the relevant html page with a text editor and add the additional code in this way and then publish.  However, if he decided to add the code with a text editor, then you would have to upload the pages directly to the server using an ftp client - if you try to upload the site directly from iWeb, all the extra code will be overwritten.
    As for checking whether the site was created using iWeb, all you need do is view the site in Safari and then click on View and then select View Source Code and it will tell you.
    Even thoough extra code was added to the site and he might well have done this by publishing to a local folder and adding the code with a text editor, he should still have the domain file for the site too.
    Ask again.  I'm sure that for adding quick code, most would not want to use programmes such as Dreamweaver, but a simple text editor will suffice.  As OT already said, if he claims that he does not have the domain.sites file, then try Flux 4 which is a web design programme and has full import facilities.  At least this way, if he just gives you the published version of the site, you have some way of opening it.
    You can download a free trial of Flux 4 and you can also purchase the full version from the Mac App Store if you decide you like it.

  • Hi, I have a Apple TV and we are trying to figure out how to transfer the iPad to our tv. Any ideas? Thanks

    Hi, I have a Apple TV and we are trying to figure out how to transfer the iPad to our tv. Any ideas? Thanks

    You can connect via a cable or wireless using an Apple TV.
    http://ipad.about.com/od/iPad_Guide/a/How-To-Connect-Your-Ipad-To-Your-Tv.htm
    iPad Accessories: Connections for a TV or Projector
    http://www.dummies.com/how-to/content/ipad-accessories-connections-for-a-tv-or-p rojector.html
    You may be interested in AirPlay on the Apple TV:
    Apple - AirPlay - Play content from iOS devices on Apple TV
    http://www.apple.com/airplay/
    Alternately, there are Apple Digital AV Adapters for hardwired connections:
    iOS: About Apple Digital AV Adapters
    http://support.apple.com/kb/ht4108
    Look at the Apple TV manual
    http://support.apple.com/manuals/#appletv
     Cheers, Tom

Maybe you are looking for

  • Windows 7 SP1, Error 0x80041010

    Hello, Windows Update service fails to install Service Pack 1 on my Windows 7 Professional 64-bit with an error code 0x80041010. After reading some posts on this forum I have come to conclusion that my problem is different. According to CBS.log the p

  • I have 278 photos in Photoshop Elements 13 that I want to upload in album order to Shutterfly for a book.

    I am using Photoshop Elements 13 and Windows 8.1.  I have my photos in album order and I want to load them in this order.  When I try to load them to the Cloud they become disorganized.  I can not find a way to upload them to Shutterfly to make a boo

  • Setting up back-to-back async connection between 2 routers

    Hi, I am trying to setup a back-to-back async connection between 2 routers via the async serial interface. The connection between the two routers are via a smart serial to RS232 male(CAB-SS-232MT) cable connecting to another RS232 female to smart ser

  • Black side bars--NOT widescreen

    I know I've read about this a long time ago but have since forgotten it and I can't seem to dig up the answer in the archives so I ask for patience. I just made a long-term loan of my now-unused Canon GL 1 to a friend who is doing some extensive vide

  • Custom component doesnt draw itself

    Hey Im relatively new to java, and especially to swing, heres the problem. Im trying to make a custom component (extends JComponent).Ive overwridden the paintComponent() method. But when i make a new component and add it to JPanel, it isnt drawn, alt