Script for font managment

I often get a file created with the Indesign Package function. The fonts are in the Fonts folder and I have to create a shortcut in the Indesign Fonts Folder, for the Fonts not to be missing. So I created a Script that adds this shortcut
var fontFolder = Folder(File(BridgeTalk.getAppPath("indesign-"+app.version)).parent+'/Fonts/');
if(app.documents.length){
     var doc = app.activeDocument;
     var docFontsFolder = File(doc.filePath+'/Fonts/');
     if(docFontsFolder.exists==true){
          var rapidDlg = new Window('dialog',"Select name for shortcut",undefined);
          buildWindow();
          var result = '';
          rapidDlg.show();
          if(result.length){
               var newShortcut= File(fontFolder+'/'+result);
               if (newShortcut.exists==false){
                    if(newShortcut.createAlias(docFontsFolder.fsName)) {
                         app.updateFonts();
                         alert('Shortcut has been created');
               else{
                    alert('Creating shortcut has failed');
               else{
                    alert('Shortcut by this name already exists, please try again with new name');
          else alert('No Font Folder can be found');
else{
alert('No Documents are open')     
function buildWindow(){
// Properties for rapidDlg.EditText1
     rapidDlg.EditText1 = rapidDlg.add('edittext',undefined,undefined);
     rapidDlg.EditText1.characters = 50;
// Properties for rapidDlg.Group1
     rapidDlg.Group1 = rapidDlg.add('group',undefined);
     rapidDlg.Group1.alignment = ['right',' '];
// Properties for rapidDlg.Group1.Button1
     rapidDlg.Group1.Button1 = rapidDlg.Group1.add('button',undefined,"OK", {name:"ok"});
     rapidDlg.Group1.Button1.onClick = function(){
          result=rapidDlg.EditText1.text;
          rapidDlg.close()
// Properties for rapidDlg.Group1.Button2
     rapidDlg.Group1.Button2 = rapidDlg.Group1.add('button',undefined,"Cancel", {name:"cancel"});
and another script to remove your shortcuts
var  fontFolder= Folder(File(BridgeTalk.getAppPath("indesign-"+app.version)).parent+'/Fonts/');
var allFiles=fontFolder.getFiles('*');
var arrayOfAlias=new Array();
for(var i=0;i<allFiles.length;i++){
     if(allFiles[i].alias){
          arrayOfAlias[arrayOfAlias.length]=(allFiles[i].displayName);
if (arrayOfAlias.length){
     var rapidDlg = new Window('dialog',"Remove Shortcuts",undefined);
     buildWindow();
     rapidDlg.show();
else{
          alert('No Shortcuts Found');
function buildWindow(){
     rapidDlg.orientation = "row";
// Properties for rapidDlg.Group1
     rapidDlg.Group1 = rapidDlg.add('group',undefined);
     rapidDlg.Group1.orientation = "column";
// Properties for rapidDlg.Group1.ListBox1
     rapidDlg.Group1.ListBox1 = rapidDlg.Group1.add('listbox',undefined,undefined, {items:arrayOfAlias});
     rapidDlg.Group1.ListBox1.selection = 0;
// Properties for rapidDlg.Group1.Button2
     rapidDlg.Group1.Button2 = rapidDlg.Group1.add('button',undefined,"Remove");
     rapidDlg.Group1.Button2.onClick = function(){
          File(fontFolder+'/'+rapidDlg.Group1.ListBox1.selection.text).remove();
          rapidDlg.Group1.ListBox1.remove(rapidDlg.Group1.ListBox1.selection);
// Properties for rapidDlg.Group2
     rapidDlg.Group2 = rapidDlg.add('group',undefined);
     rapidDlg.Group2.alignment = [' ','top'];
     rapidDlg.Group2.orientation = "column";
// Properties for rapidDlg.Group2.Button1
     rapidDlg.Group2.Button1 = rapidDlg.Group2.add('button',undefined,"OK", {name:"ok"});
Steven
http://scriptui.com

i was doing this one year nmgrant176
For one magazine i get aprox 20-30 files and I am replacing fonts threw one template file. When i was doing replacing fonts manually i had to replace 20-30 fonts now multiply this numbers x4 for clicking and u got minimum 20204 clicks. wow cute number 3:) its nice and  i have 3 project like this.
I am doing more than a year replacement threw one template file and replacing in indesign book, but still some manual clicking have to be done and also i got some styles mixed because designers sometimes redefine styles.
So still in a search for such script to solve my issue

Similar Messages

  • Have updated InDesign CC, but now get an error message for Font Manager.InDesignPlugin

    I have updated recently updated InDesign CC, but now I get this error when I try to open a document that was working fine yesterday:
    Cannot load Adobe InDesign CC because it requires version 9.1 or later of the Font Manager.InDesignPlugin plug-in. Please contact vendor for compatible version of Font Manager.InDesignPlugin.
    Where can I find this plugin (for Mac)?

    Thanks Peter, just saw your reply now, but that night I did uninstall and reinstall ID; in the morning did the ole shutdown - rest - command+option+p+r on start up as an added precaution and then it worked fine for the rest of the week.
    Also, I got a new computer last week. The changeover to the new mac seeeeeemed to be fine...
    However, I think Adobe suffers from Monday-itis as today I can't open any programmes as I get the attached message box when I try to  sign in to Creative Cloud. Will make this it's own post too.

  • Batch load script for Order Management with Oracle R12 EBS

    Hello,
    I am looking for a way to load a million dummy test records into Order Management. For example, I would like to automate a batch process to generate a million new sales orders for Oracle 12.1.1 EBS on Linux platform. If anyone has an idea on how to script this, would appreciate your help.

    Two questions:
    1. How would I modify the following script to generate a million new orders for OM:
    2. How can I register and create a concurrent program with the script?
    SET SERVEROUTPUT ON;
    DECLARE
    v_api_version_number NUMBER := 1;
    v_return_status VARCHAR2(2000);
    v_msg_count NUMBER;
    v_msg_data VARCHAR2(2000);
    -- IN Variables --
    v_header_rec oe_order_pub.header_rec_type;
    v_line_tbl oe_order_pub.line_tbl_type;
    v_action_request_tbl oe_order_pub.request_tbl_type;
    v_line_adj_tbl oe_order_pub.line_adj_tbl_type;
    -- OUT Variables --
    v_header_rec_out oe_order_pub.header_rec_type;
    v_header_val_rec_out oe_order_pub.header_val_rec_type;
    v_header_adj_tbl_out oe_order_pub.header_adj_tbl_type;
    v_header_adj_val_tbl_out oe_order_pub.header_adj_val_tbl_type;
    v_header_price_att_tbl_out oe_order_pub.header_price_att_tbl_type;
    v_header_adj_att_tbl_out oe_order_pub.header_adj_att_tbl_type;
    v_header_adj_assoc_tbl_out oe_order_pub.header_adj_assoc_tbl_type;
    v_header_scredit_tbl_out oe_order_pub.header_scredit_tbl_type;
    v_header_scredit_val_tbl_out oe_order_pub.header_scredit_val_tbl_type;
    v_line_tbl_out oe_order_pub.line_tbl_type;
    v_line_val_tbl_out oe_order_pub.line_val_tbl_type;
    v_line_adj_tbl_out oe_order_pub.line_adj_tbl_type;
    v_line_adj_val_tbl_out oe_order_pub.line_adj_val_tbl_type;
    v_line_price_att_tbl_out oe_order_pub.line_price_att_tbl_type;
    v_line_adj_att_tbl_out oe_order_pub.line_adj_att_tbl_type;
    v_line_adj_assoc_tbl_out oe_order_pub.line_adj_assoc_tbl_type;
    v_line_scredit_tbl_out oe_order_pub.line_scredit_tbl_type;
    v_line_scredit_val_tbl_out oe_order_pub.line_scredit_val_tbl_type;
    v_lot_serial_tbl_out oe_order_pub.lot_serial_tbl_type;
    v_lot_serial_val_tbl_out oe_order_pub.lot_serial_val_tbl_type;
    v_action_request_tbl_out oe_order_pub.request_tbl_type;
    BEGIN
    DBMS_OUTPUT.PUT_LINE('Starting of script');
    -- Setting the Enviroment --
    mo_global.init('ONT');
    fnd_global.apps_initialize ( user_id => 123
    ,resp_id => 456
    ,resp_appl_id => 789);
    mo_global.set_policy_context('S',785);
    -- Header Record --
    v_header_rec := oe_order_pub.g_miss_header_rec;
    v_header_rec.operation := oe_globals.g_opr_create;
    v_header_rec.order_type_id := 1005;
    v_header_rec.sold_to_org_id := 7157;
    v_header_rec.ship_to_org_id := 5480;
    v_header_rec.invoice_to_org_id := 5181;
    v_header_rec.order_source_id := 0;
    v_header_rec.booked_flag := 'N';
    v_header_rec.price_list_id := 7018;
    v_header_rec.pricing_date := SYSDATE;
    v_header_rec.flow_status_code := 'ENTERED';
    v_header_rec.cust_po_number := '99478222532';
    v_header_rec.sold_from_org_id := 83;
    v_header_rec.salesrep_id := -3;
    v_header_rec.transactional_curr_code:= 'GBP';
    v_action_request_tbl (1) := oe_order_pub.g_miss_request_rec;
    -- Line Record --
    v_line_tbl (1) := oe_order_pub.g_miss_line_rec;
    v_line_tbl (1).operation := oe_globals.g_opr_create;
    v_line_tbl (1).inventory_item_id := 27893;
    v_line_tbl (1).ordered_quantity := 1;
    v_line_tbl (1).unit_selling_price := 2000;
    v_line_tbl (1).calculate_price_flag := 'Y';
    DBMS_OUTPUT.PUT_LINE('Starting of API');
    -- Calling the API to create an Order --
    OE_ORDER_PUB.PROCESS_ORDER (
    p_api_version_number => v_api_version_number
    , p_header_rec => v_header_rec
    , p_line_tbl => v_line_tbl
    , p_action_request_tbl => v_action_request_tbl
    , p_line_adj_tbl => v_line_adj_tbl
    -- OUT variables
    , x_header_rec => v_header_rec_out
    , x_header_val_rec => v_header_val_rec_out
    , x_header_adj_tbl => v_header_adj_tbl_out
    , x_header_adj_val_tbl => v_header_adj_val_tbl_out
    , x_header_price_att_tbl => v_header_price_att_tbl_out
    , x_header_adj_att_tbl => v_header_adj_att_tbl_out
    , x_header_adj_assoc_tbl => v_header_adj_assoc_tbl_out
    , x_header_scredit_tbl => v_header_scredit_tbl_out
    , x_header_scredit_val_tbl => v_header_scredit_val_tbl_out
    , x_line_tbl => v_line_tbl_out
    , x_line_val_tbl => v_line_val_tbl_out
    , x_line_adj_tbl => v_line_adj_tbl_out
    , x_line_adj_val_tbl => v_line_adj_val_tbl_out
    , x_line_price_att_tbl => v_line_price_att_tbl_out
    , x_line_adj_att_tbl => v_line_adj_att_tbl_out
    , x_line_adj_assoc_tbl => v_line_adj_assoc_tbl_out
    , x_line_scredit_tbl => v_line_scredit_tbl_out
    , x_line_scredit_val_tbl => v_line_scredit_val_tbl_out
    , x_lot_serial_tbl => v_lot_serial_tbl_out
    , x_lot_serial_val_tbl => v_lot_serial_val_tbl_out
    , x_action_request_tbl => v_action_request_tbl_out
    , x_return_status => v_return_status
    , x_msg_count => v_msg_count
    , x_msg_data => v_msg_data
    DBMS_OUTPUT.PUT_LINE('Completion of API');
    IF v_return_status = fnd_api.g_ret_sts_success THEN
    COMMIT;
    DBMS_OUTPUT.put_line ('Order Import Success : '||v_header_rec_out.header_id);
    ELSE
    DBMS_OUTPUT.put_line ('Order Import failed:'||v_msg_data);
    ROLLBACK;
    FOR i IN 1 .. v_msg_count
    LOOP
    v_msg_data := oe_msg_pub.get( p_msg_index => i, p_encoded => 'F');
    dbms_output.put_line( i|| ') '|| v_msg_data);
    END LOOP;
    END IF;
    END;
    /

  • Can we have seperate startup script for each managed server?

    Hi,
    Can we have a seperate startup script (startManagedWebLogic.sh) to start each
    Managed Server? for example startManagedWebLogic.sh for ms1 and startManagedWebLogic.sh
    in ms2 in another directory?
    Any help would be appreciated.
    Thanks
    Siraj

    startManagedWebLogic.sh internally calls startWebLogic.sh with few added parameters, that's all it does. You are free to modify the startup script, the way you want.
    Madan
    >
    Hi,
    Can we have a seperate startup script
    (startManagedWebLogic.sh) to start each
    Managed Server? for example startManagedWebLogic.sh
    for ms1 and startManagedWebLogic.sh
    in ms2 in another directory?
    Any help would be appreciated.
    Thanks
    Siraj

  • Typekit for font management?

    I am trying to figure out whether Typekit will allow me to manage my legacy font collection of TTF, PFM, and OTF fonts. I am only interested in using fonts in CC software, I have no need for Typekit's web font features.

    No because that is not the point of TypeKit. You will have to look elsewhere.
    Mylenium

  • Best font management solution for CS6/InDesign?

    I recently upgraded to CS6. (OS 10.6.8). I'm finding that InDesign is extremely slow and wondering if it might have to do with font management. I have a LOT of fonts on my machine. I was using Suitcase previously. Do I need to continue with that? I'd appreciate any advice about best practices for organizing fonts and/or suggestions for font management software.

    Must say its Font Explorer Pro (FEP) for me! (MacPro OSX 10.6.8 Indesign Creative Suite 4, Indesign 5.5)
    When I first started this job they had suitcase and I found that program really limiting. But I also had never used it before and knew very little about it.
    FEP has many things that I like about it.
    1. Although most people lean away from font auto activation the one that comes with FEP has been working real smooth, a few second delay when opening files while it starts what font is required.
    2. Font Preview is amazing, select the fonts you want to compare with a typeface you have and you have transparent view and slide show.
    3. Font Groups: Where you can put all fonts for particular jobs into smart sets.
    4. Search files and discover which fonts where used inside that file and save that as a font set
    5. There is also a server version of the program.
    6. Application Sets: Really handy for auto activating fonts used only in certain programs.
    7. Good Conflict control.
    The list could possibly go on and on, in other words, love FEP and highly recommend it.

  • Suitcase Fusion 3 for fonts slowing down Illustrator?

    I'm working on a PC in windows 7 and using CS5. I have Extensis Suitcase Fusion 3 for font management but someone told me that this may be why my Illustrator in particular is so slow. I frequently have to sit and wait for it to catch up to me while the top title bar says "Not responding".
    Can anyone comment on this? I don't want to give up my suitcase font manager - I really like it. Surely these programs can get along??

    Sorry that Illustrator is being slow for you. If you think that that Suitcase is causing the problem. I would do two things.
    1. Ensure that your version of Suitcase was built to work with your version of Illustrator.
    http://www.extensis.com/downloads/compatibility-guides/suitcase-fusion-compatibility-guide /
    2. If they are compatible, and you still think that it's Suitcase, please contact Extensis support.
    http://www.extensis.com/support
    Jim

  • Font Manager

    I have been using ID since CS2. I used Extensis for font management. I cannot remember why, (maybe system update) but it stopped working. I was advised to try LinoType font explorer X, a freebee from a major player in the font industry, (does anybody else remember what a Linotype machine was?).
    I found the software great, fairly simple to use, automatic font loading etc. Unfortunately it no longer supports CS5.
    Any advice?
    Lou

    Hi Stix
    Thanks I've had a quick check and with a little change in my working method, it could work. It will mean I have a copy of each font for each document though!
    It would be nice if Adobe put a alias in the folder until the file was "formally" exported.
    Bob thanks for the input but the point was I had a very good font manager for no charge.
    Lou

  • Redirecting / Suppressing [font manager] [link manager] errors

    I have several hundred indd templates that get used by the system I am working on. The template all have linked images in them, some of which get replaced on the fly with variable images. The problem is that when I am debugging the output from the InDesign instance I see lots of errors comming from the link manager and font manager that look like this
    Wed Apr 2 15:34:04 2008 ERROR [link manager] Link missing.; MainG5:Users:User1:Desktop:Links:LOGO-2007.tif
    Wed Apr 2 15:34:04 2008 WARN [font manager] Missing Font Avenir 35 Light
    I want to be able to turn this on and off, but thus far have not found a way to suppress these messages. The only thing I thought I could do is write a program to tail the end of the file and exclude output that have a match for [font manager] or [link manager] but that's not what I want to do.

    Hey Kevin,
    Have you tried to update the application to the latest version?? That would be my first suggestion try updating the application,.
    Secondly if it still does not help first try the steps under http://helpx-internal.corp.adobe.com/content/help/en/x-productkb/global/troubleshoot-unexp ected-behavior-user-account-1.html
    Regards,
    Ankit

  • Font Management Software for PC

    Hi folks, I'm new to the adobe forums so excuse me if this question is redundant.  I was wondering if anyone here knows of something like font suitcase for windows that lets you activate and deactivate fonts but a less expensive/free version   Help is much appreciated!!

    If you want a round-up of the many options for Windows, see this blog post I did when I was back at Adobe a couple of years ago. Some of the details of versions are going to be off, but for identifying the cheaper options and getting a few ideas of what they're like, it might be helpful:
    http://blogs.adobe.com/typblography/2007/10/win_font_mgmt.html
    Of course, now that I'm the product manager for font solutions at Extensis, I'd rather you bought our brand-new Suitcase Fusion 2 for Windows, which is pretty cool. 
    Cheers,
    T

  • Disaster Recovery Scripts for Managed Server MSI Startup

    I am trying to get some custom start scripts created for each of my managed servers in the event the admin console is down or server gets hosed. We use nodemanager to start the managed servers in a Windows environment. I have about 8 managed servers and they all use the same nodemanager classpath but all have different server start arguments (different memory settings, etc....) so I need to make different custom scripts for each.
    Verbose Garbage Collection to Determine Heap Size .....this thread by Jay has been very helpful but so far I am just getting kicked back to the syntax screen like something is wrong in my script. Attached is the script and the output when I run it. Any help would be appreciated...thanks.
    startManagedFPCE1.cmd contents
    java.exe -Xms400m -Xmx400m -classpath $CLASSPATH -Dweblogic.Name=FPCE1 -Dbea.home="C:\Oracle\Middleware" -Dweblogic.management.username=beaadmin -Dweblogic.management.password=beaadminxxx -Dweblogic.management.server=http://sitportal1:8098 -Djava.library.path=c:\Oracle\Middleware\wlserver_10.3\server\bin -Dweblogic.ext.dirs=C:\Oracle\Middleware\patch_wls1032\profiles\default\sysext_manifest_classpath;C:\Oracle\Middleware\patch_wlp1032\profiles\default\sysext_manifest_classpath;C:\Oracle\Middleware\patch_oepe1111\profiles\default\sysext_manifest_classpath;C:\Oracle\Middleware\wlportal_10.3\p13n\lib\system;C:\Oracle\Middleware\wlportal_10.3\light-portal\lib\system;C:\Oracle\Middleware\wlportal_10.3\portal\lib\system;C:\Oracle\Middleware\wlportal_10.3\info-mgmt\lib\system;C:\Oracle\Middleware\wlportal_10.3\analytics\lib\system;C:\Oracle\Middleware\wlportal_10.3\apps\lib\system;C:\Oracle\Middleware\wlportal_10.3\info-mgmt\deprecated\lib\system;C:\Oracle\Middleware\wlportal_10.3\content-mgmt\lib\system -Dweblogic.alternateTypesDirectory=C:\Oracle\Middleware\wlportal_10.3\portal\lib\security
    Results of running above script:
    C:\Oracle\Middleware\user_projects\domains\SIT11\servers\FPCE1>java.exe -Xms400m -Xmx400m -classpath $CLASSPATH -Dweblogic.Name=FPCE1 -Dbea.home="C:\Oracle\Middleware" -Dweblogic.management.username=b
    eaadmin -Dweblogic.management.password=beaadminsit11 -Dweblogic.management.server=http://sitportal1:8098 -Djava.library.path=c:\Oracle\Middleware\wlserver_10.3\server\bin -Dweblogic.ext.dirs=C:\Oracle
    \Middleware\patch_wls1032\profiles\default\sysext_manifest_classpath;C:\Oracle\Middleware\patch_wlp1032\profiles\default\sysext_manifest_classpath;C:\Oracle\Middleware\patch_oepe1111\profiles\default\
    sysext_manifest_classpath;C:\Oracle\Middleware\wlportal_10.3\p13n\lib\system;C:\Oracle\Middleware\wlportal_10.3\light-portal\lib\system;C:\Oracle\Middleware\wlportal_10.3\portal\lib\system;C:\Oracle\M
    iddleware\wlportal_10.3\info-mgmt\lib\system;C:\Oracle\Middleware\wlportal_10.3\analytics\lib\system;C:\Oracle\Middleware\wlportal_10.3\apps\lib\system;C:\Oracle\Middleware\wlportal_10.3\info-mgmt\dep
    recated\lib\system;C:\Oracle\Middleware\wlportal_10.3\content-mgmt\lib\system -Dweblogic.alternateTypesDirectory=C:\Oracle\Middleware\wlportal_10.3\portal\lib\security
    Usage: java [-options] class [args...]
    (to execute a class)
    or java [-options] -jar jarfile [args...]
    (to execute a jar file)
    where options include:
    -server to select the "server" VM
    -hotspot is a synonym for the "server" VM [deprecated]
    The default VM is server.
    -cp <class search path of directories and zip/jar files>
    -classpath <class search path of directories and zip/jar files>
    A ; separated list of directories, JAR archives,
    and ZIP archives to search for class files.
    -D<name>=<value>
    set a system property
    -verbose[:class|gc|jni]
    enable verbose output
    -version print product version and exit
    -version:<value>
    require the specified version to run
    -showversion print product version and continue
    -jre-restrict-search | -jre-no-restrict-search
    include/exclude user private JREs in the version search
    -? -help print this help message
    -X print help on non-standard options

    "bharat nagwani" <[email protected]> wrote:
    >
    Hi,
    Configuration: Weblogic 8.1SP2 on Windows 2000, 1 admin server and 14
    managed
    servers
    whats the right way from these 2 scenarious to create a domain on managed
    server
    1. create domain on managed server using configuration wizard. Then point
    to this
    domain from administration server remote start tab(root directory). This
    is what
    we do so far.This is the best way to create managed servers for your domain.
    >
    2. Just enter user_projects/domains folder/$domain name$ in remote start
    tab(root
    directory)
    on admin server console and when you start the managed server from
    admin console
    the domain folder and files will be created.
    Yes, the managed server is started in this case at the root directory you specified.
    The difference is in the
    1. first case we see all scripts like startManagedWeblogic, setenv, boot.properties
    etc
    this may help(we still dont know) if one wants to bring up managed
    server
    manually using
    startManagedServer.bat without using node manager.Yes, that is correct. You will need to edit the startManagedServer.bat to include
    the admin server URL, username and paswword..
    >
    2. second case only 2-3 files get created like msi-config.xml and SerializedSystemIni.dat
    Basically first case is superset of second case.
    What is the experience of people in this regard?
    thanks much
    bharat

  • Scripts for starting/stopping managed servers

    All,
    Could someone provide me with some sample scripts for starting/stopping managed Weblogic servers?  I'm specifically looking for ways to start/stop them WITHOUT starting the AdminServer.  I'm running WLS 10.3.6 on Windows Server 2003, and I have NodeManager set to start automatically as a Windows service.
    I know how to set my managed servers up as Windows services so that they will start automatically at boot, but this requires the AdminServer to be running, which I do not want.  I just want a few scripts for starting/stopping the managed servers (and maybe some hints as to how to make them start automatically without starting the AdminServer).
    Thanks in advance,
    Tom

    Hello Puneet,
    Admin console is an web application deployed into AdminServer. Hence if you shutdown AdminServer then you wouldn't able to access Admin console.
    Managed Server would function in MSI mode, however you will not be able to make any configuration or administration activities like deployment , any configuration changes , etc.
    Hello PRISM,
    Can you confirm your requirement about why you don't want AdminServer to be running?
    As I said,  you will loose the administration capability if you don't have admin server running.
    Regards
    Rosario

  • Font Management for PC

    Hi,
    I was surprised that I didn't find any thread on Font Management. It can be a designer's nightmare if there is no good font management.
    On the mac I am using FontExplorer X. It was free till lately and very good. Now it is a commercial application.
    My problem, though, is on the Windows machines. I have Bitsream Font Navigator, that came with the Corel Suite. It is not good, but at least it reduces the headache a bit.
    What are the best options for a mixed (Mac and Windows) environment? With or without a server.

    Jim, I have FontExplorerX 1.2.3. I already downloaded the trial and will probably purchase the Pro version.
    Thanks for the windows link. A few weeks ago I found it but didn't have time to download. since then, they removed the link from their site, or I was unable to find it.
    I know I am not alone, and many other print designers have the same issues, and yet I could not find any post in this Print Design Discussion about font management.

  • Font management on a Mac Server for use via the network

    Can font management be done on a Mac Server through Font Book so that other users can have one place where they can access our organized fonts via the network?

    Ok found a sollution, i tried a couple of things, it boils down to this.
    login as admin user
    1. demote the network user to a local user,
         use workgroup manager for it use export in menu to export user from LDAP
         import to Local directory, reset the password and delete the LDAP user.
    2. you chould now be able to localy login to the account, do that.
    3. open the terminal and run the following commands (probably need sudo for it and you need to change <username> to the user you want to change)
         chmod -R -N /Users/<username>/
         chown -R <username>:staff /Users/<username>
         chmod -R 700 /Users/<username>
    4. check that every thing in you're account is working again as should.
    5. promote local user to network user.
    use workgroup manager for it use export in menu to export user from Local
         import to LDAP directory, reset the password and delete the Local user.
    this did the trick for me, hope it helps.
    Ben

  • Good Font manager for Windows 7/8

    Hello,
    Like the topic says, I'm looking for a good font manager for my Windows machine. I saw NexusFont at xiles.net, and wanted to see if anyone had experience with that or any other programs. Maybe something Adobe has that I overlooked. Obviously, I'm new to the font management game.
    Thanks!

    I downloaded the trial of this (Extensis Suitcase Fusion), installed it, and Photoshop came grinding to a halt. I had to uninstall. Any ideas why? I'm running Windows 7, CC 2014. Still looking for a decent font manager on Windows.

Maybe you are looking for

  • Product Catagories deleted in ECC are not updating in SRM

    Hi All , We are facing an issue in Product category replication  from ECC to SRM. When add new product category  in ECC and does the Replication then the prod category will replicate in SRM tables. but when we delete a  Category in ECC and replicate

  • SmartView Automation in 11.1.2

    Hi I was using smart view with 9.3 in Excel and automate my smart view refresh using Smart View APIs & VBA code In 9.3, we need to create a connection in connection manager and re-use that connection in VBA code. The smart view login prompt only came

  • OVMAPI_3511E No server found for creating pool file system on lun at server

    Hi, I have a IBM Blade Center with 2 server for virtual and 1 server for vm manager and a storage IBM DS3524 connect at blade on sas cable. The storage have 2 LUN, one 15Gb for poll and the rest for vm. I see the LUN in storage (unmanaged fibre chane

  • Adobe Flash Player 11.4.400.252 Beta 2 (IE 10 Desktop)

    Hello Folks, after having failed in all known methods to uninstall a Flash® Player release I come here asking for any suitable help. What kind of help? I'd like to know how to uninstall Flash® Player 11.3.370.178 ActiveX (x86) from Windows 8 CP with

  • Flash won't run or uninstall

    When a video comes up on a news site, it says flash player not installed. I checked and the site says it is installed and updated. I tried to uninstall and it tells me to close all windows. I did that and it still says close windows. I cleared cookie