Swatch Library Name Limit

Items in the swatch libraries are allowed to have names up to 31 characters long.  We need longer names up to 50 characters long.

Hi,
According to your post, my understanding is that you want to set a calculated column to get the current Document Library name with this formula:="Project name, "&TEXT(Created,"dddd, dd-mmm-yyyy, hh:mm").
Per my knowledge, there is no out of the box way to accomplish it, as the calculated column do calculations based on other columns.
I recommend that you can create a workflow to set a Single line of text column to get the current Document Library name, then create the calculated column based on this text column with this
formula: =[Library Name]&", "&TEXT(Created,"dddd, dd-mmm-yyyy, hh:mm").
The workflow is shown as below:
The result is shown as below:
Best Regards,
Linda Li
TechNet Community Support

Similar Messages

  • How to create a swatch library from multiple png files?

    Illustrator CC
    I am having a difficult time trying to create a new swatch libray of patterns from multiple png files. The way I am doing this is very slow and repetitive and seems silly for a tool as advanced as the latest CC suite including illustrator.
    What it seems I must do is open all the png files in Illustrator, creating multiple workspaces, drag one png file into the swatch window, then save that window as a library, close the existing window to reveal the next png file, open the user library I just created, drag the next image into the currently active swatch window, then drag the previous swatch/s from the user library into the current active swatch window, resave and replace the user defined swatch library (now with two images in there)fromthe updated current active swatch panel/window, close the existing workspace to reveal the next image file, and then repeat the process again, slowly building the user defined swatch library up by adding one image at a time and then adding back into the Swatch panel the previously built up library of swatches again one at at time.  (you can select all from the existing  user defined library and drag over into swatch panel, but this creates at least one  duplicate on each cycle for as soon as you click on the first swatch in the library, it adds itto the current swatch panel and then when you select all swatches to drag across it includes the first swatch and copies it again)
    This is a very slow process to build up a swatch library. For some reason you cannot drag swatches directly into  the user defined library you have created, only into the active swatch window for each workspace. I searched the web and forums  for answers but could find none. There must be an easier way,  just can't find it.
    Ideally, the best option would be a swatch window  option that allows the import directly from a list of selected files in the finder.
    Any ideas out there?

    Monika,
    Thank you for responding, however I am not exactly clear on what you mean by "libraries are plain AI files". For example, I cannot find a file with the same name as my user defined library name that I have created. I can find the preinstalled swatches listed under Adobe Application Support... Library... Swatches, but a user defined folder is not present and the library sets that I have already created are not visible. I have tried searcing my Mac for a (name).ase file and still no luck (at least for the name I was looking for). I can open the user defined library from the Swatch library icon on the bottom left of the Swatch panel, but when I open this I cannot drag and drop add new swatches directly to this library. As stated above, I have to add each pattern, one at at time to the normal swatch panel, then add back the previous ones I have saved from the user defined library to the swatch panel and then save threm all as an updated user defined library. Thus by repeating this process, it builds up the user defined library one at a time.
    I am using Illustrator CC if this makes a difference.

  • Auto update colors (from custom swatch library) in documents..

    Hi all,
    I searched the forums for all I could, but found no solution for this one...
    So here goes.
    Is there a way to use a 'user defined' swatch library to (auto)update colors in several artworks/files that use that specific swatch library.
    I know I could reload and 'merge' all the swatches from the library with the ones used in the file (with the same name).
    Select the one you want to keep and then the one you'd like to overwrite, merge!
    But here's what I tried and what I think should be possible..
    I have twelve files that all use colours from one 'user defined' swatch library ['Human'], so all twelve files have the same 'skin' colour where needed.
    Now I need the 'skin' colour (in alle twelve files) to be a shade darker...
    My idea was to open the swatch library 'Human' in Illustrator, change the swatch called 'skin' and save.... Presto! All twelve files using this 'skin'colour should now be one shade darker...
    But this doesn't seem to work...
    Swatches are set to 'global'..
    What am I missing or will this be in the 'features requests' part of these forums next?
    Oh and I'm working in:
    Illustrator CS5, windows 7, 64 bit
    Kind regards,
    Erik

    As far as I know color swatches are referenced from the file itself, they are not like a linked image that can update all files using it. So, with swatches you have to apply the change to each file. Probably should be possible to automate this with a script.

  • Convert CSV to Swatch Library?

    Hi everyone
    I have a list of 300+ colors that I need to make into a swatch library for Illustrator. The data looks like this:
    GREEN GRASS,127,187,0
    PALE YELLOW,241,235,135
    LIGHT YELLOW,238,231,93
    DAFFODIL,249,231,21
    MOONBEAM,249,223,22
    etc.
    It's RGB I think. In any case, I am just starting with Illustrator and I know NOTHING about scripting. Can anyone help me get aaaaalllll these colors into a swatch library, please? I am getting a migraine just thinking about putting them in one by one. LOL
    I found something here, but that didn't work for me. I get an error on processing on line 75. http://forums.adobe.com/message/2877951
    Error 24: app.doScript is not a function, Line 75 _> app.dpScript(speakThis, 1095978087); //AppleScript.
    I get as far as choosing the csv file, and then I get the error. I think this outputs as CMYK, but not sure. Does anyone know of another script, or can anyone help me out?
    Thanks,
    Gina

    Muppet's script was for InDesign -- I guess so it could save the swatches as an .ASE file. Illustrator's Javascript lacks this command ...
    Here is a variant, based upon MM's, but stripped of all ID specific stuff. This one creates your new swatches in the current document; it creates a new swatch group with the CSV file name.
    function main() {
         if (isOSX()) {
              var csvFile = File.openDialog('Select a CSV File', function (f) { return (f instanceof Folder) || f.name.match(/\.csv$/i);} );
         } else {
              var csvFile = File.openDialog('Select a CSV File','comma-separated-values(*.csv):*.csv;');
         if (csvFile != null) {
              fileArray = readInCSV(csvFile);
              var columns = fileArray[0].length;
              //alert('CSV file has ' + columns + ' columns…');
              var rows = fileArray.length;
              //alert('CSV file has ' + rows + ' rows…');
              if (columns == 4 && rows > 0) {
                   exchangeSwatches(csvFile);
              } else {
                   var mess = 'Incorrect CSV File?';
                   isOSX ? saySomething(mess) : alert(mess);
         } else {
              var mess = 'Ooops!!!';
              isOSX ? saySomething(mess) : alert(mess);
    main();
    function exchangeSwatches(csvFile) {
    //    var docRef = app.documents.add();
         var docRef = app.activeDocuments;
         var swatchgroup = docRef.swatchGroups.add();
         swatchgroup.name = csvFile.name;
         with (docRef) {    
            /*  for (var i = swatches.length-1; i >= 0; i--) {
                   swatches[i].remove();
              for (var a = 0; a < fileArray.length; a++) {
                   var n = fileArray[a][0]; // First Column is name              
                   if (n == 'Cyan' || n == 'Magenta' || n == 'Yellow' || n == 'Black') {         
                        n = n + '-???'; // Reserved swatch name;
                   r = parseFloat(fileArray[a][1]); // Second Column is Red
                   g = parseFloat(fileArray[a][2]); // Third Column is Green
                   b = parseFloat(fileArray[a][3]); // Forth Column is Bloo
                   if (r >= 0 && r <= 255 && g >= 0 && g <= 255 && b >= 0 && b <= 255) {
                     var color = new RGBColor;
                     color.red = r;
                     color.green = g;
                     color.blue = b;
                     var swatch = swatches.add();
                     swatch.name = n;
                     swatch.color = color;
                     swatchgroup.addSwatch(swatch);
                   } else {
                        var mess = 'Color values are out of range?';
                        isOSX ? saySomething(mess) : alert(mess);
    function readInCSV(fileObj) {
         var fileArray = new Array();
         fileObj.open('r');
         fileObj.seek(0, 0);
         while(!fileObj.eof) {
              var thisLine = fileObj.readln();
              var csvArray = thisLine.split(',');
              fileArray.push(csvArray);
         fileObj.close();
         return fileArray;
    function saySomething(stringObj) {
         var speakThis = 'I say, "' + stringObj + '"';
         alert(speakThis);
    function isOSX() {
      return $.os.match(/Macintosh/i);

  • Cs6, mac, gradients iconsistent colour using swatch library

    Hi all
    Wondering if you can help?
    Using Mac 10.6.8 and Ilustrator CS6.
    I'm drawing up some items [300] that are coloured in 1 of 10 gradients.
    On the first two drawings I had the 10 swatches and then selected the 'Save swatch library as AI...'  command from the swatches file.
    On the next drawings I loaded this swatch library and coloured up the rest of the drawings, using some of the 10 colours.
    Now, when I look through the illustrations, there are some colour differences on various files. In the swatch palette there are multiple versions of my original swatch colours with numbers on the end... I did not create these ... i.e. 'Red Gradient 2', 'Red Gradient 3'
    Where did these come from?
    When checking the gradients, they are indeed slightly different colours... HOW? they were all from the same swatch library?
    The black gradient is also the same, it's not the same colour and there are 2 & 3 names derivatives.
    All files are RGB colour mode, and have ADOBE RGB 1998 colour profile attached.
    Any advice appreciated.
    GS

    @Michael – I second that!
    On with my example shown in #2:
    There is a hidden feature in the Gradient Panel:
    With a right-click in the "red area" I marked in the following screen shot, you can add a new gradient swatch to the swatches panel:
    That will not work in other areas of that panel…
    Uwe

  • How do I script Illustrator to get a PANTONE swatch from a swatch library

    I've been searching high and low, but cannot find the answer to this question.  Quite simply, I need a script to convert all PANTONE spot colors in an Illustrator file into their CMYK equivalents fromthe PANTONE BRIDGE book.
    In order to accomplish this, however, it would seem necessary for the script to search through the various PANTONE swatch library color books to find the one I'm looking for.  I have a String of the one I need, but I don't see how ExtendScript can search within the various swatch libraries (or even just the one library—"PANTONE+ Color Bridge (Un)Coated".  I can only seem to look at swatches that are in the main "Swatches" palette using Document.swatches.  Any ideas?

    I'm afraid that code gives me an 'MRAP' error in the ESTK.  But, I have actually found a way around the problem by utilizing your original suggestion of having a separate file with all of the Pantone swatches added to it so the script can grab that swatch, grab its getInternalColor, turn it into a CMYKColor, then assign the values retrieved from getInternalColor to the new swatch's four Color properties.
    Yes, it's a bit of a roundabout method and takes a lot of code, but it gets the job done quickly, and that's what I need.  Here's the code I have (The "workDoc" has already been assigned to the currently open document.):
    // To finish up, we delete the other two layers beyond the first and then save the file for use as digital printing file.
    // First, delete the two layers.
    workDoc.layers[2].locked = false;
    workDoc.layers[2].remove();
    workDoc.layers[1].locked = true;
    //          workDoc.layers[1].remove();
    // Before grouping and mirroring all of the artwork, it's time to convert all spot colors to process
    // using the PANTONE Bridge book as a reference.
    // First, let's open up the reference document that has all of the PANTONE Bridge book colors as swatches.
    var bridgeDoc = app.open(File("~/Documents/PantoneBridge.ai"));
    // Since attempting to colorize textFrame objects seems to crash Illustrator, we're best off just converting them all to paths anyway.
    var texts = workDoc.textFrames;
    for (var t = 0; t < texts.length; t++)
              texts[t].createOutline();
    var items = workDoc.pathItems;
    for (var i = 0; i < items.length; i++)
              var myPath = items[i];
              if (myPath.fillColor .typename == "SpotColor")
                        try {var procSwatch = workDoc.swatches.getByName(myPath.fillColor.spot.name + "P");}
                                  catch (e) {var procSwatch = addProcSwatch(myPath.fillColor.spot.name + "P", bridgeDoc.swatches);}
                        changePaths(myPath.fillColor.spot.name, procSwatch.color);
              if (myPath.fillColor.typename == "GradientColor")
                        for (var g = 0; g < myPath.fillColor.gradient.gradientStops.length; g++)
                                  var gStop = myPath.fillColor.gradient.gradientStops[g].color;
                                  if (gStop.typename == "SpotColor")
                                            try {var procSwatch = workDoc.swatches.getByName(gStop.spot.name + "P");}
                                                      catch (e) {var procSwatch = addProcSwatch(gStop.spot.name + "P", bridgeDoc.swatches);}
                                            changePaths(gStop.spot.name, procSwatch.color);
              if (myPath.strokeColor .typename == "SpotColor")
                        try {var procSwatch = workDoc.swatches.getByName(myPath.strokeColor.spot.name + "P");}
                                  catch (e) {var procSwatch = addProcSwatch(myPath.strokeColor.spot.name + "P", bridgeDoc.swatches);}
                        changePaths(myPath.strokeColor.spot.name, procSwatch.color);
              if (myPath.strokeColor.typename == "GradientColor")
                        for (var g = 0; g < myPath.strokeColor.gradient.gradientStops.length; g++)
                                  var gStop = myPath.strokeColor.gradient.gradientStops[g].color;
                                  if (gStop.typename == "SpotColor")
                                            try {var procSwatch = workDoc.swatches.getByName(gStop.spot.name + "P");}
                                                      catch (e) {var procSwatch = addProcSwatch(gStop.spot.name + "P", bridgeDoc.swatches);}
                                            changePaths(gStop.spot.name, procSwatch.color);
    var rasters = workDoc.rasterItems;
    var bitmapFound = false;
    var checkForTint = false;
    for (var i = 0; i < rasters.length; i++)
              var myRaster = rasters[i];
              if (myRaster.channels == 1 && myRaster.colorizedGrayscale) {if (myRaster.colorizedGrayscale) {bitmapFound = true;}}
              else if (myRaster.channels < 4 && myRaster.colorizedGrayscale)
                        if (/^PANTONE/.test(myRaster.colorants[0]))
                                  try {var rastSwatch = workDoc.swatches.getByName(myRaster.colorants[0] + "P");}
                                            catch (e) {var rastSwatch = addProcSwatch(myRaster.colorants[0] + "P", bridgeDoc.swatches);}
                                  changeRasters(myRaster.colorants[0], rastSwatch.color);
    if (bitmapFound) {alert("Found at least one colorized raster image in the Digital file.  Please manually change their colorants to CMYK.\nPlease see Chris McGee for more information.");}
    if (checkForTint) {alert("At least one raster image in the art has been converted to CMYK.  However, if its former spot color was tinted less than 100%, then you will need to manually change the colorant in the Digital file to match.\nPlease see Chris McGee for more information.");}
    // We should be done now with the PANTONE Bridge reference document, so close that.
    bridgeDoc.close(SaveOptions.DONOTSAVECHANGES);
    app.redraw();
    function addProcSwatch(swatchToGet, docSwatches)
              var bridgeSwatch = docSwatches.getByName(swatchToGet);
              var newSwatch = workDoc.swatches.add();
              var spotName = bridgeSwatch.color.spot.name;
              var spotValue = bridgeSwatch.color.spot.getInternalColor();
              newSwatch.color = CMYKColor;
              newSwatch.name = spotName;
              newSwatch.color.cyan = spotValue[0];
              newSwatch.color.magenta = spotValue[1];
              newSwatch.color.yellow = spotValue[2];
              newSwatch.color.black = spotValue[3];
              return newSwatch;
    function changePaths (colorName, newColor)
              var allItems = workDoc.pathItems;
              for (var j = 0; j < allItems.length; j++)
                        var thisPath = allItems[j];
                        if (thisPath.fillColor.typename == "SpotColor" && thisPath.fillColor.spot.name == colorName)
                                  var thisTint = thisPath.fillColor.tint / 100;
                                  thisPath.fillColor = newColor;
                                  thisPath.fillColor.cyan *= thisTint;
                                  thisPath.fillColor.magenta *= thisTint;
                                  thisPath.fillColor.yellow *= thisTint;
                                  thisPath.fillColor.black *= thisTint;
                        if (thisPath.fillColor.typename == "GradientColor")
                                  for (var g = 0; g < thisPath.fillColor.gradient.gradientStops.length; g++)
                                            var gStop = thisPath.fillColor.gradient.gradientStops[g];
                                            if (gStop.color.typename == "SpotColor" && gStop.color.spot.name == colorName)
                                                      var thisTint = gStop.color.tint / 100;
                                                      gStop.color = newColor;
                                                      gStop.color.cyan *= thisTint;
                                                      gStop.color.magenta *= thisTint;
                                                      gStop.color.yellow *= thisTint;
                                                      gStop.color.black *= thisTint;
                        if (thisPath.strokeColor.typename == "SpotColor" && thisPath.strokeColor.spot.name == colorName)
                                  var thisTint = thisPath.strokeColor.tint / 100;
                                  thisPath.strokeColor = newColor;
                                  thisPath.strokeColor.cyan *= thisTint;
                                  thisPath.strokeColor.magenta *= thisTint;
                                  thisPath.strokeColor.yellow *= thisTint;
                                  thisPath.strokeColor.black *= thisTint;
                        if (thisPath.strokeColor.typename == "GradientColor")
                                  for (var g = 0; g < thisPath.strokeColor.gradient.gradientStops.length; g++)
                                            var gStop = thisPath.strokeColor.gradient.gradientStops[g];
                                            if (gStop.color.typename == "SpotColor" && gStop.color.spot.name == colorName)
                                                      var thisTint = gStop.color.tint / 100;
                                                      gStop.color = newColor;
                                                      gStop.color.cyan *= thisTint;
                                                      gStop.color.magenta *= thisTint;
                                                      gStop.color.yellow *= thisTint;
                                                      gStop.color.black *= thisTint;
    function changeRasters (colorName, newColor)
              var allRasters = workDoc.rasterItems;
              for (var j = 0; j < allRasters.length; j++)
                        var thisRaster = allRasters[j];
                        if (thisRaster.channels > 1 && thisRaster.channels < 4 && thisRaster.colorizedGrayscale)
                                  if (/^PANTONE/.test(thisRaster.colorants[0]) && thisRaster.colorants[0] == colorName)
                                            thisRaster.colorize(newColor);
                                            checkForTint = true;
    // That concludes all of the color-changing steps.
    I hope this helps anyone else who is running into this (admittedly unusual) situation.

  • How do I select a set of swatches (ideally at once) from a long list to create a swatch library?

    I just started using PS (CS6) and I added 10 new custom swatches that I want to save in a new swatch library. However, I still have the PS default library of swatches listed (that contains scores of colors). Can I select multiple swatches at once to save them for the swatch library? Or do I need to delete ALL the default swatches first manually, then save the remaining colors in the new swatch library? If so, it makes it a daunting task...

    I watched a tutorial on the Preset Manager and was able to finally select multiple swatches to create a swatch library by using the [Shift] key while selecting.
    One of the problems was that the swatches were displaying as small thumbnails and it was difficult for me to see each swatch selected (plus, the outline of the selections were blue, and many of the colors I selected were blue).
    What also through me off was that when you display swatches in a pane (say, when working on an image), one of the dropdown options is "Save Swatches", which I thought allowed you to save swatches in a library (not just an individual swatch).
    Without the tutorial, I don't think I would have been able to figure out the right steps! Thanks for the tips, guys.

  • Library name compatibility 32/64 bit and across platforms

    Hi all,
    I have a numerical C library which I wish to link to using JNI. The binary will be shipped in the jar file to keep everything "clean" for the client.
    Unfortunately the SUN System.mapLibraryName method is completely useless when it comes to bundling binaries that are specific to an architecture. Some tests I have performed show:
    Linux 64 bit Pentium M: os.name = "Linux", os.arch = "amd64", mapLibraryName = "libNAME.so"
    Linux 32 bit: os.name = "Linux", os.arch = "i386", mapLibraryName = "libNAME.so"
    iBook G4: os.name = "Mac OS X", os.arch = "ppc", mapLibraryName = "libNAME.jnilib"
    Windows XP 32 bit: os.name = "Windows XP", os.arch = "x86", mapLibraryName = "NAME.dll"
    Sun Blade 1500 (64 bit): os.name = "SunOS", os.arch = "sparc", mapLibraryName = "libNAME.so"
    you will notice that Linux 32/64 and Solaris all use "libNAME.so"... despite the architecture they are running on! (Apple is not a problem because it supports Universal binaries).
    I'm thinking that I will have to use some horrible library name and loading code to deal with these problems... creating library names along the lines of
    Linux 64 bit Linux: "libNAME-linux-intel-64.so"
    Linux 32 bit Linux: "libNAME-linux-intel-32.so"
    Linux 32 bit PPC Linux: "libNAME-linux-ppc-32.so"
    iBook G4: "libNAME.jnilib"
    Windows XP 64 bit: "NAME-64.dll"
    Windows XP 32 bit: "NAME-32.dll"
    Sun Blade 1500 (64 bit): "libNAME-sunos-64.so"
    My main concern is Linux and Windows 32/64 bit, rather than cross-CPU handling.
    I am not looking forward to writing this... has this problem come up before? And if so, what have people done to deal with it? I guess an alternative would be to use a naming convention in the directory structure, but that's really the same solution.
    Kind regards,
    Sam

    I have concluded that the best way to solve this problem is to create a pre-processing method for System.loadLibrary that takes the library name (as it would be passed to System.loadLibrary) and returns a more operating system and architecture-friendly String.
    I have created a class that does OS/Architecture detection and then returns the following on various platforms for the input parameter "name":
    Apple (G3, G4, G5, Intel): "name" (expects user to build Universal Binaries)
    Linux (i686): "name-linux-x86"
    Linux (Intel/AMD 64): "name-linux-x86_64"
    Linux (sparc): "name-linux-sparc"
    Linux (PPC 32 bit): "name-linux-ppc"
    Linux (PPC 64 bit): "name-linux-ppc_64"
    Windows XP/Vista (i686): "name-windows-x86"
    Windows XP/Vista (Intel/AMD 64): "name-windows-x86_64"
    Sun Solaris (Blade): "name-sun-sparc"
    Sun Solaris (Intel 64 bit): "name-sun-x86_64"
    This String can then be safely sent to System.loadLibrary, which will do the usual additions of "lib", ".so", ".jnilib" and ".dll" and search in all the right places. It is not possible to write a wrapper for System.loadLibrary itself as native library loading needs to know the name of the calling class.
    I'd be happy to share the code with anyone who requests, but it's a bit too long to post here.
    Incidentally... in my research into native library loading, I encountered the "Bundle-NativeCode" entry for Manifest files. It may be possible to construct an entry for each os.name/os.arch pair to assign native binaries accordingly. However it appeared that every pairing would need to be specified (whereas my solution is more forgiving), and I'm not entirely sure if that method allows one to define the (shortened form of the) library name... it may just be useful for bundling binaries inside the jar file.

  • Custom swatch library isn't updating in CC

    I have a big custom swatch library that I'm continually making additions and corrections to. I have it set as persistent, and the library works fine, but it doesn't update when I make changes to it. As far as I can tell, it's still stuck at the point where I upgraded to CC a few months ago. I've tried unchecking persistent, closing the library and Illustrator, then reopening and reinstalling the library, and it's still reverting to the old version.
    Anyone else having this problem?
    I've just upgraded to 17.1 on a Windows 7 Pro machine.

    Hi OuraySportswear,
    Do you have this library file outside of presets folder? Currently this feature sync these libraries from presets folder only.
    Sanjay.

  • Edit custom swatch library

    Hi All,
    This may be a stupid question:
    Once I have created and saved a custom swatch library - lets call it "custom"
    How would I add a new colour to "custom" - or edit a colour value in "custom" - is this new swatch library locked?
    Most frustrating.
    Thank you

    open the library file, just through File > Open. add a swatch to the document. save the document swatches as swatch library

  • With multiple libraries, why don't I see library name when opening iPhoto?

    I have split my iPhoto Library, so that I have one library per year, eg library name: iPhoto 2009. When I open iPhoto, choosing a library, shouldn't I see the library name somewhere? Thanks,
    Owen

    Generally, when I open iPhoto, the header in the iPhoto window just says "iPhoto", regardless of the library used, but, on one occasion, I did see the library name in the header. I don't know what caused this.
    I backup photos to an external HD, but I prefer to also have a backup DVD, at least for the originals. I can't do that with a single iPhoto Library.
    Thanks,
    Owen

  • Library names in java ( JNI )

    I want to load library name called MathLib.
    but i am getting error like below..
    Exception in thread "main" java.lang.UnsatisfiedLinkError: no MathLib in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1517)
    at java.lang.Runtime.loadLibrary0(Runtime.java:788)
    at java.lang.System.loadLibrary(System.java:834)
    at MathLib.<clinit>(MathLib.java:12)
    i want to know is MathLib is available or not..
    if yes
    i want an example on this MathLib and also some library names in Java

    i mean if mathlib is available i want one example
    program on that.I have no idea whether it is. Did you try Google?
    and u r telling that mathlib is not available.I just said it's not available to your program.
    now i want to know the library name which one have to
    give in the above line code.The file name of the library you want to use, of course. How would we know which one it is? mathlib.dll?

  • Changed library name - FCPX won't open?

    Ouch.
    I inadvertently changed the Library name of an FCP X file in the Finder Window ... and now FCP X won't open.  I immediately changed it back to the original name, and FCP X still won't open.  The FCP X logo comes up, and then the app seems to freeze and not open.
    Sound familiar?
    There must be a work around or a fix, right?
    All ears,
    Ben

    HI Al,
    Interesting.  And that's why I did the change IN the Finder Window.  I couldn't click the Library open IN the app.  It was as if frozen.  I tried a dozen times to click, or to hit enter when highlighted.  So I thought it wasn't something that could be done.
    In fact, now that you've encouraged me that such a thing is possible I'm going to try again.
    In the meanwhile I had a few crashes, re-installed FCPX, muddled around a bit.  It seems to be working now.  Could have had something to do with FCPX 10.1.1 working with an earlier project done in FXPX 10.0 ... and when I opened FCPX (I think I opened it to set up another project) there was no automatic request to update the original project.  Maybe something weird happened there and caused some kind of corruption.  But in the end I did get the original project updated ... and am now learning how to organize in this little beastie.
    I did learn something interesting about relinking media though.  You can't JUST relink clips to their original media files in FCPX 10.1 ... because when you go to locate your original movie ... it's imbedded in the Library (all those hidden folders), and there is no way to access the library that way.  Someone over at Creative Cow created a workaround, quite brilliant I think.  It works anyhow.  In the Finder Window you 'open package contents', work your way to the folder that contains the unlinked media files, then drag that folder to the margin on the left of Finder Window (where you can drag folders you work on regularly).  THEN you can do a relink and work your way to the folder you need that way.  Works fine.
    I'm going to try renaming my Library now.  Wish me luck.  So useful to be able to do this.
    Thank you kindly Al,
    Ben

  • Tried opening a file in library and it states can't open database with library name? It says Relaunch then will not open? and Blocks me completely from Aperture. I have to go to Finder to Rename it? I need this file how do I get it to open?

    Tried opening a file in library and it states can't open database with library name? It says Relaunch then will not open? and Blocks me completely from Aperture. I have to go to Finder to Rename it? I need this file how do I get it to open?

    Aftershotz,
    You're going to have to give a bit more information.
    What do you mean by "opening a file in library?"  There is no function of Aperture to open files -- you can open (switch) libraries.
    You'll have to be more specific about error messages, too.  Perhaps some screenshots would be useful to diagnose your problem.  "Can't open database with library name" is not enough detail about what Aperture is really telling you.
    nathan

  • "Check that the library name an prefix are correct." Yep, they are. Now what?

    Hello,
    I have a customer who is using a Labview wrapper for an IVI driver to create an application to send commands to an LXI instrument.  The problem is even the initialize call results in the following error:
    Driver Status:  (Hex 0xBFFA000A) Check that the library name (VTEXSwitch.dll) and prefix (VTEXSwitch) are correct.
    There are no problems communicating with the instrument using a web browser and NI-MAX sees the instrument fine.  The customer gets this exact same error when they rename the actual DLL file to something different, which indicates to me that the labview wrapper isn't finding it at all.  I've looked everywhere I can think of, but I can't see how Labview is supposed to know the path where it is looking for that DLL.
    This same wrapper has worked for a lot of other people.  I made sure they had installed the IVI Compliance Package and IVI Shared Components, and tried reinstalling the IVI driver from the manufacturer.  The problem is still there.  What should I do?

    BurlapSage wrote:
      I've looked everywhere I can think of, but I can't see how Labview is supposed to know the path where it is looking for that DLL.
     Probably it uses the standard windows algorithm as described in MSDN

Maybe you are looking for

  • IPhone 5 apps and music won't download. Both say waiting

    My iPhone 5 running iOS 7 latest beta won't download apps. My phone worked just fine yesterday then today my apps won't download or update and my music won't download it stays in the "waiting" status and I've done hard reset logged in and out of my A

  • Can we call a window of one smartform in another smartform

    can we call a window of one smartform in another smartform?

  • Burning dvd for first time takes me in new direction

    Hi Well, I just burned my first DVD's of videos from premiere cs3 and one video from a sample I got off the web. I had thought that getting stuff to look good on my monitor would suffice for now, as I'm just learning about Premiere and NLE stuff. But

  • Using siri to easily bypass lockscreen

    I have an IPhone 5s running ios 7.1 and I can easily bypass the lockscreen by asking siri to search something on the internet then clicking on one of the results which will open up safari then I all I have to do is click the home button which will br

  • BPEL PM starts without oracle lite db

    HI all, my BPEL PM standalone starts without launching oracle lite db, i've checked the startorabpel.bat and everything is alright with this file, i think the problem comes from the modification of obsetenv.bat: i've added some libraries in the " @RE