Placing Illustrator and InDesign Files, Importing text and forms into Library

Firstly, is there any way at all to maintain the working elements of an Illustrator or Indesign file if placing in Muse, is it even possible?
Example: I have a fully created website layout with text boxes and vector images saved in Illustrator.
I'm wondering, can this be bumped to Muse using the 'Library' feature as a whole, as elements like the contact form were in the Katie's Cafe tutorial?
I understand how that works for singular images, but is it at all possible with a complex image that contains both text and vector, or does this image need to be sliced up and saved as individual elements. Is there anyway to extract the text boxes from Illustrator or InDesign as they are? How are working text boxes created in InDesign as mentioned in the Katie's Cafe tutorial?
Thanks so much in advance, and sorry if this is totally obvious!

Hm, okay.
How would I know if the file is corrupt?
Well, you often don't, until it crashes and is unrecoverable. Then it's too late. But "insanely swollen file size" is a symptom. However, I can't know if your file size is reasonable or not, depends on the content, and it sounds like your content is pretty heavyweight. For instance - I thought it was possilbe to strip out custom brushes when saving AI files to bring file size down. I've never touched an AI file that was too large because of the number of swatches. So, depending on how much you have in there, then maybe your two-gig file isn't on the verge of crashing and burning.
I did inherit it, but have since used it as a template and "saved as" various versions. I'm not really sure if it started in 5 or not.
Cool trick: Click on Help, then hold down Control when you click on About. This will take you to a "Component Information" screen, and in the lower-left-hand corner you can see the Document History. So you can learn if you inherited a file that started in CS5. Or in CS3, or in PageMaker.
General best-practices as recommended by forum regulars is to finish a file in the format in which it started. If a file has to be moved from an older version to a newer version, then exporting IDML or INX before moving is advised. This is because of a lot of anecdotal evidence that opening up old files in newer versions and then doing a bunch of work is correlated with file corruption.
I have not tried to export-to-IDML-and-reopen, but I certainly will. What does this do exactly?
Well, it'll do a bunch of different things. It'll reinterpret the file format, which can strip out corruption. It'll strip out all image previews. If there is cruft in your file, then this will probably remove it.

Similar Messages

  • How do I write a javascript code to open InDesign File, import Doc, save and export to pdf?

    How do I write a javascript code to open InDesign File, import Doc, save and export to pdf?

    Hi hasvi,
    Need Template(.indt), textframes etc for the following script:
    var myFolderInd = Folder.selectDialog();
    var myFile = myFolderInd.getFiles("*indt");
    app.open(myFile)
    var myDoc = app.activeDocument;
    var myDocName = myDoc.name;
    var mySaveFile = app.activeDocument.save(myFolderInd.fsName + "/" + myDocName.split(".indt").join(".indd"));
    var myFolderDoc = Folder.selectDialog();
    var myFile1 = myFolderDoc.getFiles("*doc");
    mySaveFile.pages[0].textFrames[0].place(File(myFile1))
    //~ mySaveFile.place(File(myFile1))
    app.activeDocument.textPreferences.smartTextReflow = true;
    var myPDFFile = new File(mySaveFile.filePath + "/" + mySaveFile.name.split(".indd").join(".pdf"))
    myDoc.exportFile(ExportFormat.PDF_TYPE, File("~/Desktop/abc.pdf"));
    alert("Process Completed")
    Regards
    Siraj

  • Batch export text from multiple Indesign files, applying em and strong tags

    Hi there,
    I am struggling for a while now with the following workflow:
    batch exporting all text (text only) as plain text, from multiple Indesign files, applying <em> and <strong> for all the bold and italics (for instance: Molluptas verion <strong>nossum</strong> idist <em>doluptatet</em> maiorerum quiaspienit, cum erferiosapis eos expe nonsequas verumquae dolor sim eos doluptatiur autet lab idicili beatum deliquat).
    Properly tagging the styles, will be too time consuming, as these documents are as old as 1998, have inconsistent untagged styles; it will mean to manually open up each file, assign tags for all styles (not to mention that might be some local overwrites).
    This task is necessary to have all the archive, available on wordpress website.
    Any feedback would be much appreciated it.
    Thanks.

    There may well be a script or you may have pay someone to write it. All I can tell you is that any text not mapped to a style will be a mess in the HTML code.
    Can’t comment on Quark files. I have no clue what they’re capable of.
    Bob

  • Export an InDesign file to PDF and InDesign freezes and quits

    I keep trying to export an InDesign file to PDF and InDesign keeps freezing up and quitting. This is the first time it's done this, I have never had a problem before.I recently added Suitcase Fusion to my computer and wondered if this was the cause, or if there is something else wrong.

    Try disabling the suitcase plugin and see if it continues (you'd probably have other problems, too, though, if it's the culprit). Often it's a bit of bad text or an image. See Adobe Community: File Crashing on Output - printing/PDF/other for lots of troubleshooting tips.

  • Hello, Our indesign file keeps crashing and we need to go to print today. We use CS6. Please help!

    Hello, Our indesign file keeps crashing and we need to go to print today. We use CS6. Please help!

    Ok - we're going to need a few more details.
    Operating System - Windows or Mac?
    Version of CS6 - are you fully patched to the latest version (Help>Updates)?
    Do you use any 3rd Party Plugins (Help>Manage Extensions and look for 3rd Party Plugins)
    At what point does it crash? How are you exorting/printing?
    What file type or action are you doing when it's crashing?
    Common Troubleshooting tips
    Troubleshooting 101: Replace, or "trash" your InDesign preferences
    https://forums.adobe.com/thread/526991
    File Crashing on Output - printing/PDF/other

  • Search file for text and delete the found text.  How?

    I need to know how to search a file for text and delete the found text. I think grep will let you do this but not sure of the syntax.

    Hi Dmcrory,
       In addition to what Camelot and nobody loopback point out, one must also consider the fact that UNIX text tools are largely line based. You also fail to tell us for what kind of text you are searching. If you are looking for multiple words, there's a very good chance of finding the expression wrapped onto different lines. With hyphenation, even single words can wrap to multiple lines. Tools that search line-by-line will miss these unless you use multiline techniques.
       Multiline substitutions require that you write "read-ahead" code for the command line tool that you're using and that you take that into account in the substitution. Given how you want the results to be printed out, you may also want to preserve any newlines found in the match, which is even more difficult. That could bring up the subject of line endings but that's a completely different topic.
       I apologize if this sounds discouraging. Multiline searches aren't needed that often and in most of those cases, exceptions can be dealt with by hand. I just didn't want you to get surprised by it. To give you an idea of how easy basic substitution is, have a look at Tom Christiansen's Cultured Perl: One-liners 102 and One-liners 101. Both have some "in-place" substitution examples.
    Gary
    ~~~~
       MIT:
          The Georgia Tech of the North

  • How can I get GV and HDV files imported to Premier Elements 13. I know now that they are not supported. But does it exist ways to get them. I use camera HDR-HS7E?

    How can I get GV and HDV files imported to Premier Elements 13. I know now that they are not supported. But does it exist ways to get them. I use camera HDR-HS7E?

    skjeggi
    What is this HDR-HS7E - a miniDV camcorder that lets you do DV and HDV capture firewire?
    True, the DV and HDV capture firewire into the Premiere Elements 13 Capture window is gone. But, have you
    looked at the workaround suggested by PRE_help in this forum. The workaround is found in the following
    Adobe document....
    http://helpx.adobe.com/premiere-elements/kb/removed-features-formats-elements.html
    When your schedule permits, please let us know if that worked for you.
    Thank you.
    ATR

  • Performance, minimum bandwidth, thumbnail previews for PDF and InDesign Files with web content viewer

    Hi,
    We are considering using DPS with a web content viewer for large PDFs and/or InDesign files. The client using a web viewer might have very limited bandwidth (some as low as 256Kbps). We ask:
    1 - How well does the web viewer perform with very large PDFs and InDesign files  (500 MB+) with limited bandwidth? Does the file stream in chunks and the PDF shows as soon as the first page or two are available, with the rest loading in the background, or does the entire file come down in one part and then shown?
    2 - Can PDF and InDesign files support thumbnail previews? For example, one image per PDF page and user can scroll forward and back.
    Your thoughts and comments are greatly appreciated.
    Thanks!
    -Stephen

    Hi Stephen,
    The way the web viewer works is that it converts the PDF/InDesign files to PNGs along with additional HTML assets. Assets are downloaded as they’re ready for a given page (e.g. first, page 1 is filled with its assets as they become available, then page 2, etc), so a reader wouldn’t need to wait for the entire article to load. The next few pages are also loaded in the background, so the reader wouldn’t be likely to notice lag as they flipped through pages to the next page after reading the current one. So the lag will depend on the size of an individual page.
    For your question around thumbnails, the web viewer does not load a preview image so the reader would need to wait for the assets I described above to load.
    Hope this helps...
    Brian

  • Converter pictures and videos files to jpg and mpeg

    Do you know a safety software o freeware to convert pictures and videos files to jpg and mpeg? to use in my desktop with windows?

    A backup stores the data in the location shown in the following link: Create and delete iPhone, iPad, and iPod touch backups in iTunes
    Note, however that backup files are stored in a format that is meant for use only in restoring to an iOS device. They are not a way for you to view the photos on the computer.
    If you want to save the photos to the computer and be able to view them there, the following has instructions: Import photos and videos from your iPhone, iPad, or iPod touch to your Mac or Windows PC
    You can also use PhotoStream My Photo Stream FAQ or 3rd party apps such as http://www.photosync-app.com

  • What is difference between I-mesage and Text Message, some I want to send I message and but I send text and it's charge to me

    What is difference between I-mesage and Text Message, some timeI want to send I-message and but I send text and it's charge to me.

    Thanks Wj,
    another question, how I got to know, my I-message is activated, I put as ON, but I am not getting mesage it's activated, there is link showing to me, learn more abount I-message. do it will take time? please advise how I can activate my I-message. Please advise.

  • Drag and drop files from outside of DW into DW Files Window

    When I was using Dreamweaver CS for Windows, I could drag and
    drop files from my desktop directly into the Files Window of
    Dreamweaver. But I can't do that in the Macintosh version. Am I
    doing something wrong, or is it not supported?

    No. This is not supported.
    We cannot comment on upcoming versions.

  • I updated my dads phone and he had important messages and backup is deleted what should i do to recover them?

    i updated my dads phone and he had important messages and backup is deleted what should i do to recover them?

    Bummer.
    Did you update it on a machine other than the one he normally syncs to? Why did you delete the backup?

  • How to import a PDF form into FormsCentral

    Hi,
    Please help me in How to  import a PDF form into FormsCentral.
    Thanks,
    Techvedic

    Hi Techvedic,
    Import of form in Formscentral depends on how it was created. If you used LiveCycle designer to create the original form then it cannot be imported. However, if the form is created in Acrobat then you can import it by clicking on Import PDF form under Create New form heading.
    Note: In the imported form you may edit the position of the submit button, but other design edits to the imported form will need to be made in the tool used to create that form.
    Hope that helps, let me know if you have any other question.
    Regards,
    ~Pranav

  • Opening a client's InDesign file looks pixelated and blurry.

    I have InDesign CS4 and I'm having issues with the files that one of my clients sends to me.  The photos look poor quality, very pixelated, even if I change the settings for View > Display Performance > High Quality...Even the text fields look blurry.  I've replaced the graphics by selecting the graphic and going to File > Place, but the graphics still don't look that great.  Is this common when opening someone else's files and are there any ways to easily resolve the problem from my end?

    When I print this as a PDF (after "placing" the EPS graphics with the original)  the text and EPS-based graphics look a little better (not suberb, though), but the rasterized images still look dodgy, even though the originals included are "placed" back in the InDesign file again.  This might be adequte if the final, desired medium were a PDF, but I'm taking these graphics and putting them in Flash.
    I finally told my client that I needed PSD files instead, as this doesn't seem like it's a straight-forward fix for either her or I.  I am, however, interested in trying out anything else to find resolve in this, since this issue is likely to come up again and not only with me.
    Many thanks to all of you for trying to help me find a solution!

  • Issues when sharing InDesign files across Mac and PC?

    I'm looking for advise regarding cross platform use of the same InDesign files. We'll be working on 1000+ files with high resolution images. One designer works on a Mac and the other on a PC. We run the same version of InDesign. So far we are finding some (not all) fonts have issues where a PC font has to be replaced by the Mac equivalent and this often means the text box size has to change. When finished the files will be handed over to a fabricator.
    Should we be getting a 2nd Mac to replace the PC or is this cross platform sharing going to work without long term issues down the road?
    Thank you.

    Please, let's not let this get into a platform war.
    There's no reason to buy another computer to collaborate unless one of your users is unhappy with the platform they use now, and then the deciding factor should be personal choice. One is decidedly not better than the other from any technical standpoint as far as working in Adobe applications. If you want to cooperate with other users it's best that everyone have the same version of ID, which you've already said is the case, so the only point of conflict is cross-platform sharing, and the only hangups there are fonts and a few third party plugins that might be available only on one platform. If you stick to OpenType fonts, fonts be come a non-issue, and if you don't have OpenType, Stick withthe PD fonts for what becomes a minor nuisance on the Mac side. As far as plugins, nothing you can do if you need a one-platform release to do the work on both sides, but most third-pary plugins are friendly enough that you can stillopen the file with missing plugins on the other end if necessary and don't need the functionality to do your work.

Maybe you are looking for

  • I need help. Im not able to run itunes.

    This is the error message I receive. Please help. Nombre del evento de problema: BEX Nombre de la aplicación: iTunes.exe Versión de la aplicación: 10.6.1.7 Marca de tiempo de la aplicación: 4f71aced Nombre del módulo con errores: softpub.dll_unloaded

  • Pre-order at Apple store

    just wondering do u guys think apple should or could do pre-order at the apple retail store? save people alot of time and them alot of time as well. For me i would have to drive almost 2 hours to get to the nearest apple store, which i cant commit to

  • Tell a friend mobileme gallery iphoto 11 vs 9 !!

    Hi. to tell friends or business my gallery mobileme i use the button to announce. In iphoto 9 you got redirected to mail program and you could ad extra tekst and more alias etc. In the update there is no option to use mail anymore, now you only can u

  • I can not sign in to my account

    Hello, my name is Tinli San! Just now  I create Apple ID but it won't let me to sign in. It says You have not verified your account. Please help me

  • Why can't I use a Movers Coupon on a MacBook

    I tried to buy a MacBook Pro at the Best Buy store in DeerPark (IL) but was told by a store associate that I could not use my movers coupon as the MacBook was already on sale. There is no mention of this exclusion in the coupon or BestBuy.com. I have