How to Save a file in InDesign 5 so it will open in InDesign 3 (no InDesign 4)

How do I save an InDesign 5 file in InDesign 5 so it can be opened by my graphic designer in In Design 3.
Neither of us have CS4.
She thinks she cannot open an .IDML file on In Design 3.  Can she?
What do I do to save it to get it to her so she can open it?
Judy B.

First lets calrify the numbering. InDesign version 5 IS CS3. CS5 is actually version 7. It's kind of confusing.
Now for the bad news. No way at all that you can make a file directly from CS5 that can be opened in CS3. One of us would be willing to do the two-stp converion of a single file for you, but you need to understand that this is not, repeat NOT a good way to collaborate. You should both be working inthe same version if you expect to send files back and forth. The CS5 file is likely to be mangled (new features lost, potential text reflow) after going back two versions, and there are enough reports of issues with opening CS3 files in CS5 to make me gunshy, even though I've not seen a single case of trouble with my own files.

Similar Messages

  • How to save a file in the newer version of muse to use it in an older version of muse

    I started to work in a project at home with a 30 day trial of the latest Muse,  I was going to continue working at school, and I can't open it. So how can I save the file to open it in an older version?

    Hi Luisis,
    Any file that is saved in the latest version of Muse cannot be opened in any previous of Muse and as of now there is no option available in Muse such that you can save the file in such a manner that it opens in the previous version.
    However, I would request you to post this as a feature request at Ideas for features in Adobe Muse
    Regards,
    Rohit Nair

  • How to save pdf file in database

    Dear All,
    my application is forms 6i and database is 8i,requirement is that how to save pdf file in database and users can view through forms

    I'll apologize up front for the length of this post. I have a few database procedures I created that write a file to a BLOB column in a table as well as retrieve the BLOB from the column after it stored there. I have successfully stored many different types of binary file to the database using these procedures - including PDF files. I have not used these procedures in a Form so I can confirm that they will work, but theoretically they should work. I'm including the code for each procedure in this posting - hence the apology for the long post! :-)
    Also, since these procedures reside on the database you will need to use Forms TEXT_IO built-in package to write your file to the server before you can use these procedures to store and retrieve the file from the database.
    These procedures reads and writes a binary file to a table called "LOB_TABLE." You will need to modify the procedure to write to your table.
    -- Author :  Craig J. Butts (CJB)
    -- Name   :  load_file_to_blob.sql
    --        :  This procedure uses an Oracle Directory called "IN_FILE_LOC".  If you
    --           already have a directory defined in the database or would prefer to use
    --           a different Directory name, make sure you modify line 21 to reflect the
    --           new Directory name.
    -- ==================================================================================
    -- History
    -- DATE        WHO         DESCRIPTION
    -- 12/11/07    CJB         Created.
    CREATE OR REPLACE PROCEDURE load_file_to_blob (p_filename IN VARCHAR2) IS
       out_blob    BLOB;
       in_file     BFILE;
       blob_length INTEGER;
       vErrMsg     VARCHAR2(2000);
    BEGIN
       -- set the in_file
       in_file := BFILENAME('IN_FILE_LOC',p_filename);
       -- Get the size of the file
       dbms_lob.fileopen(in_file, dbms_lob.file_readonly);
       blob_length := dbms_lob.getlength(in_file);
       dbms_lob.fileclose(in_file);
       -- Insert a new Record into the tabel containing the
       -- filename specified in P_FILENAME and a LOB_LOCATOR.
       -- Return the LOB_LOCATOR and assign it to out_blob.
       INSERT INTO lob_table (filename, blobdata)
          VALUES (p_filename, EMPTY_BLOB())
          RETURNING blobdata INTO out_blob;
       -- Load the file into the database as a blob.
       dbms_lob.open(in_file, dbms_lob.lob_readonly);
       dbms_lob.open(out_blob, dbms_lob.lob_readwrite);
       dbms_lob.loadfromfile(out_blob, in_file, blob_length);
       -- Close handles to blob and file
       dbms_lob.close(out_blob);
       dbms_lob.close(in_file);
       commit;
       -- Confirm insert by querying the database
       -- for Lob Length information and output results
       blob_length := 0;
       BEGIN
          SELECT dbms_lob.getlength(blobdata) into blob_length
            FROM lob_table
           WHERE filename = p_filename;
       EXCEPTION WHEN OTHERS THEN
          vErrMsg := 'No data Found';
       END;
       vErrMsg := 'Successfully inserted BLOB '''||p_filename||''' of size '||blob_length||' bytes.';
       dbms_output.put_line(vErrMsg);
    END;
    -- Author   :  Craig J. Butts (CJB)
    -- Name     :  write_blob_to_file.sql
    -- Descrip  :  This procedure takes a BLOB object from a database table and writes it
    --             to the file system
    -- ==================================================================================
    -- History
    -- DATE        WHO         DESCRIPTION
    -- 12/11/07    CJB         Created.
    CREATE OR REPLACE PROCEDURE write_blob_to_file ( p_filename IN VARCHAR2 ) IS
       v_blob      BLOB;
       blob_length INTEGER;
       out_file    UTL_FILE.FILE_TYPE;
       v_buffer    RAW(32767);
       chunk_size  BINARY_INTEGER := 32767;
       blob_position INTEGER := 1;
       vErrMsg     VARCHAR2(2000);
    BEGIN
       -- Retrieve the BLOB for reading
       BEGIN
          SELECT blobdata
            INTO v_blob
            FROM lob_table
           WHERE filename = p_filename;
       EXCEPTION WHEN OTHERS THEN
          vErrMsg := 'No data found';
       END;
       -- Retrieve the SIZE of the BLOB
       blob_length := DBMS_LOB.GETLENGTH(v_blob);
       -- Open a handle to the location where you are going to write the blob
       -- Note:  The 'WB' parameter means "Write in Byte Mode" and is only
       --          available in the UTL_FILE pkg with Oracle 10g or later.
       --        USE 'W' instead for pre Oracle 10q databases.
       out_file := UTL_FILE.FOPEN('OUT_FILE_LOC',p_filename, 'wb', chunk_size);
       -- Write the BLOB to the file in chunks
       WHILE blob_position <= blob_length LOOP
          IF ( ( blob_position + chunk_size - 1 ) > blob_length ) THEN
             chunk_size := blob_length - blob_position + 1;
          END IF;
          dbms_lob.read(v_blob, chunk_size, blob_position, v_buffer );
          UTL_FILE.put_raw ( out_file, v_buffer, TRUE);
          blob_position := blob_position + chunk_size;     
       END LOOP;  
    END;Hope this helps.
    Craig...
    -- If my response or the response of another is helpful or answers your question please mark the response accordingly. Thanks!

  • Could u plz help me to find simple example for how to save data file in a spread sheet or any other way in the real time controller for Sbrio 9642 using memory or usb flash memory

    Could u plz help me to find simple example for how to save data file in a spread sheet or any other way in the real time controller for Sbrio 9642 using memory or usb flash memory

    Here are a few Links to a helpful Knowledge Base article and a White Paper that should help you out: http://digital.ni.com/public.nsf/allkb/BBCAD1AB08F1B6BB8625741F0082C2AF and http://www.ni.com/white-paper/10435/en/ . The methods for File IO in Real Time are the same for all of the Real Time Targets. The White Paper has best practices for the File IO and goes over how to do it. 
    Alex D
    Applications Engineer
    National Instruments

  • How to save CSV file in application server while making infospoke

    How to save CSV file in application server to be used as destination while making infospoke.
    Please give the steps.........

    Hi
    If you want to load your flatfile from Application server,then you need to trasfer your file from your desktop(Computer) to Application server by using FTP.
    Try using ARCHIVFILE_CLIENT_TO_SERVER Function module.
    You Just need to give thesource path and the target path
    goto SE37 t-code , which is Function module screen, give the function name ARCHIVFILE_CLIENT_TO_SERVER, on click F8 Execute button.
    for path variable give the file path where it resides like C:\users\xxx\desktop\test.csv
    for target path give the directory path on Application server: /data/bi_data
    remember the directory in Server starts with /.
    U have to where to place the file.
    Otherwise use 3rd party tools to connect to ur appl server like : Core FTP and Absolute FTP in google.
    Otherwise...
    Goto the T.code AL11. From there, you can find the directories available in the Application Server.
    For example, if you wanna save the file in the directory "DIR_HOME", then you can find the path of the directories in the nearby column. With the help of this, you can specify the target path. Specify the target path with directory name followed by the filename with .CSV extension.
    Hope this helps
    regards
    gaurav

  • Does anyone know how to save a file in CC 10.0 or higher that is viewable in CC 9.2?

    I am trying to make my fiels viewable to someone who has Adobe CC version 9.2, but I have version 10.0. Does anyone know how to save my files so the are readable?

    You will likely get better program help in a program forum
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll

  • How to save iPhoto file in a separate portable hard disk drive?

    How to save iPhoto file in a separate portable hard disk drive?

    You want to move the iPhoto Library?
    Make sure the drive is formatted Mac OS Extended (Journaled)
    1. Quit iPhoto
    2. Copy the iPhoto Library from your Pictures Folder to the External Disk.
    3. Hold down the option (or alt) key while launching iPhoto. From the resulting menu select 'Choose Library' and navigate to the new location. From that point on this will be the default location of your library.
    4. Test the library and when you're sure all is well, trash the one on your internal HD to free up space.
    Regards
    TD

  • How to save Numbers file as Excel (XLSX) file ?

    I just want to know how to save Numbers files into Excel format. Because other than Mac users can't able to access Numbers format.

    File, Export To, Excel…

  • How to save psd files...

    how to save psd files so other can change (with all fonts and Layers)
    I need to know how to save everything in the psd so others still can use it.??

    Hi,
    If you have photoshop and you are working on it and have used layers , fonts , and other things
    Then after completing your work, click save and it will open save Box,
    make sure the file format in the box should be PSD and then you may save the file and then you can share with any one.
    Any one who has Photoshop will be able to open that file and can edit the layers and fonts..
    --Baljeet

  • I have pages on my MAC, friends cannot open.  How do I save a file so a Microsoft Word user can open it?

    I have Pages on my MacBook Air, friends cannot open when I send as an attachment to an e-mail. How do I save a file so a Microsoft Word pc can open.

    Welcome to the Apple Support Communities
    Pages documents can only be read on another iPhone, iPod touch, iPad or Mac with Pages installed. To make a document compatible with Microsoft Word, you just have to export the document.
    To do that, just open the document with Pages, and then, go to File menu > Export > Word, and after exporting that document to Word format, just send it

  • How to save .pdf file using office word and excel

    Can someone help me how to save .pdf files using office word and excel?  I reinstalled my adobe 7.0 pro in my new pc and before I was able to do it but with my old pc.

    For anything after Office 2003, you have to print to the Adobe PDF printer. If you installed AA 7 on OS newer than XP, you may have to do a workaround to get it to work. With later versions of WORD you can always use the MS plugin for creating PDFs.

  • How to save image files into SQL Server?

    Hello, All:
    Does anyone know how to save image files into SQL Server? Does the file type have to be changed first?? Please help me! Thank you!

    You need a BLOB field (usually)... Then you can check this tutorial out:
    http://java.sun.com/developer/onlineTraining/Database/JDBC20Intro/exercises/BLOBPut/
    There are other exercises on that site, including one on reading the images back.

  • HELP!!!! How to save xml file!!!Anyone can help???

    Hi,
    It is urgent for me to know how to save xml file. I use VC++6.0, Oracle xdk 9.0.0.0.0 or 9.0.0.0.0Abeta under windows98.
    It is OK to compile the program with print() method. But system will tell me there is illegal operation when I run it. If I delete the line with print(), the result will be normal.
    in class node, there is two functions
    void print(ostream *out = &cout, uword level = 0,uword step = 4);
    void print(DOMString buffer, size_t bufsize, uword level = 0, uword step = 4);
    Is there anyone who may tell me how to use them? to write back specific xml file?
    Without print(), I can not save the xml file...It seems in Oracle xdk9.0.0.0.0, there is no obvious function to save the file.(or because I am a new comer , not familier with DOM)
    Can anyone tell me how to save xml file? or just paste an example! It is very a little urgent to me...Hope you give me some ideas....
    Many thanks in advance!!!!
    yours,
    Fiena

    Hi,
    goto sxmb_adm > intergration engine configration > specific configration
    go in edit mode > new entry
    choose
    Category -> IDoc
    Parameters -> XML_CONVERSION
    current value -> 2
    Regards,
    Manisha

  • Could not save because file was already in use or left open

    I am have several problems with Adobe Photoshop CS4. I call up Adobe for help, I pay 50.00 or 60.00 for their help with these situations that I am having. Adobe concludes the phone call saying they are closing the case cause the problem has been resolved. I told them it has not been resolved I am still having problems then the person hangs up on me. I call back cause the problems still persists, the tech person told me that I had to pay another 50.00-60.00 for the
    tech support. I told him that I already paid and that I still need help, the tech guy told me that the case was closed cause it was resolved. I told them it was not
    resolved and I am needing help with this particular issue. The tech person kept saying that the issue was resolved and if I needed more help that I had to pay.
    This time I hung up on him and while I did that I said that the Apple Support Community was way more helpful and it was free.
    So here I am 6 months later and tried everything, Here are the problems that I am having.
    1. CS4 keeps quitting unexpectedly with no cause no error nothing. The blue light under the CS4 Ps is still lit and wont let me reopen the file, I then have to force quit the program. I then get these windows asking if I want to send a report, I click ignore cause I am tired of filling out those things. So I try to open the
    photoshop file and I get the blue window with the Ps logo on it, its scanning everything but then it stops responding when the scan reaches the part where it says scanning memory and freezes. I then have to force quit the program again, I have to do this 5 times before it will open the file. Then Ps will unexpectedly quit after 2 hrs of working and starts the B.S. all over again. I dont know what is wrong with CS4. Other times it runs really slow and glitchy. It also happens on my Mac Book Pro, iMac and of course my Mac Pro.
    I know its not the computers or the settings or anything interacting with it. I checked everything extensively from the terminal to permissions and back to the program itself and everything in between. I am needing help, the Adobe forums are of no use, I cant find anything there.
    2. I keep getting this error and I am not sure what it is, this only happens when I use Ps CS4 and yes it happens on all my other Apple computers.
    Error: "could not save because file was already in use or left open" not sure how to fixt this, I have already tried the permissions and it did not seem to work.
    All my computers run OS X Lion version 10.7.3. I had these problems even before I upgraded to Lion, 2 months later after Lion came out. These problems have been going on since Snow Leopard. All my Macs are up to date and I did use the Disk Utilities on everything... Please help me.

    First off are you editing a photo that you have placed into indesign if so the in use or left open issue is a common one, the only help is to go to indesign move the picture by nugging it then go back to photoshop and try saving again, if this does not work close the indesign file then save.
    On the other issue of photoshop crashing, One thing I would try would be to create another user account, Start up photoshop and only it and work with it. The reason why is to see if maybe there are some 3rd party software you have loaded on your systems that might be causing the issues. "Ya never know"
    I would assume you have reinstalled photoshop on lion. Do you still have older version of OSX installed, if so try booting to them and working with photoshop to see if it works there.
    Good Luck

  • How do I send my pages attachment so that it will open for those with Microsoft word?

    How do I send my pages attachment so that it will open for those with Microsoft Word?

    Hi Victoria,
    Pages does not run on Windows.
    Word cannot open a Pages file.
    If you want someone without pages to be able to open your attachment, you will have to send it in a format openable on the recipient's computer.
    If the recipient needs only to read the document, the most universal format is pdf. To send a pdf copy of your file, press command-P to open the Print dialogue, then click the PDF button and choose email PDF. This will open a new message in your default email client and attach the pdf file to that message.
    If the recipient needs to be able to edit/change your document, and has MS Word, then either Save a copy as a Word file or go File > Export and choose Word as the file format for the export.
    Be aware that MS Word does not support all features of Pages (and vice versa), and that formatting of the document may be affected by font substitution if you use fonts that are not available on the recipient's machine.
    Regards,
    Barry

Maybe you are looking for

  • I cannot run my ITunes any longer.  Error message says lITunes Library.itl cannot be read because it was created by a newer version of ITunes

    Has anyone had any luck getting ITunes to work properly on a Windows 7 PC lately?  Up until today, I could not open my ITunes at all because it said the disk was locked.  A very helpful person at Apple Care told me to go into properties and release t

  • Error in activating status profile for SVT

    Hi, I've been trying to activate status profile EHS_SO for SVT in REACH compliance version 2.0 . But I am stuck. When I save a sales order, a message-'Error when activating status 0001 for status profile EHS_SO in order XXXXXX' has come up. My IMG se

  • [Solved] Issue installing wine from the official repositories.

    I'm trying to install wine, but upon running  $ sudo pacman -S wine it returns error: target not found wine and If I try PlayOnLinux with $ sudo pacman -S playonlinux it returns warning, cannot resolve "wine", a dependency of playonlinux Wine should

  • Migration outside of SQL Server

    Hello Community     Where does Remote BLOB Storage data physically reside, on a disk that is stored on a server that is part of the Sharepoint 2013 Server farm or out on any physcial disk with enough space to store it and is it consider to be Sharepo

  • HH5 keeps rebooting itself

    Over the last couple of weeks my HH5 has started rebooting itself usually once or twice per day.  I can't find any commonality between occurences, it is a bit of a head scratcher. Here is the eventlog extract from a recent occurence at 10:22: 10:24:4