Edit ClipboardFormatsPriorities in maker.ini file

FrameMaker 10 (v. 10.0.2.419), Window 7.
When copying text from Word into FrameMaker, I would like "TEXT" to be the first item in the dialog box when using Paste Special.
We have edited the ClipboardFormatsPriorities in the maker.ini file by moving TEXT from the end to the beginning of the line:
ClipboardFormatsPriorities=TEXT, FILE, MIFW, MIF, RTF, OLE 2, META, EMF,  DIB, BMP, UNICODE TEXT
So far, the changes have not taken affect.
Can this be done?
Thanks
Debbie

There are two maker.ini files; one system, one (for each) user.
Which did you edit?
I assume the user file has the last word, but don't really know, as this isn't an issue on the old FM I run.
And did you exit and re-start FM?

Similar Messages

  • Remapping TrueType Fonts in Framemaker 9.0 maker.ini

    Greetings, forum community.
    When attempting to embed non-base 14 fonts in PDFs using Pitstop v7.52, I receive a notice that no TrueType version could be located.
    I believe (please correct me if I'm wrong) that the solution is to remap the unavailable font (in this case Arial, Bold) to an available font (Helvetica, Bold) in the Framemaker maker.ini file.
    My entry in the maker.ini file is as follows:
    Arial, Bold, *, *=Helvetica, Bold, *, *, *
    Alternately, I could use Arial MT.
    Neither, however, seems to work as I've mapped it. Upon generating a PDF, I still receive an error from Pitstop saying it was unable to embed the font.
    Can anyone easily see where I may be messing up and offer a solution?
    Thanks, as always, and best regards.
    JMW

    Unfortunately, I'm only vaguely familiar with Pitstop. I used it for a short
    time years ago, but remember little about it. But I do recall that it is an
    Acrobat plugin and therefore uses Acrobat to produce the PDF. So check your
    "PDF presets" (.joboptions settings) in Acrobat Distiller because there is a
    dialogue that lets you specify fonts that will never embed. Some of the
    default Adobe PDF presets, including (if I remember right) even the Standard
    options, have some fonts set in there to never embed (it assumes that
    everyone has them on their computer already) and that may include the fonts
    you are having problems with. If this is the case, just move the fonts from
    the "never embed" column into the "always embed" column to fix your problem.
    Then save as a custom PDF preset to use in the future. You can also save the
    changes to the current preset, but  I seem to recall that Acrobat updates
    have recently started resetting some user settings without permission. So
    you may find that changes you made have disappeared in the future if you
    don't save as a custom preset!

  • I need to move my profile to an external drive but the edits I make to the profile.ini file don't seem to be working

    I am using a Mac, and need to have my profile be on an external drive. I edit the profile.ini file per the instructions I found here:
    https://support.mozilla.org/en-US/kb/profiles-tb
    but it's not working. I must have the path wrong. Again, I am using a Mac. Here is the info in the profile.ini file:
    [General]
    StartWithLastProfile=1
    [Profile0]
    Name=default
    IsRelative=0
    Path=Macintosh%HD/My%20Passport/Thunderbird/Profiles/o6fqy09d.default
    Default=1
    Do you see anything about the path that looks incorrect? The "My Passport" is the external drive.
    Also, if there was an updated disk image for Portable Thunderbird, I could try setting that up but all I can find is a very old one which I tried but it won't update.
    Thank you,
    Todd

    The "My Passport" external drive must be mounted somewhere in the file system. That's the path you need to use.

  • How to edit the setup.ini file of the Adobe Reader X MUI?

    Hi everyone.
    I discovered today that is is possible to edit the setup.ini file of the Adobe Reader X MUI  10.1  installer (multilingual)  in order to customize the installation. I stil have some questions about this.
    1. I would like to make a custom installation of Reader X in german, english, french and spanish. Is this possible? I want to leave out all other languages from my installation..,.
    2.  I would like to edit the ini file to make an automatic update of my Reader, by installing all the patches (10.10, 10.11, 10.12, 10.13, 10.14, 10.15 and 10.16). Is this possible?
    I patched my Reader manually, but when I install only the 10.15 and 10.16 updates, some functions are still missing (signature toolbar and add text function) so I suspect the patches are not-cumulative.
    Can anyone on the forums show me the right codes for doing this? How can I get a 4-language upgraded Reader X?
    Sincerely yours.
    K. Adam.

    See the docs: http://www.adobe.com/devnet-docs/acrobatetk/index.html.
    The admin guide tells you what updates are cumulative (all 10.x quarterlies) and how to set the lang via the cmd line. However, check out the Wizard Guide and download the free Wizard to customize your install and .ini as needed. Much easier.
    hth,
    Ben

  • Editing Executable's INI file with "HideRootWindow"

    Hello
    I'm trying to create an executable so that it shows only one window in the taskbar. On one of the Knowledgebase articles (http://digital.ni.com/public.nsf/allkb/6E660558F3D420C786256FCB005B4F52) I had read about setting HideRootWindow=True in the INI file. I did and it worked. The problem though is that everytime I rebuild the exe in LabVIEW, the line disappears & I have to manually edit the INI file each time. I was wondering if there was anyway I could do it automatically though LabVIEW so that it itself appends that line to INI file at each Build process.
    Appreciate any help. Thank you!
    Solved!
    Go to Solution.

    Instead of checking Use the default LabVIEW Configuration file, uncheck this option and add your own ini file. Also make sure that you add the ini file to the Project too! This will help in maintenance.
    Hope this helps.

  • How to create and edit a .ini file using java

    Hi All...
    Pls help me in creating and editing an .ini file using java...
    thanks in advance
    Regards,
    sathya

    Let's assume the ini file is a mapping type storage (key=value) so lets use Properties object. (works with java 1.4 & up)
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.Properties;
    public class Test {
         private static Properties props;
         public static void main(String[] args) throws IOException {
              File file = new File("test.ini");//This is out ini file
              props = new Properties();//Create the properties object
              read(file);//Read the ini file
              //Once we've populated the Properties object. set/add a property using the setProperty() method.
              props.setProperty("testing", "value");
              write(file);//Write to ini file
         public static void read(File file) throws IOException {
              FileInputStream fis = new FileInputStream(file);//Create a FileInputStream
              props.load(fis);//load the ini to the Properties file
              fis.close();//close
         public static void write(File file) throws IOException {
              FileOutputStream fos = new FileOutputStream(file);//Create a FileOutputStream
              props.store(fos, "");//write the Properties object values to our ini file
              fos.close();//close
    }

  • Why even unchecked my crash reports are sent? I have to manually edit the "application.ini" file at every update! This is unacceptable to the user's choice!

    Why even unchecked my crash reports are sent? I have to manually edit the 'application.ini' file at every updates! This is unacceptable for the user's choice!

    Check the SubmitCrashReport (DWORD) key in the registry and set the value to 0.
    *HKEY_LOCAL_MACHINE\Software\Mozilla\Firefox\Crash Reporter\SubmitCrashReport: DWORD
    *HKEY_CURRENT_USER\Software\Mozilla\Firefox\Crash Reporter\SubmitCrashReport: DWORD
    You may need to check the HKLM\Software\Wow6432Node\ node on 64 bit Windows.
    *http://kb.mozillazine.org/Mozilla_Crash_Reporter

  • Menubar by Editing ini file

    Hi All,
    I want to bulild VI that dispalys Menubar [Header] and submenus on front panel.This all is done through reading \ parsing one *.INI file.
    In future user will edit only *.INI file for adding or removing menus \ submenus [User will not modify VI code].
    Please suggest where i can get such sample VI code. Guidlines are also very needful.
    Thanks regards
    Tushar 

    You might want to start with the Dynamic Insert Demo.
    Open Help->Example Finder, Select the Search Tab, and keyword 'Menus'.  Then select the Dynamic Insert Demo.
    For LabView 8.5 with normal installation it is located here.
    C:\Program Files\National Instruments\LabVIEW 8.5\examples\general\menubars.llb\Dynamic Insert Demo.vi
    It will show how to dynamically add menu items to your runtime menu.
    How you handle the .ini is a matter of preference.
    How you respond to the menu selection is dependent on what you want to happen with the menu selection. (Launch a program, open a window, etc.) But a good start for that is also on the Example Finder, select the Menu-Selection with Events example.
    Jon D
    Certified LabVIEW Developer.

  • Lion server file sharing issue with windows API read/write ini file (GetPrivateProfileString)

    Hello,
    I try to config lion server as file server for a windows application we use at work. All other computers are windows 7 or XP, lion server is the only mac. I choose lion server because it's size, quality and personal love of apple products.
    10.7.2 lion server's samba file sharing works almost perfectly with all my windows machines, I can copy, delete, modify any text files or office files without any issue, but the most important windows application for my business doesn't work with samba file sharing. After some digging, I found it is because windows program can't read or write INI file stored on lion share. Windows API GetPrivateProfileString always returns empty if the INI file is store on lion share.
    You can download a small application for read/write windows INI file from codeproject.com to test this problem:
    http://www.codeproject.com/KB/files/ini.aspx
    I can open/edit the in file using any text editor without any problem. The only problem is with those windows APIs. ACL is turned on for my lion share and assigned "delete" rights to samba users.
    I install samba3 on the same server; it works perfectly with windows API. My windows program also works. Looks like there is something wrong with lion server's sambax.
    I'd prefer to use built-in samba even I have samba3 working. Built-in samba is very immature right now, but considered how young it is, I will give apple some time to make it mature.
    Does anyone have same issue or knows how to fix it?
    Thanks,
    Michael.

    All the memory is fine. The server rarely if ever goes down when there are only around 10-12 users connected. When there are 20+ users connected and working heavily it goes down often. When I say working heavily, I mean they are transferring huge files to the SAN (100GB+), sometimes 5 at a time per user, and there are a bunch of others who are reading large video files at a minimum of 220MB/sec from the SAN.
    Though this worked on Snow Leopard without any issues, Lion just doesn't seem to be able to handle it. The odd thing is, on Snow Leopard there was only a single 1GB ethernet connection to a NAS system, whereas with Lion we have a much more powerful machine with a 6-port 10GB ethernet card and a 4 lane 8GB fiber card to a true SAN. You would think that the newer scenario with Lion would handle far more users with ease.
    So far, very disappointing with regards to Lion's file serving performance.

  • Modification to Write Configuration .ini file

    I have found one of the annoying things about Labview's configuration file VI's is that when the configuration file is written, all spacing between sections is eliminated making it hard to read, even if the spacing was there to begin with when the file was read.  For example, I would like the file to look like
    [Header1]
    key1=value1
    key2=value2
    [Header2]
    key3=value3
    key4=value4
    But it comes out looking like:
    [Header1]
    key1=value1
    key2=value2
    [Header2]
    key3=value3
    key4=value4
    making it harder to read.
    I made a modification to the file Config Data to String.vi which is located \vi.lib\UTILITY\config.llb\
    Make a backup copy of \vi.lib\UTILITY\config.llb\Config Data to String.vi and replace the file in the config.llb with the attachment (saved as LV 8.0).
    What I did was any time a section header is to be written to the file, I preceded it with another CRLF character so that it creates a blank line just before the section header.  To keep from having an extra blank line at the beginning of the .ini file, it does not create the CRLF there.
    I hope others will find this modification useful.
    Attachments:
    Config Data to String.vi ‏26 KB

    tst wrote:
    The idea itself is great, but I don't like the idea of changing vi.lib files (for several reasons).
    I didn't look at your code, but I assume that at least in this case, the resulting files will still be processed fine by machines which don't have this modification, so it's probably not as bad, but I still don't like it.
    You should probably go to the Product Suggestion Center and tell NI about this idea.
    I agree about not trying to change the vi.lib files.  It gets into modifying code that is rather deeply embedded about 3 or 4 sub-vi's down.  By my testing, machines without the modification do handle the files just fine.  The alternative would be to create a backup copy of the whole library and rename the files and use my own versions instead. I've recently installed the OpenG files and looked into them.  I like the functionality they provide to be able to store and retrieve clusters of configuration data.  Of course they have NI's write configuration files at the heart as well, so if they link to the original VI library then they will generate the same .ini files missing the extra lines that I like.
    tst wrote:
    You should probably go to the Product Suggestion Center and tell NI about this idea.
    Thanks, I already did this some time ago when I created a test VI to just read and close an .ini file.  I found that without setting the "write configuration file" flag in the close config file VI (which defaults to True), the whole file got rewritten even though nothing had changed.  That's how I stumbled across this loss of blank lines thing.
    I hope NI will look into that suggestion and add it to the config file VI library in the future.  It would probably need to be implemented with a flag that says "Add blank lines?" that would default to False so that the original behavior of the VI could be maintained.  Since the VI that controls the appearance of the file is a few layers deeper than Close config file VI, that flag would have to be passed through a couple of sub-VI's.
    Thanks for your feedback.
    Message Edited by Ravens Fan on 09-22-2007 03:22 PM

  • Where Can the Preference Settings to place in the .INI File Found

    I can not find a lot of the settings that are found on the drop down list under the Menu item Edit - Preferences. Specifically I am looking for the setting to stop Acrobat asking clients to update. I know it can be done manually. I deliver Acrobat over the company network to thousands of clients of which my helpdesk cannot go to everyone of them. Where is the setting found. In the .ini file or in the registry and what is the actual code to be placed in the .ini file or the HKey in the registry?

    Here's how to find various registry keys:
    1. Open RegEdit. Navigate to HKCU and Export The Adobe Acrobat hive under the Software/Adobe key. Close regedit
    2. Launch Acrobat and make your preference change.
    3. Open Regedit again and export the Adobe Acrobat hive again. Us a program that can compare text and find the change thats was made.

  • DignosticF​ile= setting in .ini file not working?

    When editing Lookout.ini file in Lookout 6.1 and adding setting as follows:
    [COM9]
    DiagnosticFile=C:\com9.txt
    or
    [COM3]
    DiagnosticFile=C:\Program Files\National Instruments\Lookout 6.1\com3.txt
    No logs are created for the named COM port.
    I know I used this feature sucessfully back in Lookout 4.5 and earlier, maybe even in Lookout 5.1.
    Please confirm and help!

    You can configure this in Lookout. Go to Option->Serial ports, select COM9, check "Enable", input the diagnostic file path, "Accept".
    Close Lookout, then open lookout.ini. You will see the following codes.
    DiagnosticFileEnable=1
    DiagnosticFile=c:\test.txt
    DiagnosticAllHex=1
    DiagnosticTimeStamp=1
    DiagnosticTimeStampDateFormat=73
    So, you need to add DiagnosticFileEnable=1 to make it active.
    I'm not sure how it worked in Lookout 4.
    Ryan Shi
    National Instruments

  • Tecra M7: Can't create Recovery CD: Missing CDDVD.ini - Error loading INI file: RDC_info.ini

    I just recently purchased a Tecra M7, but the system does not come with recovery media, just a Recovery partition and a Recovery Disk creator.
    However, when I try to run the Recovery Disc Creator, it replies with "Error loading INI file: C:\Program Files\Sonic\RecordNow!\RDC_info.ini".
    I opened this file to try to determine the error, but the contents simply refer to a file named CDDVD.ini. I have looked all over the Hard Drive, even mounted the Recovery Partition, but could not find this file.
    Searching on Google, I found that this file regularly goes missing, and that without it, the recovery media cannot be created. One person reported Tech Support emailing him the file, another was emailed by another user.
    In both cases, the user was immediately able to make the disks. In any case, it seems to be a standard file, referring to "Add_info.ini" (Application and Drivers Disks) and "Rec_info.ini" (OS Recovery Disk), fairly consistent and unchanging through all systems that use this method to build disks.
    Please, could someone email me theirs or post it here so we can all see?
    If/when I receive this file, once I determine it works I will post it here.
    Daniel

    I have talked to Tech Support, and the Tecra M7 w/ XP Tablet Edition does not have Recovery Disks available yet. I was told to check back in a couple of weeks.

  • CFP LV RT 2009 (ETS) Bug - Crashing on bad INI file

    Hello,
    This problem was actually touched upon in this thread:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=466392&jump=true#M466392
    I have found, that if the ni-rt.ini file contains any "unexpected"  or wrong parameters (like the thread above describes), my cFP 2210 with LV RT 2009 crashes. After the crash, the following is the situation:
    - The ni-rt.ini file is garbled with strange charcters.
    -  I have format the "disk"  and reinstall all software again to make it work correctly!
    This is bad, since I have never encoutnered such a problem with LV 8.2 on a cFP 2120: 
    We have two of these running in a Concrete Production Plant here in Norway.
    They have been stable for 2 years.
    I could send updates via email: Just the .rtexe and the .alias file.
    The electrical engineer at the plant used FTP to replace the existing .rtxex and .alias file,
    Then he edited the .ini file with the name of the new .rtexe.
    If any errors where entered into the .ini file, the cFP simply would report the error to one of the logs, and NOT CRASH!
    I recon this is a bug, and it may easily be reproduced by trying to enter the entries I have listed in the thread linked to above.
    Geir Ove

    Hello,
    I have updated information on this problem:
    First a little background on "how it used to be"  when running LV 8.2 RT on a cFP 2120:
    To update the cFP with a new program, I did the following over a wireless network while the cFP was running but the machine it controlled was sitting stationary:
    1) On the cFP: renamed the .rtexe to .rt (to allow the file to be deleted)
    2) Deleted booth the .alias and .rt file
    3) downloaded new .rtexe and .alias files
    4) uploaded to my PC the ni-rt.ini file. Edit the name of the startup program
    5) downloaded the new ni-rt.ini file to the cFp
    6) From my PC rebooted the cFP
    THis may seem like a wild thing to do, but it works like a charm.
    It turns out, it also works well on the cFP 2120  with LV RT 2009.
    However, on the cFP 2210  the ni-rt.ini file becomes corrupted if the file is downloaded again to the cFP while it is running.
    If, however, the cFP is rebooted into Safe Mode first, I can still do all the steps above to update the cFP.
    WHy I do not use LV to do the update? Well,  in this manner the customer can do the update with no special tools or LV knowledge.
    Also, it is valuable to be able to update the cFP without accessing it physically, because it is not easily accessible (A conveyor running under the roof of the factory !)
    I do not understand why there should be a difference between the cFP 2120 and cFP 2210 in this respect !
    But since it is, it should be documented. We use LV to save development time, but this has costed extra time in this project.
    Geir Ove

  • Full form of NQS in NQSConfig.ini file.

    Hello Experts,
    Out of curiosity I would like to know the full form of NQS in NQSConfig.ini file.
    Regards,
    Mohammed
    Edited by: Mohammed_owb on Mar 30, 2010 5:54 AM
    Edited by: Mohammed_owb on Mar 30, 2010 5:57 AM

    Okay so time for some History..
    1) Nquire makes a software called "nquire suites". nQuire launched its nQuire suite of products in late 1999 to monitor and deliver real-time intelligence based on any fact-based problem or opportunity by initiating an e-mail or page to any device, such as a laptop, pager, PDA, RIM, U.S. and European mobile phones.
    2) Siebel buys Nquire for $65 million in late 2001 ( http://www.internetnews.com/ent-news/article.php/894791 ) and renames it as "Siebel Analytics"
    3) Oracle buys Siebel in 2005 and renames it as "Oracle Business Intelligence" in 2007.
    So basically, NQSconfig stands for Nquire Server Config..
    -Vinay

Maybe you are looking for

  • 1 iPod Nano 3rd generation and 2 user accounts on Mac Mini

    My husband and I share our Mac Mini and we log in under separate user names. He is the administrator for the computer. My problem started when I initially purchased Phase and I could not upload it to my iPod Nano 3rd generation. So in an effort to de

  • Why no sound from DVD drive H/Phone sockets ?

    Hello again folks, Just a little niggle here. I have just noticed that I am getting no sound from my 2 DVD Drive front headphone sockets. One is an MSI the other a LiteOn, both have Headphone sockets and volume controls but not a sound issues forth,

  • Sort Issue on KM Document Name

    Hi, I am using a layout set to display a list of documents with the following components : Layout Set u2013 ConsumerTable Layout Controller u2013 SimpleLayoutController Collection Renderer u2013 ConsumerTableCollectionRenderer ResourceRenderer u2013

  • Migration from sql server 2005 tables to oracle tables.

    Hi, Kindly give the steps to migrate from sql server 2005 tables to oracle tables. Kindly advise Oracle database version: Oracle Database 10g Release 10.2.0.1.0 - Production PL/SQL Release 10.2.0.1.0 - Production "CORE 10.2.0.1.0 Production" TNS for

  • Short Dump in Component Configuration during creation

    Hi , While creating component configuration ,i am getting a message as: The following error text was processed in the system E12 : Screen output without connection to user. The error occurred on the application server ecc12_E12_00 and in the work pro