Splitting apart objects(paths?)

Hi, I'm currently working on a typography project and I've come across a problem that I've never seemed to solve in illustrator.
I created a white box with the cutouts of the letters that I want using the pathfinder tool, but what I would like to do now is split the white "box" down the middle, where each letter ends at the top and bottom. I want to be able to either change the colour of each side or to continue the pattern so that the shape of the letters is implied by half an outline... That sounds confusing but really all I need is to split this in two.
Thanks!

paperclipsalad,
I want to be able to either change the colour of each side
You may do that by cutting the white shape; it will be necessary to cut any gaps between the letters.
... or to continue the pattern so that the shape of the letters is implied by half an outline...
This, or maybe both, may be accomplished if you:
1) Create a copy of each letter in place and hide everything else,
and for each letter:
2) Cut at top and bottom or wherever you get meaningful segments for the following, so that you get pairs of opposite paths enclosing (part of) the letter,
and for each pair of paths (with the Object>Blend Options>1 step and Align to path):
3) Object>Blend>Make
and then
4) Join all the paths 3) and add segments if needed.
Obviously, especially for some letters such as the Alef and the white part trapped in the middle, you will have to make decisions which will determine the final look.

Similar Messages

  • In Openscript I am not able to use a Variable in object Path

    Hi,
    I have an object :
    "/web:window[@title='Repricing Pattern Details -New']/web:document[@name='rhsContent']/web:form[@id='newRepricingPatternRPAT' or @name='repricePatternsForm']/web:select[(@id='selectRPA1' or @name='repricePattern.absoluteRepriceEvent[0].repriceType') and multiple mod 'False']"
    in this 'selectRPA1' and [0] are the numeric value which keeps changing.
    How can I handle this to make the value get changed for every loop.
    I have used below thing, this is not giving any error to me in script but while execution it is saying " Invalid Object Path".
    String OBJ_REPRICING_TYPE = "/web:window[@title='Repricing Pattern Details -New']/web:document[@name='rhsContent']/web:form[@id='newRepricingPatternRPAT' or @name='repricePatternsForm']/web:select[(@id='selectRPA"+LEVEL_ADD+"' or @name='repricePattern.absoluteRepriceEvent["+LEVEL+"].repriceType') and multiple mod 'False']";
    Thanks in advance.
    Regards,
    Abhay

    Hi,
    try using selectRPA* and [*] in your xPath
    ie,
    "/web:window[@title='Repricing Pattern Details -New']/web:document[@name='rhsContent']/web:form[@id='newRepricingPatternRPAT' or @name='repricePatternsForm']/web:select[(@id='selectRPA*' or @name='repricePattern.absoluteRepriceEvent[*].repriceType') and multiple mod 'False']"
    Cheers,
    Deepu M

  • JS CS4 splitting the document path

    I'm trying to split the document file path so I may navigate up one or two folders and then into a specific subfolder.
    When I try to split the "myDoc.filePath" it errors. If I split "myDoc.name" it works correctly.
    var myDoc = app.activeDocument;
    var myDocPath = myDoc.filePath;
    var mySplit = myDoc.name.indexOf ("_");
    var myFileName = myDoc.name.slice (0,mySplit);
    var myPdfFolder = myFileName + "pdf";
    var mySavePath = myDocPath
    var mySplit2 = myDoc.filePath.indexOf (myFileName);
    var myFinalPath = myDoc.filePath.slice (0,mySplit2) + myFileName + "/" + myPdfFolder;
    alert(myFinalPath);
    Can someone shed light on how to split the document path?
    Thanks,
    John
    Document path: ~desktop/N123456/working/N123456_01
    Note: the last folder name does not always exist. Often the "working" folder is the last folder. Working folder and N123456pdf reside on the same level.
    Goal is to change the save to document path: ~desktop/N123456/N123456pdf

    Here's some code I wrote recently to find a folder named "Snippets" starting from the location of a document. It first looks in the same folder and then its parent and on up until it reaches the top of the file hierarchy:
    //DESCRIPTION: Search for Snippets folder from Document location
    (function() {
        if (app.documents.length > 0) {
            var myFolder = locateRelatedFolder(app.documents[0].filePath, "Snippets");
            if (myFolder == null) {
                alert("Unable to locate Snippets folder");
                return;
            } else {
                alert("Snippets folder is: " + myFolder);
        function locateRelatedFolder(folder, name) {
            while (folder != null) {
                var relatedFolder = Folder(folder + "/" + name);
                if (relatedFolder.exists) return relatedFolder;
                folder = folder.parent;
        } // end locateRelatedFolder
    I've enclosed the code in an anonymous function. Don't let that put you off. You could just delete the first line after the description and the last line.
    Dave

  • 2 CF servers,but different remote object path for flash

    I have 2 CF servers,but different remote object path for flex in each server.
    Eg for one flex program in my dev server I define the remote object as follows
    <mx:RemoteObject id="myService" destination="ColdFusion" source="cfide.flex.path_to_file" showBusyCursor="true">
    But in my live sevrver I have to do this.
    <mx:RemoteObject id="myService" destination="ColdFusion" source="path_to_file" showBusyCursor="true">
    How can I make both the same?

    Thanks mate,
    I tried    <use-mappings>true</use-mappings> and restarted the server but its still not working
    I think this is the spoiler:
    ColdFusion mappings apply only to pages processed by the ColdFusion Server with the cfinclude and cfmodule tags. If you save CFML pages outside of the Web root (or whatever directory is mapped to "/"), you must add a mapping to the location of those files on your server.
    from
    http://www.adobe.com/livedocs/coldfusion/5.0/Installing_and_Configuring_ColdFusion_Server/ basiconfig9.htm
    so that ruins it for flex I guess?

  • Import-CMDriver fails with "Import-CMDriver : Invalid object path "

    I am attempting to use Import-CMDriver but it fails with:
    "Import-CMDriver : Invalid object path "
    I can see that it is adding the driver to the catalog, but it is failing to add it to the package and I can't figure out why.  I have tried with different inf files and deleted and created different packages.  It just doesn't work.  Here is
    the command that I am running.  I don't see any reason why it wouldn't work.
     Set-Location abc:
        foreach($iniFile in $infFilesToDeploy){
            $cmDrivePackage = Get-CMDriverPackage -Name "PackageName"
            $cmDriverCat = Get-CMCategory -CategoryType "DriverCategories" -Name "PackageName"
            $cmDrivePackage
            $iniFile
            Import-CMDriver -UncFileLocation $iniFile -ImportDuplicateDriverOption AppendCategory -AdministrativeCategory $cmDriverCat -EnableAndAllowInstall $True -DriverPackage $cmDrivePackage -UpdateDistributionPointsforDriverPackage $false
    As I said, it is seeing the ini file since it it importing it into the catalog.  It just won't add it to the package.  It also leaves the package in a locked state if I try to modify it after I run this command.
    Anyone have any ideas why this command doesn't function?
    Thank you for your time.

    Hi,
    What's the version of your SCCM? I ran this command "Import-CMDriver -UncFileLocation... " on my SCCM 2012 R2 CU1. I didn't get the error above.
    I also tried the command below, it ran successful.
     $d=Get-CMDriverPackage -Id "..."
     Import-CMDriver -UncFileLocation "\\..." -DriverPackage $d -EnableAndAllowInstall $true
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • How do I batch-rename objects/paths (not just layers)?

    Question from a complete n00b:
    I need to rename a large number of selected objects/paths. This is because I want to use another script that only works when my objects have the default name, "<Path>". So really, I just need to remove existing names of objects.
    This other script is here:
    http://kelsocartography.com/blog/?p=325
    Of course, I could manually remove names by double-clicking on objects in the layers palette and deleting the name, but that's no fun.
    I've found some great scripts for renaming layers, but nothing for non-layer objects.
    First, I'm trying to remove names from ALL objects in the document.  once that's working, I want to only remove names of selected objects.
    Here's my very simple non-working javascript - (the whole thing):
    app.activeDocument.pageItem.name = "";
    my test Ai file is also really basic: a few rectangles, some of which have been named in the layers palette.
    When I run this, I get:
    Error 21: undefined is not and object.
    Line: 1
    ->     app.activeDocument.pageItem.name = "";
    I've tried a number of other approaches, and either get "undefined is not an object" or nothing happens. 
    pageItem has "name" as a writable property, so I think it's what to use, but I really don't know what I'm doing - help!
    I'd also happy to use actions, but I'm stuck on that too.

    Thanks!!
    Here's my final script:
    ////START SCRIPT////
    //how to use: select objects that you want to rename, then run script
    //note - new name may not display until you unselect objects
    var docRef = activeDocument;
    for (var i=0; i < docRef.pageItems.length; i++)
           if (docRef.pageItems[i].selected == true)
                   docRef.pageItems[i].name = "";
    ////END SCRIPT////
    currently, it renames with no text.  In other words, it removes existing names.
    One thing that was messing me up was that new names are not immediately displayed - you have to unselect your selected objects before names in the layers palette refresh.

  • Elements 9 editor screen splits apart and desktop shows through the gap- Help

    I run elements 9. on a mac. Never really had a problem before. Today I decided to open a photo from iphoto to edit in photoshop. Neve been a problem
    before but now the various panels of the editor screen have split apart and the desktop shows through. The same thing happens when opening a photo from inside the Organiser. Hope someone can help to get it all back together.  At the time I was trying to design some Christmas cards.

    Thanks so much- I didn't realise it was an option-must have clicked it by mistake. I can see now how it can be used but the project box at the bottom is off the screen.

  • "Invalid object path" Driver Import

    PS P01:\> Add-CMDriverToDriverPackage -DriverName $item.LocalizedDisplayName -DriverPackageName $HWType -verbose
    VERBOSE: Executing WQL query: SELECT * FROM SMS_DriverPackage WHERE Name='Microsoft.HyperV.W7X64'
    VERBOSE: Query options: ExpectResults
    VERBOSE: Performing the operation "Add" on target "DriverToDriverPackage: Name="Microsoft.HyperV.W7X64"".
    VERBOSE: Executing method 'RequestLock' against class 'SMS_ObjectLock'
    VERBOSE: Input properties:
    VERBOSE: -- :: ObjectRelPath == SMS_DriverPackage.PackageID="P010009C"
    VERBOSE: -- :: RequestTransfer == True
    VERBOSE: Output properties:
    VERBOSE: -- :: AssignedMachine == <SERVER>
    VERBOSE: -- :: AssignedObjectLockContext == b72216b2-de12-453a-98d6-89bbcdd88443
    VERBOSE: -- :: AssignedSiteCode == P01
    VERBOSE: -- :: AssignedTimeUTC == 10/28/2014 10:19 PM
    VERBOSE: -- :: AssignedUser == <USER>
    VERBOSE: -- :: LockState == 1
    VERBOSE: -- :: RequestID == 3F595BA4-BEAF-4707-B824-A786AD02EAD5
    VERBOSE: -- :: RequestState == 10
    VERBOSE: -- :: ReturnValue == 0
    VERBOSE: Lock acquisition on 'SMS_DriverPackage.PackageID="P010009C"' returned: Granted
    VERBOSE: Executing WQL query: SELECT * FROM SMS_Driver WHERE LocalizedDisplayName='Microsoft Hyper-V Network Adapte
    r'
    VERBOSE: Query options: ExpectResults
    VERBOSE: Query 'SELECT * FROM SMS_Driver WHERE LocalizedDisplayName='Microsoft Hyper-V Network Adapter' ' processed
    1 results.
    VERBOSE: Executing WQL query: Select CTC.ContentID From SMS_CIToContent As CTC Join SMS_Driver As DR On DR.CI_ID=CT
    C.CI_ID Where DR.CI_ID=16786189
    VERBOSE: Query options: None
    VERBOSE: Executing method 'ReleaseLock' against class 'SMS_ObjectLock'
    VERBOSE: Input properties:
    VERBOSE: -- :: ObjectRelPath == SMS_DriverPackage.PackageID="P010009C"
    VERBOSE: Output properties:
    VERBOSE: -- :: ReturnValue == 0
    VERBOSE: Lock release on 'SMS_DriverPackage.PackageID="P010009C"' success: True
    Add-CMDriverToDriverPackage : Invalid object path
    At line:1 char:2
    + Add-CMDriverToDriverPackage -DriverName $item.LocalizedDisplayName -DriverPacka ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : NotSpecified: (Microsoft.Confi...rPackageCommand:AddDriverToDriverPackageCommand) [
    Add-CMDriverToDriverPackage], WqlQueryException
    + FullyQualifiedErrorId : UnhandledExeception,Microsoft.ConfigurationManagement.Cmdlets.Osd.Commands.AddDrive
    rToDriverPackageCommand
    Does anybody know a workaround for this bug?
    Same error in Add-CMDriverToDriverPackage and Import-CMDriver
    How will be the WMI Commandlet?
    Please Help. THX

    Hi,
    Please refer to the link below:
    Import-CMDriver
    http://technet.microsoft.com/en-us/library/dn151073(v=sc.20).aspx
    More info:
    ConfigMgr Driver Injector
    This tool will help you to capture installed drivers on your workstations and then will automatically import them in ConfigMgr 2012.
    http://gallery.technet.microsoft.com/ConfigMgr-Driver-Injector-aae7d17d
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.
    Hi Xin Guo,
    thx for post, but you can try the syntax and it will fail, cause what i read there is since 2012 R2 CU 3 some changes also in SQL and so the command with Paramater
    -DriverPackageName
    will not work correctly and abort, so the Technet Page is here not the Solution about.
    Also i don't need an extra Tool, cause i have all driver's but for the massimport i want to use wmi, powershell.
    Help :)

  • Selection Tools: unexpected duplicate objects & paths (CS5)

    Hello,
    Illustrator has gone insane.. Anytime I use either Selection Tool, the object or the path selected is automatically duplicated and the original object/path is left untouched. Example: I create a square shape object; select the object with the Selection Tool and try to move it. The original square remains as it was and a new square is created.
    Any suggestions? I've tried rebuilding Illustrator Preferences any number of times in a variety of ways but nothing helps.
    Thanks,
    Shaun

    I thought the same and I switched out the keyboard, but no change.
    However I then ran a 'deep clean' with Applejack (a single-user troubleshooter tool for Mac OS) and after a restart all appears to be normal. I suspect there was a corrupted cache file somewhere which was making Adobe apps think the alt key was down.. (Odd that no other apps had issues though.)
    At any rate the issue has been resolved and hopefully the post will help someone else someday.
    -S

  • Plastic Hinge "Cover" Splitting Apart

    The black plastic piece (thats visible when closed) of my MBP is splitting apart. I haven't dropped my macbook, or damaged it in any other way.
    Is this covered by warranty? I didn't purchase applecare, but instead purchased the Best Buy black protection that covers accidental damage and such. They'll repair it, but it'll be out for 2-4 weeks. I use my MBP for work, so that's not a possibility.
    http://i130.photobucket.com/albums/p263/sokennethwasall/photo-5.jpg

    Hi
    Sorry to hear you are having problems, quite alarming to find those cracks appearing! I just had to have a look at mine after seeing your picture but I am OK at the moment.
    You have from new a years warranty which will cover such problems. Sadly it will mean that it will have to go back to Apple to be fixed unless you can get them to agree to an exchange. Your best bet is to go to your nearest Apple Store and have a word. It might be worth booking an appointment then you won't have to hang around to see someone.
    Here is a link to the UK Genius Bar appointments, there are ones for each country:
    http://www.apple.com/uk/retail/geniusbar/
    All the best and hope it is sorted for you.
    Phil

  • Indesign CS4 Table splitting apart

    I'm using Indesign CS4. I created a table and then I went back in to add some text. As soon as I added some text, my table just split apart into 2 separate tables. I'm so perplexed???

    We figured it out. (Pacificed is a coworker of mine, but I was unavailable to troubleshoot yesterday.)
    It appeared to be a corrupted cell in one of the rows. I cut it, and repasted the cells in that row and everything reflowed nicely. I've had it happen in the past as well. I'm not sure what caused it.
    The camera icon doesn't seem to be working for her (I don't even think there's a way to attach images from the website), so I'm testing it with the following photo:

  • Class object path?

    Hi
    I have created my own class. Lets say I called it
    vector
    I need refference to object this class, but after refering to
    this object it retuns
    [object Object] insted of full path
    I want my class object acting execty as MC class objects.
    What should I add to my class?
    I need this, becouse I want keep reference to object in array
    to loop through then, delete objects and knew witch objest is
    "active" at the moment
    example:

    micahkoga,
    > If you would like your class to behave like a movie clip
    > then your class must extend the movieclip class:
    As I understand it, the panell is only looking for an
    understanding of
    object references; I hear no intention (or need) to extend
    MovieClip.
    panell,
    The reason your trace shows [object Object] is because that
    string --
    "[object Object]" -- is the default toString() output of all
    objects. If
    you want your object's trace() output to be something else,
    you'll have to
    give it a toString() method.
    Out of curiosity, why do you need the object to return its
    reference
    path? If you already know the path (which, of course, you do
    -- because you
    traced the object), then you already know it.
    David
    stiller (at) quip (dot) net
    Dev essays:
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • How to put bsp application mime object path in WAD 7.0?

    hi all.
    I'm already know 'bwmimerep:///sap/bw/mime/Customer' will be changed to /sap/bw/customer/  mime repository path when it's published in WAD7.0.
    but is there any way get mime path custom BSP Application?
    for example If I made test.jpg in 'ZBW' bsp application
    I should use full url   'http://domain:8000/sap/bc/bsp/sap/zbw/test.jpg'  instead of relative url '/sap/bc/bsp/sap/zbw/test.jpg' if I include url in WAD7.0
    is there any idea put relative url in WAD 7.0 certianly I don't want include full url because develop and product server domain is different.
    thanks.

    it looks like bwmimerep:/// prefix is the only one available which points to SAP->BW under mime repository.
    the standard help states (http://help.sap.com/saphelp_ppm400/helpdata/en/44/5001d197c01193e10000000a155369/frameset.htm) to use custom images in WAD
    "You can store your MIME objects anywhere in the MIME Repository under SAP->BW"
    May be we need a mechanism to create bcmimerep, publicmimerep, etc.
    Regards
    Raja

  • Iterate through a set of scatter graph objects (paths) and replace with Brush or Symbol instances.

    I am trying to write write a script for Adobe Illustrator (AS or JS) which takes a set of objects and one by one replaces them with a brush style applied to a single point (one anchor path) or a symbol instance. Needs to be accurate as it's a graph with 300 'points'.
    Looking for help with the following tasks:
    Selecting all the paths belonging to a particular layer named "Replace". (Even if User input to a dialogue is required I only know how to use layer item numbers)
    How to get the central co-ordinates of a small path that makes a shape like a triangle, square, circle or diamond. Some of the sets are compound paths but they are all symmetrical but for the triangle and I want the centre (X,Y) to assign as properties for the Brush anchor point or Symbol anchor point.
    How to change layers from one layer (containing the set of paths) to a new drawing layer (where script will create the symbols/brush instances)
    What I'm also wondering:
    Would it be best to iterate the sample set and get cords and draw create the new symbol instance (possibly in a new layer and possibly delete the originating path) one by one as it were? Or be best to run through all the points and create a data record of all the co-ordinates then iterate a second time and create all the objects using the co-ordinates for symbol (X,Y) anchor properties
    All I have to work from is the sample Adobe Script that creates a tree symbol the duplicates it around the edges of the page. Not quite there yet :-)
    One of the reasons I'm doing this is that I can then stretch the graph to expose the data and not have to transform each to get the shapes back into shape but mainly because some of the paths are very jaggy and ugly out of the stats program (Excel?!).
    Sample File: link
    Before is like this: After is like this:

    Jaggy like this

  • After using Object Path Outline stroke

    on a line segment, I still have a center line. Why?

    No. I just turned it into a fill object but the center path still shows. It's not really there but it shows as if it is.
    To add a degree of difficulty, I have it on my lab computer but not on my office copy. Using CS6.
    I think it must be a preference setting but I can't locate it.

Maybe you are looking for

  • Can i use the same itunes account for 2 iphones?

    CAN YOU USE 2 IPHONES WITH 1 ITUNES ACCT?

  • How can I prevent Safari/iCloud Keychain from saving data in our password field?

    We have a web-based management system where administrators can set and update passwords for individual users. While I love iCloud keychain personally, the problem we are finding is that if the user, once prompted by Safari to Save the password in iCl

  • Inserting data from  a table  to an XML file

    I want to insert the values from this xml file emp.xml into a table Employees : <EMPLOYEES> <EMP> <EMPNO>7369</EMPNO> <ENAME>SMITH</ENAME> <JOB>CLERK</JOB> <HIREDATE>17-DEC-80</HIREDATE> <SAL>800</SAL> </EMP> <EMP> <EMPNO>7499</EMPNO> <ENAME>ALLEN</E

  • Authorization to execute ABAP program

    Hi, I would like to execute one ABAP program, so what authorizations i need to have please le tme know? It is developed by our developers i want to test the program in produvction server. Thanks praveen

  • Select Statement or Function Module

    Hi all, I have lakhs of records in my database.When I am using the SAP standard function module C1F2_SUBSTANCES_READ for retreiving data it is taking time.I know all the data base tables .Shall I use to retreive data using select statements instead o