Can't Pathfinder-- Merge an object made with paintbrush??

I've been having problems using the Pathfinder-->Merge.
It seems that if at least one of two objects was created with the paintbrush instead of the pen tool, the objects aren't merged correctly.
Why? Shouldn't this work? Am I missing something?
Thank you.
(Using AI CS3)

It all depends on how you define "correct"
Do you need the special stroke that is created by using a paintbrush eg with variable thickness?
Or did you just use the paintbrush because it was at hand?
In the first case you have to expand the stroke: Objekt > Expand apperance
In the second case, delete the brush stroke and assign a normal stroke or none at all.
You'll also have to assign fills. Merge needs them
Screenshots are very helpful in cases like this ...

Similar Messages

  • I can't update the purchases I made with the old Apple I.D. How can I sync my old Apple I.D. with new one?

    I can't update the purchases I made with the old Apple I.D;
    how can I sync my old Apple I.D. with new one?

    Only the Apple ID used to buy an app can update an app. Apple does not merge Apple IDs and Apple does not transfer content biught with one ID to another ID.

  • Can Mac read a dcr file made with win?

    Hello,
    Can Mac read a dcr file made with win?
    Thanks in advance.

    Thanks Sean,
    I posted the question because of some problem of user to read the web page with dcr.
    You assumed right, it is e dcr hosted in a browser page and viewed via shockwave with safari.
    I don't know the nature of the problem but the user get an error.
    Maybe I must decide to buy a mac and do some test.
    Thank you again.

  • HT204088 Hello everyone, i want to know how can i found out the purchases made with my credit card (not by my apple ID)?

    Hello everyone, i want to know how can i found out the purchases made with my credit card (not by my apple ID)?
    I found out in my Credit Card bill some purchases in itunes store that wasn't made by me.
    thanks to all helpers

    This would be something you would need to address with your credit card company. Apple cannot tell you who else might have used your card nor what purchases they might have made. Call your credit card company and report the charges as fraudulent. You'll probably need to have them cancel your existing card and issue you a new one.
    Regards.

  • HT4597 can I publish the web pages made with aperture in icloud?

    can I publish the web pages made with aperture in icloud?
    thank you.
    Luis da Cruz

    iCloud does not provide website hosting: you will need to find another hosting service - there are plenty to choose from.

  • Can I un-merge contacts so people with the same last name have separate entries?

    Since upgrading to iOS7 on my iPhone 4, I find that a lot of contacts were merged into single entries.  The merged contacts are people with the same address and may have same last name, but they have other contact info that differs, especially different mobile phone numbers.  Is there a way to separate such contacts so I can tell whose mobile phone number is whose?  I sync my iphone contacts with the address book on my iMac (OS 10.7.5), where each person remains a separate entry.  It is useless for me to see one entry per family on my phone when I cannot tell whose phone number is whose.  Any way to fix this?

    Select the unified contact you want to unlink
    Tap edit
    Scroll to the bottom
    Tap the red circle
    Tap the read unlink button to confirm.

  • Can someone show me a site made with BC en CC

    Hi I want to see some examples from sites made with business catalyst.
    And can you give me feedback if it is working well?
    Thanks for your reply!
    Carla

    The Business Catalyst website contains several examples of the kinds of websites that can be created using Business Catalyst: Cellar Thief, and Bella Vista Gifts.
    It's also important to note that Business Catalyst doesn't have to function as a "creation" tool as the above examples show, but instead can be a host for websites created using other Adobe tools, including Dreamweaver and Muse. The Muse tutorials page links to several examples pages, that were created entirely without coding.
    I'm in the process of building a personal portfolio website using only Adobe Muse and hosting via BC. The great thing about using BC with my Creative Cloud membership is that I can test as many versions of my website as I need before publishing anything. I'm personally having a great experience using Creative Cloud and Business Catalyst.
    Cheers!

  • How can I use a shared library made with the application builder?

    Hi,
    I am using LabVIEW 7.1 running on Slackware 10.1 (kernel 2.4.29) and I am trying to call a graph display from a C program that I use for debugging VME access from a VMIVME controler. So using the application builder I built the VI as a shared library (graph.vi -> graph.so) containing a function called "graph". In my main program the call to the dlopen fails with the error: "graph.so: undefined symbol: UninitLVClient". When I examin graph.so with nm I see that UninitLVClient and other LabVIEW functions are indeed undefined and using ldd shows that graph.so has dependencies only on libc.so.* and *linux*.so.* but not on LabVIEW related stuff. Those functions are defined in the liblv.so that's in the cintools directory but I have no idea if the user is supposed to use that.
    So I think I am missing an important concept here. Can somebody help or direct me to some documentation (I found lots of information about how to link external code to LabVIEW but nothing about how to link LabVIEW code to an external program)?

    Thanks Watermann,
    your message has been very useful so now I am linking to the proper library but I still have problems when trying to load dynamically the shared library produced with LabVIEW. It is strange that I could successfully load the lvrt library at loading time but it does not work when I am loading the library at execution time.
    I made a small LabVIEW program that prints a hello window and I am calling it from a C program. In the first program main.c I am linking to the lvrt library at loading time and it works but in the second one I am linking dynamically at execution time and it does not work. For my work I need to be able to load code done in LabVIEW at execution time. Any help is appreciated!
    Program main.c:
    // small program to call a LabVIEW shared library
    #include
    #include
    #include "hello.h" // got this from the LabVIEW builder, i.e. when I made the hello.so
    int main(void)
    printf("Hello from C!\nLets call LabVIEW now\n");
    hello();
    printf("Bye ... \n");
    return 0;
    The command to compile main.c, i.e. linking shared library lvrt when loading main program:
    gcc -Wall -I /usr/local/lv71/cintools/ -o main main.c hello.so -l lvrt
    The LD_LIBRARY_PATH has been defined and exported:
    $ LD_LIBRARY_PATH=$PWD
    $ export LD_LIBRARY_PATH
    IT WORKS!
    Program main2.c:
    // small program to call a LabVIEW shared library
    #include
    #include
    #include
    int main(void)
    void * h_lvrt;
    void * h_hello;
    void (* hello)(void);
    char * error;
    printf("Hello from C!\nLets call LabVIEW now\n");
    // open LabVIEW RunTime shared library
    // in my computer located at /usr/local/lib/liblvrt.so
    h_lvrt = dlopen("/usr/local/lib/liblvrt.so", RTLD_NOW);
    // check for error
    error = dlerror();
    if (error) {
    printf("error : could not open LabVIEW RunTime library\n");
    printf("%s\n", error);
    return 1;
    // open hello shared library
    // in my computer located at /home/darss/lv_call/hello.so
    h_hello = dlopen("hello.so", RTLD_NOW);
    // check for error
    error = dlerror();
    if (error) {
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("error : could not open hello library\n");
    printf("%s\n", error);
    return 1;
    // get function hello from library hello.so
    hello = dlsym(h_hello, "hello");
    // check for error
    error = dlerror();
    if (error) {
    // close hello shared library
    dlclose(h_hello);
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("error : could not get the hello function\n");
    printf("%s\n", error);
    return 1;
    // call hello function
    hello();
    // close hello shared library
    dlclose(h_hello);
    // close LabVIEW RunTime shared library
    dlclose(h_lvrt);
    printf("Bye ... \n");
    return 0;
    The command to compile main2.c, i.e. dynamically linking library lvrt at execution of main2 program:
    gcc -Wall -o main2 main2.c -l dl
    The LD_LIBRARY_PATH still defined and exported.
    IT DOES NOT WORK!
    Program output:
    Hello from C!
    Lets call LabVIEW now
    error : could not open hello library
    /home/darss/lv_call/hello.so: undefined symbol: WaitLVDLLReady

  • How can I insert a a chart made with Numbers, into a Pages document?

    Hallo. How can I insert a document of "pages" made a chart with "numbers"?

    Open the numbers file, select the chart, tap copy. Opne the Pages document, tap and hold for the menu, tap paste.

  • How to fill an object made with line segment?

    I made some objects with the line segment tool, but i cant seem to fill them. Not even when i group the lines and try to fill after.
    Anybody an idea? thanks

    Live paint will do the trick you select the lines and click on the live paint bucket tool which will make the lines a part of live paint group, there are options for controlling the gap distance.
    Then select a color and click the live paint tool somewhere in the area that the lines are used to define. it will fill with that color.n CS 2 and 3 I think well CS3 for sure.

  • I can't here the recording I made with a midi/USB controller.

    I'm have problems with logic pro 9.1.8 sometimes with the midi/usb controller. I just recorded a track with the midi/usb controller which i just heard myself record it but now that I'm done with the recording I cant here any of the USB/midi controller tracks that I just made.  So now I cant here all the tracks playing at once.  I can only hear the files that I dragged in from  itunes.  What am I doing wrong?

    Are the midi regions that you recorded showing up? Also, have you checked if anything is accidentally soloed or muted?

  • How can I open an old file made with 2009 iWork'09?

    Some years ago I prepared a book using iWork'09 program. Two months ago the hard disk of my iMac didn't work anymore. I did the backup of my work before the beracking. My iMac war repaired and I tried to open my old work with iWork'09 but the program doesn't function and I am not be able to open my old book. how can I solve this problem? Thanks for the reply.
    gianfranco fromroma

    What version of Pages do you have? Pages 5.2 can not open Pages '08 documents.
    Can you reinstall iWork '09 from the original Installer or DVD?:
    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=432&sid=b30ce34087d5 fbeb2201a9ab44ca2402&mforum=iworktipsntrick
    Peter

  • How can i had CSS buttons i made with RAGE ButtonDesign to iweb?

    good day to you
    i have the RAGE ButtonDesign software that can make for me nice css buttons
    after i made the button i get 3 files : index.html , rage_style.css and the a png file
    how do i integrated this to my iweb site?

    You need to place html code that is produced into the html snippet on your website and click apply for any code to work on your site. An index.html page is no good to you, to be used in iWeb as iWeb has no import facility.
    Take your html code and place it in an html snippet and see what happens.

  • How do I browse the whole list of Made with iBooks Author?

    As I remember, before major update of iTunes for mac, I could browse the whole list of "Made with iBooks Author".
    However, I can't find the way to browse the whole list of "Made with iBooks Author".
    Is the way of browsing disappeared, or changed?
    The link of the whole list used to be right above the "New & Coming Soon" in the "Made with iBooks Author" Window.
    After the major update of iTunes for mac, It just disappeared
    I really want to browse the whole list of it so I can buy the books which was made with iBooks Author.

    Pull down View > Show Sidebar.

  • Made with a mac

    hi,
    can anyone tell me if the "made with a mac" print on the back page still exists if you create an aperture book. It sort of annoyed me in the iphoto books and was wondering if the PRO app did the same ?
    David

    Hi girlwithacamera
    It's big, you'll notice for sure.
    I guess I could live with it if it was a small byline, but in principle I do not want to advertise for Apple and pay for it. Also Apple may have printed my book, but the content is created by me and I can not see how Apple should take credit for that. If that was the case, it should read made by Canon for camera, SanDisk for flashcard, Adobe for Photoshop, BeanBurners for customer software etc...
    If Apple put any value on the advertising, I like to know how much, and then have the option to pay a bit more and get no ads.
    Best Regards - Per

Maybe you are looking for

  • How can I add a new visa from another country?

    Hello, I purchased my iPad from the US while studying in the US, now that im back home at Saudi Arabia I cant find a way to input my new visa's informations in my apple account, how can I do so?

  • Touchsmart and Windows 8

    Im looking at a new Touchsmart (420-1100) and plan to upgrade to windows 8 but i keep reading stuff about how the screens wont work well for windows8 because of something to do with the "bezel" around it.....is this true? and should i wait for a true

  • Data Not Updating Properly in CUBE

    Hello Experts, There is one critical issue which i am facing in FI - CO scenario. please provide your inputs. we have a requirement to generate PNL statement  report from FI - CO. means the values for Revenue, COGS must be come from FI and Operating

  • NWDS not showing keywords

    Hi xperts, As you know, when we type in any keyword in NWDS it gets highlighted with different font /color. But in my system, when I type keywords like if, try, catch; it simply disappears. I have reinstalled every thing (right from java) but the pro

  • Anybody using the Buffalo Terastation (or similar)?

    Is anybody using the Buffalo Terastation as a NAS or Backup drive? I'm looking into getting some external RAID storage for backups and such, and the Terastation looks really good and you can't beat the price. The biggest problem I see is that apparen