FrameMaker 8 (Unstructured) - How to Find/Change "Referenced File" location globally?

Hello,
First off, I have a FrameMaker 8 (Unstructured) book that links ALL of its graphics, to a separate graphics folder on my network drive.
With that said, I am hoping to do the following:
1. Create a mirror copy of "Book A" and place that copy in another folder, (at the same level) on my network drive.
2. Open up the new book file (e.g. Book B).
3. Run a Find/Change to replace:
..\..\..\Graphics Catalog A\Graphics\a000123.png
..\..\..\Graphics Catalog B\Graphics\b000123.png
The end result is that I could globally map out all the "Referenced Files" to the new folder path structure. This will allow me to save from having to manually re-import each of the 1000 graphics - into my book files.
Finally, I am hoping to do this with the built in capabilities of FrameMaker 8 first. If that is not possible, then I will consider other possibilities.
Thanks in advance for any suggestions.
Regards,
Jim

This is how you do it:
Outside of FM, copy the "Book A" folder and paste it where you want.
Also, create the Graphics folder and file structure (i.e.
"... Graphics Catalog B\Graphics ...")
Before you open Book B in FM, temporarily rename the graphics
folder that the FM files in Book A uses, e.g. "Graphics Catalog Z".
Now, when you open the files in Book B, FM won't be able to find
the old graphics since the folder name has changed. For each file,
FM will open the "Missing graphics" dialog, where you need to
browse to the new graphics folder, e.g. "Graphics Catalog B\Graphics".
Select the correct file that FM asks for, and tick the option to
use this folder for all remaining graphics.
If all the image file names are identical, you will only need to
do this once per FM file. If you really need the image file names
to differ like you said:
> ..\..\..\Graphics Catalog A\Graphics\a000123.png
> ..\..\..\Graphics Catalog B\Graphics\b000123.png
then you need to select the correct file name for *each* graphics
that FM cannot find. This is a good reason to keep the file names
identical, even though the folder name has changed.
When all the files have opened, rename the original graphics folder
back to "Graphics Catalog A".
/Thomas Michanek

Similar Messages

  • How do i change the file location where all my song/mobile app/etc are stored for iTunes

    Hi, I have been trying to change the file location for my iTunes storege file for a day or two but wen i move the iTunes file to the other disc drive and set it as the storege file and i rerun the program it goes back to the same file. I was able to do this with my iMac but i cant with my Windows PC.  It would be nice if someone could help. Thanks.

    Move iTunes library

  • How can I change the file location under "Information"?

    Somehow my iPod or computer generated a 2nd file named "music" within the existing file "music" where all my songs are stored. I don´t know why this happened and when I just discovered it today.
    Now more than half of the songs are located under "c:\music\music". When I change this back on my computer using Explorer, i.e. move all files up one level under "c:\music" then my iPod administration gives me a failure notice for all these songs after the next synchronisation. When I check under "Information" of a song I´m told that the storage location of this song is "c:\music\music". So when I want to play that song I´m offered to search for the original which I do and puff.... the 2nd file "music" is created again and now the song is again stored under "c:\music\music".
    I can change almost every entry under "Information" but not the storage location.
    How can I change this back? I don´t want this! Do I have to be a slave of stupid Apple programming and keep this 2nd folder although I don´t want to have or use it?!
    Thanks for helping with this!

    You can do this when exporting:
    File -> Export
    Jpeg Quality refers to the amount of compression appied. Lower quality means smaller file size.
    Size refers to the dimensions of the photo.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue.

  • How do I change default file location for NON-MUSIC files?

    My Laptop's "My Document" folder is on network per the corporate configuration. When I am not on VPN, I can not start iTunes since it looks for files on network.
    Also my "My Documents\My Music\iTunes" folder on the network is growing quite large since all *.ipa files are stored there.
    Is there any way to point all file locations to my C drive?
    Thx

    App store files will get put in a subfolder named \Mobile Applications.
    The preference files will stay on the C: drive under your user profile.
    C:\Documents and Settings\ username \Application Data\Apple Computer\iTunes

  • Find a referenced file

    Just started using Photos and when I try to turn on iCloud syncing, it says "1 referenced file cannot sync to iCloud...select referenced files in your library and choose  "consolidate" from the file menu..."
    I get why this is happening, but I cannot find the referenced file in my library for the life of me. I created a smart album and set the photo to referenced and it pulls up 0 images. I have meta > referenced turned on and i visually scanned my photos and don't see a single one with this icon. I could have missed it because there's thousands.
    How do I find this referenced file so I can deal with it?? I want to know what photo is referenced. Thanks.

    No, but somehow the issue has been resolved for me. I moved quite a bit of photos around to different (new) albums and changed some dates on photos. Somehow there's no more message about any referenced files. I'm not sure how it happened though.

  • I want to change the file location for the automatic backup file bookmarks.file, but I can't find browser.bookmarks.file in the list on the about:config page.

    I asked about automatic backup of bookmarks and received the following answer:You can make Firefox 3 create an automatic HTML backup (bookmarks.html) when you exit Firefox if you set the pref [http://kb.mozillazine.org/browser.bookmarks.autoExportHTML browser.bookmarks.autoExportHTML] to true on the about:config page. That backup is created by default in the profile folder as bookmarks.html, but you can set the file name and path via the pref [http://kb.mozillazine.org/browser.bookmarks.file browser.bookmarks.file] on the about:config page. I went to about:config page and toggled browser.bookmarks.autoExportHTML to “Yes” and it’s working. However, I want to change the file location, but I can’t find browser.bookmarks.file in the list.

    The browser.bookmarks.file preference does not exist by default. Right-click in about:config and select "New > String" to create it.

  • How to find out the file name

    Hi,
    In selection screen (parameter) user will give input TXT file from presentation server to upload to SAP. I need to capture the file name only but not the path and need to concatenate with date stamp and need to download error log in XLS file to presentation server.
    How to find out the file name from selection screen?
    I searched SCN threads but not found relavant solution.
    Thanks,
    R Kumar

    Hi
    This code gets only filename from selection screen :
    REPORT x.
    PARAMETERS p_file(100).
    DATA : gv_full_path LIKE  ibipparms-path,
           gv_full_path_string TYPE string,
           gv_filename(100),
           gv_file_ext(3).
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file.
    Ask user to select file with a popup :
      CALL FUNCTION 'F4_FILENAME'
        IMPORTING
          file_name = gv_full_path.
    Get filename from path :
      gv_full_path_string = gv_full_path.
      CALL FUNCTION 'CH_SPLIT_FILENAME'
        EXPORTING
          complete_filename = gv_full_path_string
        IMPORTING
          extension         = gv_file_ext
          name              = gv_filename.
      CONCATENATE gv_filename '.' gv_file_ext INTO gv_filename.
      p_file = gv_filename.
    I hope it helps.

  • How to find number of files in a folder using pl/sql

    please someone guide as to how to find number of files in a folder using pl/sql
    Regards

    The Java option works well.
    -- results table that will contain a file list result
    create global temporary table directory_list
            directory       varchar2(1000),
            filename        varchar2(1000)
    on commit preserve rows
    -- allowing public access to this temp table
    grant select, update, insert, delete on directory_list to public;
    create or replace public synonym directory_list for directory_list;
    -- creating the java proc that does the file listing
    create or replace and compile java source named "ListFiles" as
    import java.io.*;
    import java.sql.*;
    public class ListFiles
            public static void getList(String directory, String filter)
            throws SQLException
                    File path = new File( directory );
                    final String ExpressionFilter =  filter;
                    FilenameFilter fileFilter = new FilenameFilter() {
                            public boolean accept(File dir, String name) {
                                    if(name.equalsIgnoreCase(ExpressionFilter))
                                            return true;
                                    if(name.matches("." + ExpressionFilter))
                                            return true;
                                    return false;
                    String[] list = path.list(fileFilter);
                    String element;
                    for(int i = 0; i < list.length; i++)
                            element = list;
    #sql {
    insert
    into directory_list
    ( directory, filename )
    values
    ( :directory, :element )
    -- creating the PL/SQL wrapper for the java proc
    create or replace procedure ListFiles( cDirectory in varchar2, cFilter in varchar2 )
    as language java
    name 'ListFiles.getList( java.lang.String, java.lang.String )';
    -- punching a hole in the Java VM that allows access to the server's file
    -- systems from inside the Oracle JVM (these also allows executing command
    -- line and external programs)
    -- NOTE: this hole MUST be secured using proper Oracle security (e.g. AUTHID
    -- DEFINER PL/SQL code that is trusted)
    declare
    SCHEMA varchar2(30) := USER;
    begin
    dbms_java.grant_permission(
    SCHEMA,
    'SYS:java.io.FilePermission',
    '<<ALL FILES>>',
    'execute, read, write, delete'
    dbms_java.grant_permission(
    SCHEMA,
    'SYS:java.lang.RuntimePermission',
    'writeFileDescriptor',
    dbms_java.grant_permission(
    SCHEMA,
    'SYS:java.lang.RuntimePermission',
    'readFileDescriptor',
    commit;
    end;
    To use:
    SQL> exec ListFiles('/tmp', '*.log' );
    PL/SQL procedure successfully completed.
    SQL> select * from directory_list;
    DIRECTORY FILENAME
    /tmp X11_newfonts.log
    /tmp ipv6agt.crashlog
    /tmp dtappint.log
    /tmp Core.sd-log
    /tmp core_intg.sd-log
    /tmp da.sd-log
    /tmp dhcpclient.log
    /tmp oracle8.sd-log
    /tmp cc.sd-log
    /tmp oms.log
    /tmp OmniBack.sd-log
    /tmp DPISInstall.sd-log
    12 rows selected.
    SQL>

  • How to find PG.xml file name and path associated with a FUNCTION

    Hi,
    I am having a function:IRC_VIS_HOME_PAGE with Web HTML value as below:
    OA.jsp?akRegionCode=IRC_VIS_HOME_PAGE&akRegionApplicationId=800&OAPB=IRC_BRAND
    How to find PG.xml file name and path assoicated with above funtion.
    Thanks,
    ashok

    Ashok,
    Function IRC_VIS_HOME_PAGE will have 2 parameter defined for it which are OASF and OAHP where
    OASF=<SelectedFunctionName> - this tells the Framework to select this function in the given "Home Page" menu context.
    OAHP=<HomePageMenuName> - this is used ONLY with the OASF parameter, and it is used to establish the current menu context. It should point to a "Home Page" menu.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • When bates numbering a .pdf in XI, how can I change the file name to include the bates number AND its name?  I know under file output, there is an option for either/or.  I want both.  Thank you.

    when bates numbering a .pdf in XI, how can I change the file name to include the bates number and the file name?  I know under "file output: it's either/or.  I need both.  Thanks!

    Long ago I wrote a little demo using the touch command. Check out the following thread:
    http://forums.ni.com/ni/board/message?board.id=170&message.id=25128#M25128
    LabVIEW Champion . Do more with less code and in less time .

  • How do I change PDF files to JPEG on the Mac?

    how do i change pdf files to jpeg? thanx

    Open the pdf with preview then go to File/Save As then select jpeg as the file option.

  • When Saving a file finder changes the file name

    After updating to Mountain Lion, every time I save a file, I put in the correct file name and after beginning to save the file the file name is changed to a file name that was saved weeks ago.  It does not matter where or with what program I save it, it begins to save under the correct name and sometime before the save is complete finder changes the file name to a file a saved weeks ago.
    What library file do I have to delete this time to make this stupid thing stop doing that?!?

    It's the level of compression. Lower number, more aggressive compression, more visual artifacts.
    Aside from that you should never use jpeg as a working format. The compression is destructive and cumulative, and the file deteriorates every time you resave it.
    Use TIFF or PSD, and if you need jpeg save out a copy as a single final step.

  • How i can change temporary files directory on firefox 3.6.8 because my system disk has little space

    how i can change temporary files directory on firefox 3.6.8 because my system disk has little space

    In Firefox,the equivalent ofInternet Explorer temporary internet files is the cache.
    You can change the location of the cache by adding a new preference, for details see http://kb.mozillazine.org/Browser.cache.disk.parent_directory
    If you are not confident about adding the preference, I know of one add-on that lets you specify the path of the cache. [https://addons.mozilla.org/en-US/firefox/addon/13288/ Super Tab Mode] is an add-on that enhances Firefox tab handling, but also has a section for changing the location of the cache

  • How to find out average files i am getting every day in a month?

    How to find out average files I am getting every day in a month?

    Do you mean average count of files received?
    Please Mark This As Answer if it solved your issue
    Please Vote This As Helpful if it helps to solve your issue
    Visakh
    My MSDN Page
    My Personal Blog
    My Facebook Page

  • How can I change the file download time using Adobe Send? Adobe SendNow had a lot more options.

    How can I change the file download time using Adobe Send? Adobe SendNow had a lot more options.I don't see nay with Adobe Send.

    There isn't a feature in Adobe Send for setting and end-date for a file's availability. At any time, you can Unshare the file, however.

Maybe you are looking for