Use of swatches in Illustrator

Hi All,
A few questions about a logo project I'm working on: My client wants an  image of a hot air balloon, made of stone, in his logo. He wants the  stone to appear like a stone wall, i.e. many small stones put together  to make the wall. I know this is ridiculously complicated for a logo,  but I want to have a go at it and see if it works - if not, I'll  encourage him to simplify.
So, what I've managed to do so far is to place an image of a stone wall  and use the Live Trace feature to convert it to vectors. I then dragged  the image to the Swatches palette to create a new swatch, after which  I'll fill the various part of the balloon with the swatch.
My first question: Will this still be a vector image using this process?
My second question: Is there an easier way to accomplish this?
My third question: Does anyone know of a resource where I might find a  free, simple vector image of stones or rocks?
Thanks in advance for any input provided.
Sam

function(){return A.apply(null,[this].concat($A(arguments)))}
My client wants an  image of a hot air balloon, made of stone, in his logo.
First, tell your client: 'Wow. That's original. Ever heard of Led Zepplin? Iron Butterfly?"
function(){return A.apply(null,[this].concat($A(arguments)))}
He wants the  stone to appear like a stone wall, i.e. many small stones put together  to make the wall. I know this is ridiculously complicated for a logo,  but I want to have a go at it and see if it works - if not, I'll  encourage him to simplify.
Not really ridiculously complicated. Your job as a logo designer is to simplify a concept visually.
function(){return A.apply(null,[this].concat($A(arguments)))}
So, what I've managed to do so far is to place an image of a stone wall  and use the Live Trace feature to convert it to vectors.
No way I would do that for a logo. A proper logo is succinct, boiled-down to its essence; not only in terms of design, but also in terms of its construction. That makes it robust in all its eventual uses. Auto-tracing is a very amateurish last resort. Don't autotrace to create an original logo. Draw it properly.
function(){return A.apply(null,[this].concat($A(arguments)))}
I then dragged  the image to the Swatches palette to create a new swatch.
If you dragged the autotrace results to the Swatches palette, you just created a Pattern Swatch.
function(){return A.apply(null,[this].concat($A(arguments)))}
...after which  I'll fill the various part of the balloon with the swatch.
That will only work if you're just going for a very flat, non-dimensional treatment (potentially boring). Moreover, though, you specified stone, not bricks. That's antithetical to a Pattern Swatch, which merely repeats the same graphic.
function(){return A.apply(null,[this].concat($A(arguments)))}
My first question: Will this still be a vector image using this process?
If the content that you used to define the Pattern Swatch is only vector artwork, then yes, the resulting Pattern Swatch will be only vector artwork. When you use the autotrace feature, you have the choice whether to retain the original raster image. But again; this is not best practice either way, and I don't know why you would want a Pattern Swatch for this.
function(){return A.apply(null,[this].concat($A(arguments)))}
My second question: Is there an easier way to accomplish this?
Don't look for "easy"; look for best practice. If you're going to draw a proper logo, you need to know how to use a program like Illustrator. One of many possible ways to proceed would be:
1. Draw a pattern of rocks, arranged like a rock wall, as purely vector line art. Store it as a Symbol.
2. Use 3D Effect to create the geometry of the balloon's surface (or one of its gore sections). Map the Symbol to the surface, using the invisible geometry option.
3. If using multiple objects, "assemble" them to look like the finished baloon.
4. The result is NOT the final. It's just a "sketch" to help you impart convincing geometry. Use that as something to trace manually. Make the artwork artful. Then make its paths as simple and clean as possible. (This implies knowing how to draw efficient, tidy paths.)
function(){return A.apply(null,[this].concat($A(arguments)))}
My third question: Does anyone know of a resource where I might find a  free, simple vector image of stones or rocks?
One of the foremost goals of a logo is uniqueness. There is no way your client can truly own his logo if it is built from clipart. A proper logo must be original.
JET

Similar Messages

  • How can i use gradient tool in Illustrator

    Hello,
    I am trying to use gradient tool in illustrator.
    My image is active but how can i start using gradient tool.
    I clicked the tool and tried to drag with my mouse but, i can not activate the tool itself.
    Can any one help me, I am using CS4 extended with Mac.
    Thank you very much.
    Steve

    First in order to use the gradient tool you must have a gradient fill applied to an object not an raster image it can be a vector illustration..
    Select the object or objects or groups of objects
    Now click on the gradient bar in the Gradient Panel while the object(s) are still selected that will fill the object with the default gradient.
    You can also use a gradient swatch in the Swatches panel, you can make a gradient swatch as well.
    Now your object(s) is filled with the default gradient fill.
    Now in the tool panel select the gradient tool this will allow you to control the way the gradient is oriented and applied to the object.
    Now you can change the colors and add colors to you gradient by clicking on the color markers below the gradient bar which will bring up the color or swatches panels.
    Now finally and this is the most important factor to consider you have to purchase a book and or tutorials and the book that will probably do you the most good at this stage is Mordy Golding's Real World Illustrator CS 4 this you shoud do before you go any further. Honest.

  • Can i use this script in illustrator?

    can i use this script in illustrator?
    Newsgroup_User

    // This script exports extended layer.bounds information to [psd_file_name].xml
    // by pattesdours
    function docCheck() {
        // ensure that there is at least one document open
        if (!documents.length) {
            alert('There are no documents open.');
            return; // quit
    docCheck();
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.PIXELS;
    var docRef = activeDocument;
    var docWidth = docRef.width.value;
    var docHeight = docRef.height.value;
    var mySourceFilePath = activeDocument.fullName.path + "/";
    //  Code to get layer index / descriptor
    cTID = function(s) { return app.charIDToTypeID(s); };
    sTID = function(s) { return app.stringIDToTypeID(s); };
    function getLayerDescriptor (doc, layer) {
        var ref = new ActionReference();
        ref.putEnumerated(cTID("Lyr "), cTID("Ordn"), cTID("Trgt"));
        return executeActionGet(ref)
    function getLayerID(doc, layer) {
      var d = getLayerDescriptor(doc, layer);
      return d.getInteger(cTID('LyrI'));
    var stackorder = 0;
    // function from Xbytor to traverse all layers
    traverseLayers = function(doc, ftn, reverse) {
      function _traverse(doc, layers, ftn, reverse) {
        var ok = true;
        for (var i = 1; i <= layers.length && ok != false; i++) {
          var index = (reverse == true) ? layers.length-i : i - 1;
          var layer = layers[index];
          //  alert("layer.typename  >>> "+layer.typename ); 
          if (layer.typename == "LayerSet") {
            ok = _traverse(doc, layer.layers, ftn, reverse);
          } else {
      stackorder = stackorder + 1;
            ok = ftn(doc, layer, stackorder);
        return ok;
      return _traverse(doc, doc.layers, ftn, reverse);
    // create a string to hold the data
    var str ="";
    // class using a contructor
    function cLayer(doc, layer) {
    //this.layerID = Stdlib.getLayerID(doc, layer);
      this.layerID = getLayerID(doc, layer);
      //alert("layer ID: " + this.layerID);
      this.layerWidth = layer.bounds[2].value - layer.bounds[0].value;
          this.layerHeight = layer.bounds[3].value - layer.bounds[1].value;
      // these return object coordinates relative to canvas
          this.upperLeftX = layer.bounds[0].value;
          this.upperLeftY = layer.bounds[1].value;
          this.upperCenterX = this.layerWidth / 2 + layer.bounds[0].value;
          this.upperCenterY = layer.bounds[1].value;
          this.upperRightX = layer.bounds[2].value;
          this.upperRightY = layer.bounds[1].value;
          this.middleLeftX = layer.bounds[0].value;
          this.middleLeftY = this.layerHeight / 2 + layer.bounds[1].value;
          this.middleCenterX = this.layerWidth / 2 + layer.bounds[0].value;
          this.middleCenterY = this.layerHeight / 2 + layer.bounds[1].value;
          this.middleRightX = layer.bounds[2].value;
          this.middleRightY = this.layerHeight / 2 + layer.bounds[1].value;
          this.lowerLeftX = layer.bounds[0].value;
          this.lowerLeftY = layer.bounds[3].value;
          this.lowerCenterX = this.layerWidth / 2 + layer.bounds[0].value;
          this.lowerCenterY = layer.bounds[3].value;
          this.lowerRightX = layer.bounds[2].value;
          this.lowerRightY = layer.bounds[3].value;
       // I'm adding these for easier editing of flash symbol transformation point (outputs a 'x, y' format)
       // because I like to assign shortcut keys that use the numeric pad keyboard, like such:
       // 7 8 9
       // 4 5 6
       // 1 2 3
          var windowW=2048;
          var windowH=1536;
       this.leftBottom = this.lowerLeftX + ", " + (windowH-this.lowerLeftY);
       this.bottomCenter = this.lowerCenterX + ", " +  (windowH-this.lowerCenterY);
       this.rightBottom = this.lowerRightX + ", " + this.lowerRightY;
       this.leftCenter = this.middleLeftX + ", " + this.middleLeftY;
       this.center = this.middleCenterX + ", " + this.middleCenterY;
       this.rightCenter = this.middleRightX + ", " + this.middleRightY;
       this.leftTop = this.upperLeftX + ", " + this.upperLeftY;
       this.topCenter = this.upperCenterX + ", " + this.upperCenterY;
       this.rightTop = this.upperRightX + ", " + this.upperRightY;
      // these return object coordinates relative to layer bounds
          this.relUpperLeftX = layer.bounds[1].value - layer.bounds[1].value;
          this.relUpperLeftY =  layer.bounds[0].value - layer.bounds[0].value;
          this.relUpperCenterX = this.layerWidth / 2;
          this.relUpperCenterY = layer.bounds[0].value - layer.bounds[0].value;
          this.relUpperRightX = this.layerWidth;
          this.relUpperRightY = layer.bounds[0].value - layer.bounds[0].value;
          this.relMiddleLeftX = layer.bounds[1].value - layer.bounds[1].value;
          this.relMiddleLeftY = this.layerHeight / 2;
          this.relMiddleCenterX = this.layerWidth / 2;
          this.relMiddleCenterY = this.layerHeight / 2;
          this.relMiddleRightX = this.layerWidth;
      this.relMiddleRightY = this.layerHeight / 2;
          this.relLowerLeftX = layer.bounds[1].value - layer.bounds[1].value;
          this.relLowerLeftY = this.layerHeight;
          this.relLowerCenterX = this.layerWidth / 2;
      this.relLowerCenterY = this.layerHeight / 2;
          this.relLowerRightY = this.layerHeight;
          this.relLowerRightX = this.layerWidth;
          this.relLowerRightY = this.layerHeight;
      return this;
    // add header line
    str = "<psd filename=\"" + docRef.name + "\" path=\"" + mySourceFilePath + "\" width=\"" + docWidth + "\" height=\"" + docHeight + "\">\n";
    // now a function to collect the data
    var isParentAvailable=false;
    var prevLayerSetName="";
    function exportBounds(doc, layer, i) {
        var isVisible = layer.visible;
        var layerData = cLayer(doc, layer);
    //alert("layer.name  >>> "+layer.name );
    //alert("typename >>> "+layer.typename);
    /*if(layer.parent.name == "ParentTest"){
    for(var i in layer.parent){
        alert(" III >>> "+i+"<<<layer.parent>>"+layer.parent[i]);
      if(isVisible){
    // Layer object main coordinates relative to its active pixels
    var startStr="";
        if(layer.parent.typename=="LayerSet"){
            if(prevLayerSetName!="LayerSet")    {
                startStr="\t<parentlayer id='"+layer.parent.name+"'>\n\t";
            }else{
                   startStr="\t";
            // endStr="\t</parentlayer>\n";
             prevLayerSetName=layer.parent.typename;
          }else{
               if(prevLayerSetName=="LayerSet"){
                    startStr="\t</parentlayer>\n";
                prevLayerSetName="";
      var positionStr=layer.name.split(".")[0].substr(layer.name.split(".")[0].length-3,layer.name. split(".")[0].length);
      var assetPosition=leftTop;
      if(positionStr=="L_B"){
      assetPosition=leftBottom;
      }else if(positionStr=="B_C"){
      assetPosition=bottomCenter;
      }else if(positionStr=="R_B"){
      assetPosition=rightBottom;
      }else if(positionStr=="L_C"){
      assetPosition=leftCenter;
      }else if(positionStr=="C"){
      assetPosition=center;
      }else if(positionStr=="R_C"){
      assetPosition=rightCenter;
      }else if(positionStr=="L_T"){
      assetPosition=leftTop;
      }else if(positionStr=="T_C"){
      assetPosition=topCenter;
      }else if(positionStr=="R_T"){
      assetPosition=rightTop;
      var str2 =startStr+ "\t<layer name=\"" + layer.name
      + "\" stack=\"" + (i - 1) // order in which layers are stacked, starting with zero for the bottom-most layer
      + "\" position=\"" + assetPosition // this is the
      + "\" layerwidth=\"" + layerData.layerWidth
      + "\" layerheight=\"" + layerData.layerHeight
      + "\" transformpoint=\"" + "center" + "\">" // hard-coding 'center' as the default transformation point
      + layer.name + ".png" + "</layer>\n" // I have to put some content here otherwise sometimes tags are ignored
    str += str2.toString();
    // call X's function using the one above
    traverseLayers(app.activeDocument, exportBounds, true);
    // Use this to export XML file to same directory where PSD file is located
        var mySourceFilePath = activeDocument.fullName.path + "/";
    // create a reference to a file for output
        var csvFile = new File(mySourceFilePath.toString().match(/([^\.]+)/)[1] + app.activeDocument.name.match(/([^\.]+)/)[1] + ".xml");
    // open the file, write the data, then close the file
    csvFile.open('w');
    csvFile.writeln(str + "</psd>");
    csvFile.close();
    preferences.rulerUnits = originalRulerUnits;
    // Confirm that operation has completed
    alert("Operation Complete!" + "\n" + "Layer coordinates were successfully exported to:" + "\n" + "\n" + mySourceFilePath.toString().match(/([^\.]+)/)[1] + app.activeDocument.name.match(/([^\.]+)/)[1] + ".xml");

  • I saved a lot (100)custom swatches in Illustrator CS4 and want to transfer them to a new Mac book bu

    I saved a lot (100)custom swatches in Illustrator CS4 and want to transfer them to a new Mac book but can not find the user defined  folder location on my old I Mac. Anybody know how to find them?

    MacHD/Users?<yourname>/Library?Application Support/Adobe/AdobeAICS#/Presets/en_US/Swatches would be a place to start.

  • How can I use my fonts in Illustrator (CS4) without Suitcase?

    How can I use my fonts in Illustrator (CS4) without Suitcase? InDesign has a fonts folder, but not Illustrator.

    i found this info from this link: http://forums.adobe.com/message/3466307.  The user who asked this question stats this solution worked for them.
    First in Language and text preferences in the system preferences select Hebrew as the input method.
    The in Illustrator click the text tool in your document or drag to create a text frame.
    While the cursor is active select a hebrew font
    then go to the menu bar for the finder and where there is the American Flag pull it down and select hebrew
    now go back to the document and start typing.
    Remember if you do not have the ME version you have to have it flush right and type backwards.

  • How to use photoshop brushes in Illustrator

    HI, I finally took the plung and purchased Illustrator. Can anyone tell me how to use Photoshop brushes in Illustrator please? Illistrator does not seem to like the .abr extension.
    Thank you for your help.
    Cheers.
    Onearmjohn..

    You can find a lot of information here.
    http://websitetips.com/graphics/illustrator/#tutorials-brushes
    Look down towards the bottom
    There are some tutorials about creating your own brushes in Adobe Illustrator
    Hope this helps you?
    Regards
    Phillip

  • Return code 1073807364 (0x40010004) on Windows when using COM to script Illustrator and Photoshop

    Hi,
    I'm using python via COM to run Illustrator and Photoshop on a Windows machine and I occasionally get this return code in python from the subprocess: 1073807364 (0x40010004). I've done some googling and it seems to indicate that that's a Windows return code for "the process is still running". Is it safe for me to let the process continue when I see that return code? Or does that indicate something else?
    Thanks.

    I have similar setup to yours.
    From my point of view you need more RAM. I have 16GB. Than you will need to change in preferences to adjust memory used by PS and Illustrator. Maybe take a look at virtual memory in Windows and disable aero effects.
    Disk. It is better to have one disk for system (eg.SSD) and one for documents. But don't buy something like WD Green series that is intended for backup.
    Graphics. It is not a major player I think for your tasks, but OpenGl can speed up rendering in Photoshop and Illustrator.
    When exporting AI with layers to PSD it will always show "out of memory" unless you turn off anti aliasing.
    and the most important thing reinstall Windows after some time... It will work faster.

  • I am unable to select a colour using the swatches

    I am unable to select a colour using the swatches, I have a greyish line under the colour I am trying to select and the colour I am trying to use will not highlight - this is a new problem, as it has been working fine - I have pushed something so how do I undo it? Please help, this is very frustrating

    Thank you, the step where I went to tools, options and then selected a product for the application worked. It was a problem with .pdf files. I don't understand how all of a sudden it changed from what had worked all along, but, I changed it back from xps viewer to adobe and all is working fine.
    I appreciate your help!

  • Using Sonata Font in Illustrator on IBookG4

    I'm using Sonata Font in Illustrator on an IBookG4 laptop and I'm suddenly NOT able to get all of the music notation that I can on a desktop.
    For example, each character on the keyboard corresponds to each musical notation; then there is the shift + character to get more musical notation; and also option + character to get the rest of the musical notation.
    I can not use option + character to get the last of the musical notation that I need.
    Is it the laptop keyboard or Illustrator?
    Please advise

    There may be some kind of font conflict; the use of a font utility or other
    tool may be warranted. This specialized use of software appears to have
    limited your hoped-for replies in solving the immediate problem.
    In other instances, where some keyboard combinations don't work on a
    portable Apple computer (whether or not they did work, then failed, is
    another matter) there is an Apple support document which suggests
    the use of an external keyboard will do more than the built-in one can.
    The following link may not apply to your situation, or model:
    [ Apple Portables: Some Key Combinations May Not Be Recognized... ]
    I'm wondering if there isn't something simple, other than managing fonts,
    that could help this issue go away. I suppose you've tried routine system
    maintenance such as repair disk permissions and other duties; and if
    the hardware is suspect, ran the Apple Hardware Test to see if there is
    another indication of a keyboard failure..? Since you say it was sudden,
    I wonder if the built-in keyboard is the problem. Best of luck...!

  • Have purchased Adobe CC today. How many more apps I can use apart from photoshop, illustrator and indesign. Can I use all the listed apps within the membership fees charged per month? Or I will be charged extra?

    Have purchased Adobe CC today. How many more apps I can use apart from photoshop, illustrator and indesign. Can I use all the listed apps within the membership fees charged per month? Or I will be charged extra?

    Cloud Plans https://creative.adobe.com/plans
    -and subscription terms http://www.adobe.com/misc/subscription_terms.html
    -what is in the entire Cloud http://www.adobe.com/creativecloud/catalog/desktop.html

  • Saving a swatch on illustrator cc trial

    i have created swatches on illustrator cc trial but looks like it is not saving it. I s it because the trial doesnt allow you to save it or I m doing something wrong here???

    Swatches are linked to the actual file.
    Creating swatches in one document does not mean that those swatches will automatically be available in other/blank documents.
    What you want to do is to save Swatch Libraries (see Swatches palette flyout menu) and import them as and when required.
    Furthermore you may want to modify your custom document profiles and include the swatches there.

  • Illustrator not responding when using pattern swatches

    I made one pattern swatch and when I start using it and than try to save, my illustrator stops responding and just gives me the spinning wheel. I tried to make the pattern smaller, open a new document to paste it in there and save.....nothing works. I can not save any new designs with the pattern swatch. Help please.

    I tried that too...still not responding. I ended up just making clipping masks....works too, but the swatches were easier to use.

  • Using Asian languages in Illustrator CS4

    Hello,
    First time posting to this forum. I searched existing topics (and Google) extensively, but I either didn't find what I needed or I'm not informed enough to determine if what I'm reading is actually the answer I need
    My company has a bunch of marketing flyers that need to be translated into Chinese, Cambodian, Vietnamese and some other languages to satisfy some new clients who speak these languages. Our translators have sent us .doc files with the translated text.
    My problem is, I cannot get this translated text into Illustrator. One example font is "mingliu.ttc"...I utilized "Install files for East Asian languages" in my Windows XP settings and installed the mingliu.ttc font like I would any other font. It DOES show up in my Adobe list, but it types English characters.
    Assuming I can get my hands on all of the exact fonts our translators are using, does anyone know how to get them to properly display in Adobe?

    Yes, tedious. I learned this when I first migrated from FreeHand.
    The trick is to not bother making tint swatches (!) (I know, I know. A departure from custom. Of course, you can make them if you want, but they turn out to be superfluous.)
    Instead, I color select objects with "unnamed" tints, and when I need to modify them, I use the magic wand with a very low tolerance to select the fills (pretty instantly) and strokes (pretty instantly) and adjust the slider accordingly. Because I've gotten so accustomed to this contortion, I've actually forgotten how much of a contortion it is compared to what you're accustomed to.
    If someone knows a better way, have at it by all means please.

  • How to save swatches in illustrator

    Hello, when I try to save swatches to a folder in illustrator, I can not select .ase file only .ai file. and I am not able to open the saved swatches. I need to place them in a folder so that I can have color swatches for a client and use them for multiple branding projects.
    -KS

    this is what it looks like

  • Modify tint swatch in Illustrator CS4

    If you make a tint swatch in InDesign CS4, you can edit the percentage applied simply by double clicking the swatch and dragging the percentage slider at the bottom of the dialog box. How can I achieve the same results in Illustrator?
    P.D.: Now, the only solution I found (very complex for such a simple task) is to use the various select options of the Selection menu to select the objects using the same tint percentage, modify it with the color panel and then saving another tint swatch.

    Yes, tedious. I learned this when I first migrated from FreeHand.
    The trick is to not bother making tint swatches (!) (I know, I know. A departure from custom. Of course, you can make them if you want, but they turn out to be superfluous.)
    Instead, I color select objects with "unnamed" tints, and when I need to modify them, I use the magic wand with a very low tolerance to select the fills (pretty instantly) and strokes (pretty instantly) and adjust the slider accordingly. Because I've gotten so accustomed to this contortion, I've actually forgotten how much of a contortion it is compared to what you're accustomed to.
    If someone knows a better way, have at it by all means please.

Maybe you are looking for

  • Windows 2012 answer file and DVD drive letter

    Hi my question is about applying unattend XML file into a Wim file. I have read other thread here but still I  can't get it to work. so here is the situation: I have installed windows 2012  then I have SYSPREPed it and then I created a WIM file with

  • Update to 6.1.1 failed - stuck in recovery mode?

    I am a Vodafone customer in the UK with an iPhone 4S.  I didn't actually see the warning from Vodafone saying not to update to 6.1.0 and so went ahead and did it.  I had no problems whatsoever, was working perfectly fine.  I then saw the release of 6

  • Issue on Authorizations

    Hi all I have some reports to be given authorizations, these are BPS reports .For that i have created a role and published the required reports from query desiner to the newly crated role.For these reports I have to give access to write data as these

  • Aperture library gone

    A few weeks ago i clicked into my aperture icon and there was only one picture in the library and the girl in the apple shop clicked some buttons and restored the proper library back. Please can someone tell me how to do this as I have lost my librar

  • Nokia wants to Move some of its customers from NSU...

    Is it possible that may be Nokia wants to move some of its customers, the ones who have phones with OTA capabilities, from NSU to OTA? OTA shows my N96 has V20 available, but NSU says V12 is the latest. hmmmmmmm, what do you think?