How to open illustrator file (.ai) using Indesign and save it as XML

I know how to open a Illustrator file (.ai) in Indesign.
It would be like :
1 ) Save your Illustrator file as AI. This Native format is most compatible with InDesign.
2 )  Go to -> InDesign, click on your document using your  Frame Rectangle tool (the one with the X through it).
3 )  Fill in the desired size (can be adjusted later).
5 ) Go to File menu > Place.
6 )  Find and select the Illustrator file in the window that opens.
7 ) Click the Open button.
Adjust size, & position of your image using the Direct Selection tool (white arrow), and the cropping with the Seclection tool (black arrow.
Now I want to save this file as XML.
After that,  I say
1 )  File -> Export
But this file saves as XML only shows he the root element nothing else.
Every time , this shows like
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<Root></Root>
Nothing is there as contents.
Can anyone let me know, is it possible to store .AI file as XML.
My requirement is simple, i want to store the .ai file as XML.
Some how I am using Indesign to do so . Can any body help.
Thanks,

Copy and paste is again seems same as 'Place the file'  , it wouldn't help again.
Copy( from Illustrator) and paste( it in Indesign) and  later saving\exporting as XML again create the same the XML file with no data . Just a XML structure,
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<Root />
RRegarding using the FXG and SVG file .. saving these formats to XML does not shows the Co-ordinates in XML formats.
I do I would like to have the coordinates (x,y) so that later on , if required I can change the coordinates and display the Image or Text in the file. As this is a requirement for business card.
A

Similar Messages

  • How to download a file from the net and save it into .txt format in a datab

    Can some one show me a tutorial on how to download a file from the net and save it into .txt format in a database?
    Thank you,

    http://java.sun.com/docs/books/tutorial/networking/urls/readingWriting.html

  • How to open a file, change the name and write file

    Hi,
    I want to open an existing .dat-file in Labview, manipulate the data and save this data into a new file with a different file name.
    Though the name should be different I would like to use the old name and add something to it.
    (In my programm the .dat file containes the date and time the data was
    measured and I would like to keep this information in the filename.)
    For example: the original title is file1.dat now I want to save it as file1_manipulated.dat
    Is that possible? What is the best and easiest way to do it?
    Thanks a lot
    Chris

    Hi Mike,
    thanks for your help.
    This will give me my path in string format. But to open a new file and then write my data into it, I need a path format (see right side of png)
    Is that right?
    I attached a png, so you hopefully get an idea where this is going. (I know this won´t work yet)
    I open a file and this filename depends on the date and time the data was recorded. So I can´t work with a stringconstant.
    Sorry for this beginner questions - this stuff is absolutly new to me.
    Thanks in advance
    Chris
    Attachments:
    newfile.png ‏11 KB

  • How to open Raw files from Canon 1100D and 650D in CS5?

    I need assistance please. I have a Canon 1100D and 650D. On Photoshop CS5 it does not recognise the 2 Cameras Raw files. What is my course of action. Help will be highly appreciated

    evjems, As per the below article, Canon EOS 1100D needs minimum Adobe Camera Raw(ACR) version 6.4 and Canon EOS 650D needs minimum ACR version 7.1
    Camera Raw plug-in | Supported cameras
    So, you should be able to open raw files of 1100D, if you upgrade your PS ( Help > Updates), but not of 650D as it needs PS CS6 and above.
    Let me know in case you still have any doubts.
    Hope that Helps!
    ~ Arpit

  • Webutil- How to open text file by using Wordpad

    Hello:
    Is it possible to open the text file either from client or server (sun) by using the wordpad? I was able to open it with Notepad; however, it was given the rigth format such as new line.
    WEBUTIL_HOST.NONBLOCKING('CMD /C NOTEPAD'||:input_select.file_name);
    Thanks in advance for anyhelp.
    TD

    Thanks Phuong. I try it, but still does not work. I have tried the followings:
    CLIENT_HOST('CMD/C START "editor" C:\Program Files\Windows NT\Accessories\wordpad.exe D:\temp\out.txt' );
    CLIENT_HOST('CMD/C START "editor" wordpad.exe D:\temp\out.txt' );
    WEBUTIL_HOST.NONBLOCKING('CMD /C C:\Program Files\Windows NT\Accessories\wordpad.exe D:\temp\out.txt');
    --trang                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • I have a pdf file attached to email inbox for ipad3.  I also have an neu.Annotate  app for pdf.  Can anyone tell me how to open my pdf through neu.Annotate and save the file?

    How do I save the pdf on ipad3?  How can I view the fiel from neu.Annotate so that I could do the editing from the app?

    If the PDF isn't already downloaded in the email then you should be able to do so by tapping on it.
    If the PDF is open within the body of the email then press and hold it and after a second or so you should get a 'Open In' pop-up; otherwise (e.g. the PDF opens into a separate screen) then tap the PDF and you should get an icon top right of a box with an arrow coming out of it - tap that and you'll get the 'Open In' option

  • How to open word document directly using ole2 and ole containers

    Hello
    i am using ole conatiners....in forms 6i. i want o open word document directly when i click a button....
    i have tried host....ole but word opens .....i want the document to open at once.....
    what should i use /set
    plz tell by host command and ole2 as well
    its urgent.....
    thanks

    Try this code, Hope this will work.
    declare
    item_name varchar2(80) := 'letter';
    item_id item;
    verb_index_str VARCHAR(20);
    verb_index PLS_INTEGER;
    verb_cnt_str VARCHAR(20);
    verb_cnt NUMBER;
    verb_name VARCHAR(20);
    loop_cntr NUMBER;
    begin
    item_id := Find_Item(item_name);
    IF Id_Null(item_id)THEN
              message('No such item: '||item_name);
    ELSE
    verb_cnt_str := Forms_OLE.Get_Verb_Count(item_id);
    verb_cnt := TO_NUMBER(verb_cnt_str);
    FOR loop_cntr in 1..verb_cnt LOOP
    verb_name := Forms_OLE.Get_Verb_Name(item_id,loop_cntr);
    -- message(verb_name);
    -- message(loop_cntr|| ' '||verb_name);
    IF verb_name = 'Open' or Verb_name = '?E?'THEN
    EXEC_VERB(item_id,verb_name);
    END IF;
         end loop;
    end if;
    EXCEPTION
    WHEN OTHERS THEN
    MESSAGE('Error: '||TO_CHAR(SQLCODE)||' '||SQLERRM);
    RAISE FORM_TRIGGER_FAILURE;
    end;

  • How do I create files in Captivate 6 and save them in a lower version?

    I have Captive 6 at home and at work we are using 5.5.with no plans to upgrade.  How do I create or edit in Captivate 6 and still save files so my coleagues can contribute using the software we are given at work?

    Only between 6 and 7 this is possible, not with previous versions. And even between 6 and 7 you can have weird things happening. It has nothing to do with being a normal file or a template, I don't know why you tell that?
    OP was talking about 5.5 and 6, and there this is NOT possible at all.

  • How to download a file from a website and save it locally

    Hi people,
    I have a number of URLs at hand that point to certain class files, e.g.
    http://www.mywebsite.com/classes/MyClass.class
    What i would like to do is to download MyClass.class into a temporary folder on the local disk. Does anyone know how to do this? I've read about HttpURLConnection etc., but its all very confusing!
    Cheers,
    JG

    you need to create a URL to the url
    URL url = new URL("http://www.mywebsite.com/classes/MyClass.class");
    HttpURLConnection c = (HttpURLConnection)url.openConnection();
    then you need to acquire an input stream from the connection. Roughly this is
    InputStreamReader r = (InputStreamReader)c.getInputStream();
    FileWriter w = new FileWriter("c:\\temp\\" + name);
    int b;
    while((b = r.read()) != -1) {
    w.write(b);
    close all streams
    something like this - will let you work out the rest..dont forget to try/catch all the IO exceptions.

  • Anomalies in CS5 when using edit original on Illustrator files from within InDesign

    Using the Edit Original function to open up a placed Illustrator file from an InDesign layout, we are seeing some strange things. If the image is placed on page at 100%, after editing via Edit Original it comes back in at a different size. Sometimes it is a silly size (99.999999999% or 100.000000002%), other times 2 or 3% smaller. Is anyone else seeing this - and, if so, is there a fix?

    We are also experiencing this with .psd .ai .eps .jpg files etc. etc. etc.
    Example:
    An image is placed in a box in InDesign, then resized and positioned. In a later stage the image needs editing, so the image is selected and we click on Edit Original. The image opens in either PS or ILL, we alter it (not sizewise, just color). Then we save it and the link in InDesign updates.
    BUT
    The position and the scale of the image most often CHANGES.
    CS5 is soo full of bugs, it is not even funny anymore. We are slowly moving our studio back to CS3.

  • HT4796 I have made a file using the Pages app.I mailed it to a friend.When she tried opening the same file on her pc at home , It did not open.Please help me as to how to open the file in the Microsoft word format on her pc.

    I have made a file using the Pages app.I mailed it to a friend.When she tried opening the same file on her pc at home , It did not open.Please help me as to how to open the file in the Microsoft word format on her pc.

    Send it as a PDF.

  • I cannot afford to upgrade my computer and sw from xp. How do I open older files created in InDesign CS2

    I cannot afford to upgrade my computer and sw from xp.
    How do I open older files created in InDesign CS 2.
    The error code it telling me the plug ins have been disabled.
    Someone tell me this is a message about the newer version that has not been installed on my computer.
    I

    If you plan on collaborating with other users who have progressed with the technology you are gong to have to upgrade. There is simply no way any longer to continue with XP and CS2 except in isolation.

  • How to open PSD file recieved via email on iPad using Photoshop Touch without Creative Cloud?

    Hi, how to open PSD file recieved via email on iPad using Photoshop Touch without the need of using Creative Cloud? Thanks.

    Hi Super Nemo
    Currently the only way to open psd files on Photoshop touch is via the creative cloud. Also, the layers you created from Photoshop on your desktop machine will be flattened when opened with Photoshop touch on your iPad. But you can retain the layers from the touch app when opening the psdx file on your desktop photoshop.
    This link might help you: http://forums.adobe.com/docs/DOC-1336
    -Sharon

  • How to open/read file using Java in Unix?

    Hi Friends,
    Can you please help me out how to open/read file using java in unix os? I have create one text file in "/home/test.txt" in unix environment. How to open the same file & read using java code?
    - Hiren Modi

    http://java.sun.com/docs/books/tutorial/essential/io/index.html

  • How to find the file type without the file extension using indesign javascript (.jsx)

    hi,
    How to identify the file type (eg: InDesign or Quark) without knowing their file type. How can we find what kind of file is that??? without their extension like ('.indd','.qxd') before import to the document...

    Hi subha_oviya,
    Take a look at the file filtering section in the InDesign CS3 sample script ImageCatalog.jsx to see how to look for file types. I'm assuming that you're using InDesign CS3, and that you're using the Mac OS--you didn't say.
    Thanks,
    Ole

Maybe you are looking for

  • Illustrator CC 2014 slow opening and saving

    Huge Fan. Serious problem. Brand new 1 Terabyte Hard Drive in my MBP.  2 Gigs of RAM So loaded all my software into the computer, which has been working fabulous for years. Had CC 2013 for all our Adobe products. When loading the new suite with CC 20

  • Cisco 881 Zone Firewall issues

    I'm having issues with an 881 that I have configured as a zone based firewall. I have allowed HTTP(s) and DNS on the DMZ but my user is saying he cannot access the internet. On the corporate side the user complains that some websites fail, such as Li

  • Does OC4J support RMI/IIOP connections ?

    Hi, I have only one question : Does OC4J support IIOP connections ? I'd like to connect as EJB client to OLAPService on Oracle9i server (CORBA object), but I can't. Thanks in advance

  • Approver permission level

    Hi guys, is it possilbe to assign "approver" permissions to approve items but not to create it? If I set these level permission -approve -read my users are able to create new items on my list, and this is not my goal. thanks!

  • Routing upload error in LSMw

    hi, i am trying to upload data for routing( CA01) using direct input program RCPTRA02 I am getting error: C\ 045                                                        You cannot edit the task list object with activity type i  have serached forum but