Question about InDesign

Hello Adobe Creative Cloud,
           I have recently purchased Adobe Creative Cloud, and I'm having issues with the Indesign CC program. I need to use it for college, and I can't open it. I have it downloaded onto my laptop, and its folder and files are all present, but I can't open it. When I go to my programs list on Windows, all of my other programs (Photoshop, Illustrator, Dreamweaver etc.) are there except for InDesign. I've tried opening InDesign projects my my laptop, but it won't allow me. I really want to pin it to my taskbar and be able to use it, but I can't. Can you please tell me how to open and use it?
                   Thanks,
                        Tia Caffee

I have Windows 8, and I haven't seen any error messages, and I still don't know how to open it from my C Drive.
Date: Mon, 30 Sep 2013 04:14:19 -0700
From: [email protected]
To: [email protected]
Subject: Question about InDesign
    Re: Question about InDesign
    created by Eugene Tyson in InDesign - View the full discussion
What is your operating system?
What, if any, are the error messages? (Screen shots of error messages preferable.)
  You open it like any other programme, locate it on your hard drive and click the application programme file.
  As you said that you want to pin it to the Taskbar - I assume you have Windows.
This is for Windows 7 http://windows.microsoft.com/en-ie/windows7/pin-a-program-to-the-taskb ar
But you can look up your Own Operating system version and follow the instructions.
     Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5724573#5724573
     Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5724573#5724573
     To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5724573#5724573. In the Actions box on the right, click the Stop Email Notifications link.
           Start a new discussion in InDesign at Adobe Community
  For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

Similar Messages

  • A few questions about indesign CS3 scripting

    1.     I often do one thing that pressing a Ctrl + ~, followed by a Ctrl + Shift + E. So I have spent one day trying to write a script today but failed to. I am going to be insane sooner or later.
    I have tried this line "app.menus[0].menuElements[10].menuElements[1].shortcutKey" for "Ctrl + Shift + E". This line is the farthest point I can get. It doesn't work.
    2.     if (app.menuActions.item (5262).name == "Stop BlackLining" || app.menuActions.item (5262).name ==  "Start BlackLining")
    is not equal to
    if (app.menuActions.item (5262).name == ("Stop BlackLining" || "Start BlackLining"))
    why?
    3.     I try this line "app.menuActions.item (5262).name" in ESTK. JavaScript Console reads "Start BlackLining".
    When I select and click the menu "Start BlackLining", the menu's contents changes to "Stop BlackLining". See below.
    Then I try the line refered above. JavaScript Console reads "Start BlackLining" again. As you can see, I consider that it should be "Stop BlackLining". The two different menus use the same index in Indesign.
    But when I only click their parent menu "BlackLining" once and then try the line, JavaScript Console reads "Stop BlackLining". That's normal. But how come? Do I click their parent menu to refresh all the menus to make it normal?
    Thanks in advance.

    Thanks for the tips. When I write a script, I will open all the Help Document, Object Model Viewer, Core JavaScript Classes and ScriptUI Classes.
    function(){return A.apply(null,[this].concat($A(arguments)))}
    function(){return A.apply(null,[this].concat($A(arguments)))}There are some reasons to avoid dealing with selections in scripts, but perhaps in this case it is correct to do so. Then you would use app.selection[0].fit(FitOptions.CENTER_CONTENT);
    After reading instruction in OMV, I can't figure it out what exactly "app.selection[0].fit(FitOptions.CENTER_CONTENT);" does.
    As the "Ctrl+Shift+E" is a shortcut customized for starting or stopping the function of the Plug-In "BlackLining" (The  Plug-In's name is BlackLining).
    function(){return A.apply(null,[this].concat($A(arguments)))}
    function(){return A.apply(null,[this].concat($A(arguments)))}In JavaScript you should use === and !== instead of == and !=, unless you want to be tripped up by weird type coercion problems.
    But anyhow, hwy would you think these would be equivalent?
    First, let's write out your first case parenthesized according to the JS precedence rules, so there is no ambiguity:
    ((app.menuActions.item(5262).name=="Stop BlackLining") || (app.menuActions.item(5262.name == "Start BlackLining"))
    Hopefully that's what you expect. Let's suppose it is the start case. Then that will evaluate to:
    ((false) || (true))
    which evaluates to true.
    But your second case is nothing like that.:
    (app.menuActions.item (5262).name == ("Stop BlackLining" || "Start BlackLining"))
    So first the interpreter evaluates ("Stop BlackLining" || "Start Blacklining"), that is, it takes the logical OR of two strings. This is not a very useful thing to do. It will always return the first one. That is ("a" || "b") always evalutes to "a". So then you have:
    (app.menuActions.item (5262).name == "Stop BlackLining")
    and if we're in the start case, then it is: false.
    I think there is no way to make it short, right?
    In fact, it's hard for me to find material of learning script t just execpt serveral PDFs (about basic of script) was added when the software was installed. I learned the C Language before. I try to remember the similar usage in C Language. Maybe I am wrong.
    function(){return A.apply(null,[this].concat($A(arguments)))}
    function(){return A.apply(null,[this].concat($A(arguments)))}As for your third question, well, the language is a bit confused, but menus can change their appearance when they are clicked on. That's a good reason not to use menu names or positions in scripts. Doesn't this blacklining extension (whatever it is) define a stopBlackLining() function somewhere in the DOM? Or someting like that?
    BTW, "BlackLining" is a Plug-In. Is Plug-In equal to extension in English? And DOM is short for document object model? It seems there are a lot more for me to learn.
    I want to tell you what kind of script I want to write. Make it simple. Forgiving my poor English.
    Let's get it started.
    I have to open many documents at the same time and then shut down the plug-in "BlackLining". So I have to press the shortcut "Ctrl+~", which means selecting the next document, and then press the shortcut "Ctrl+Shift+E", which is set by me and means starting or stopping the plug-in.
    When I finished some operions, which can't be proceeding while the plug-in "BlackLining" is on, I have to press the shortcut "Ctrl+~", and then press shortcut "Ctrl+Shift+E" to start "BlackLining".
    I have to do it over and over again day after day. I am almost insane. (Problem one)
    So, I want to write a script, let the computer do it for me. Further more, the shortcut "Ctrl+Shift+E" is used for both starting and stoping "BlackLining". Can't be set separately.
    At the same time, I don't know whether the "BlackLining" is on or not. What if it's off? Maybe old documents are on, some subsequent are off. See below:
    So I have to check the state before I press "Ctrl+Shift+E". (Problem two and three)
    Can you help me out? Thanks.
    If you need "BlackLining", you can download demo at http://www.blacklining.com/.

  • Need help with question about indesign 2014...

    I am using indesign 6 on a pc - simple question: when I update to indesign 2014, will the update keep all of my previous and current work?

    Yes. Your documents will be unaffected by any new versions you install unless you open them in the new version and save them with the same name, then you will lose the ability to open them again in the old version.

  • Questions about InDesign CC performance / new computer?

    I have some questions and was hoping I could get some answers here.
    Due to poor performance in InDesign CC I have considered getting a new computer. I work with around 100 or so images, lots of text, all usually with bevels, shadows and other effects applied.
    Simply put, moving anything like an image or text, and dragging around the screen is quite slow. Some move operations take up to 10 seconds before they actually happen. It's disruptive, and my efficiency could be greatly improved if I could get rid of these issues.
    I'm wanting to know what I can do to improve this. I've messed around with the display performance settings, but ultimately it's a hassle and somewhat difficult to work with them turned down -- and I really want to avoid doing that.
    The system I'm using is a 2008 Mac Pro w/ a dual quad-core @ 2.8GHz, 16GB RAM, and a GTX 285 1GB on Mavericks. I've also packaged up my file and tested it on a 2013 iMac w/ i5 3.4GHz quad, 16GB RAM, GTX 775M 2GB on Yosemite. One CPU core (and only one) was pegged at 100% immediately after moving or doing anything on the page -- even dragging around got it up to 80-90% or more. Performance was a bit better on the newer Mac, but still bad.
    What I want to ask is, what's important for InDesign? Graphics power? VRAM? CPU power? Cores? RAM and RAM speed? It doesn't seem to me that InDesign CC uses more than one core. Is there anything I can do to improve this?
    Would greatly appreciate any information!
    Kind Regards

    charlotte stoby wrote:
    I can only regret 3 steps.
    Regrets…I've had a few…but then again…too few to mention… (sorry, I can't help myself sometimes ).
    Anyway, you could start with this: Troubleshooting 101: Replace, or "trash" your InDesign preferences and see if it helps.

  • Question about InDesign File Structure

    I had an interview Friday for a design job and they asked me to send them a stripped InDesign file without photos or anything, just a file so they can check out the structure of the file and see how I set up my files.
    1. What is good file structure?
    2. What do you suppose they're looking for?
    3. What should I send them?
    Thanks!

    I would provide the following:
    Bleed setup     (Usually  specified as .125 inches for commercial print)
    Layer Stacking Order (Z order)     (To see if you know how a  document flattens)
    Margins and Columns     (Mainly for Multi-Column Documents)
    Page  Setup     (Whether Facing Pages or Single Page spreads are needed)
    I  would start with 3 layers listed how they appear in the Layer Pallete:
    Text     (This  remains on top to counteract the affects of transparency)
    Images     (This layer used for all images or type with  transparecy effects)
    Background     (I create a bleed size rectangle with a fill  and stroke of none as a default)
    If including text:
    Provide an example of:
    Character and Paragraph Styles
    Nested Styles
    BONUS: Grep Styles
    I would also make a mixed ink group of some sort and dieline utilizing a spot color and overprint.
    It might impress them if you included Rich Black where needed.
    All of these would show them your mastery of Indesign and Print Design

  • Chat unavailable to resolve support question about InDesign CC2014 freezing at startup?

    Any suggestions on what to do now (I was in middle of support chat)?

    Hi smythRob,
    Please refer to the following links:
    Illustrator CC or InDesign CC crashes at launch
    Re: Adobe CC 2014 Release crashes at Startup
    Regards,
    Sheena

  • I have an urgent question about my indesign. I had problems with the creative cloude app and then uninstalled it and then installed it again. Now it is not opening and I cannot download it again either. Pls give me help and advice if there is anything I c

    I have an urgent question about my indesign. I had problems with the creative cloude app and then uninstalled it and then installed it again. Now it is not opening and I cannot download it again either. Pls give me help and advice if there is anything I can do to repair it

    Please authorize ADE 3 with same credentials that you used with older version of ADE

  • Question about Offset printing from Indesign

    Hello everyone, I have a question about printing too a DPX rip platemaker from Indesign. When I print my file to the rip, it seems to bold the text when it should not be bold, I do not know if this is an Indesign or rip error, but if anyone has a solution I would be grateful for any assistance.
    I dont know if it's necessary, but the OS with Indesign is Mac OSX, printing to a ripmate on Windows 2000.

    Have you applied an outline to the text?
    Try unoutlined text
    Is the text near an effect like drop shadow or other filter?
    Move the text to top layer or above any effects.
    Is it just this file or any file?
    Need to figure out if it's just this job or all of them or at least let us know.
    Have you got the fonts installed at the RIP end, perhaps it's rasterising text that the RIP has not got the font?
    You could try exporting to PDF first, that would embed the fonts in the PDF.
    Let us know if any of this helps?

  • Some questions about importing HTML files

    Hi, folks
    Let's suppose we want to import a pack of HTML files formatted in HTML5 wit's it's CSS into a double-oriented folio. A couple or three questions about that, please:
    1. Is there a limit for a reasonable quantity of HTML files I can import into a folio? I mean.. 100 would be way too much, for instance?
    2. These HTML files could be navigated and referenced from inside TOC-pages made in InDesign,right? (navto://..., I gues?)
    2. Will it be possible, by means of HTML adaptative design techniques, to treat both orientations (vertical and horizontal) as different viewports or screen sizes so that the design adapts for instance the column width with its CSS?
    3. That said, will the InDesign final app. respect that adaptative CSS rules?
    I am asking this because we are looking for a way to inject big quantities of content with a very similar design into our application in a really fast and automatizable way and I have the suspicion* that importing HTML5 preformated CSS files could be the a very good and simple alternative to importing XML into InDesign templates as we start out content as tagged almost-html files.
    Thanks a lot
    Gustavo Sánchez (Posting from Madrid)

    I assume you are asking about using HTML articles.
    1. There is no limit beyond simply keeping things reasonable.
    2. Yes. Just use navto://articlename
    3. Yes. I've used min-width of 768 and max width of 1024 to control it.
    4. InDesign does not enter into any of this with the exception of using the folio builder panel. Everything else is done in Dreamweaver or whatever program you decide to use for the article.
    If you want to restrict the HTML articles to one orientation or the other, use the _h and _v suffixes.
    Bob

  • Questions about PDF exporting with InDe CS5.5

    Hey all,
    A couple questions about exporting to PDF from the latest version of InDe.
    First, I have noticed that it seems to take a lot longer to get to a PDF. Any suggestions for how to speed up the process? It took 8 minutes or so to generate a low-res PDF (for print) of a 24pp document with a few placed images and vector graphics. Wow, that's a long time to wait, especially for a proof.
    Second, the background task... if I get it going on making that 8-minute PDF and then work some more on the document, what exactly is in the PDF? Usually I save before making a PDF or printing. So, is the last version saved what will be in the PDF?
    (As an aside, this ability to work on the doc while generating a PDF seems kind of weird. Generally one makes a PDF for proofing, or even for printing, when all the changes have been made and everything is "final". So, I see no benefit to being able to work on my document while it's making a PDF, as I'm probably finished making revisions for the time being. I have to say that I kind of like the progress bar you get when you make an interactive PDF, as you know you can't work on the document when that's on the screen... )
    Thanks as always.

    First, I have noticed that it seems to take a lot longer to get to a PDF. Any suggestions for how to speed up the process? It took 8 minutes or so to generate a low-res PDF (for print) of a 24pp document with a few placed images and vector graphics. Wow, that's a long time to wait, especially for a proof.
    Yes, this is abnormally long (and too long), something is wrong. What's the full version of InDesign you are running, as reported by holding down Cmd or Control and selecting About InDesign?
    Second, the background task... if I get it going on making that 8-minute PDF and then work some more on the document, what exactly is in the PDF? Usually I save before making a PDF or printing. So, is the last version saved what will be in the PDF?
    Saving is not related. InDesign makes a database snapshot of your document the moment you begin the PDF export, and makes the export relative to that snapshot, regardless of edits you continue to make during the export process, and regardless of saving. Of course saving first is a good idea, for several reasons, not the least of which it sounds like something's fairly seriously wrong with your document or your InDesign installation.
    We recommend you trash your preferences and export your document to IDML and see if either of those things changes this 8-minute behavior...err, assuming you're running 7.5.2.318.
    (As an aside, this ability to work on the doc while generating a PDF seems kind of weird. Generally one makes a PDF for proofing, or even for printing, when all the changes have been made and everything is "final". So, I see no benefit to being able to work on my document while it's making a PDF, as I'm probably finished making revisions for the time being. I have to say that I kind of like the progress bar you get when you make an interactive PDF, as you know you can't work on the document when that's on the screen... )
    Yeah, I think the primary benefit is if you are likely to work on 2 or more files in parallel, so you can finish A and export A and then switch to B. If you'd like a dialog box to pop up when export is done, check out my exportPop script from this post: ANN: automatic dialog after background export (exportPop.jsx.

  • Question about IDashedAttributeValues interface

    Hi to everyone,<br />I have a question about IDashedAttributeValues interface.<br />If I would like to apply custom dashes kDashedAttributeValuesBoss to a page item. I would expect that my code will look like this:<br /><br />InterfacePtr<IDashedAttributeValues> pAttribute(::CreateObject(kDashedAttributeValuesBoss));<br /><br />pAttribute->SetPhase( nPhase );<br />pAttribute->SetCornerAdjustment((IDashedAttributeValues::CornerAdjustment)nCornerAdjust ment);<br />pAttribute->SetValue( 0, nDash0 );<br /><br />But InDesign crashes at SetValue code. I could understand InDesign. It is out of range. But, how to specify the length of value array or to add value into array?<br /><br />Thanks in advance,<br />Alexander Staroverov<br />Developer Engineer<br />Comosoft GmbH

    Thank you to all, I have found the answer in SDK samples:<br /><br />void SnpGraphicHelper::AddDashedValues(const K2Vector<PMReal>& dashAndGapValues)<br />{<br />IDataBase* db = fItemList.GetDataBase();<br />InterfacePtr<IDocument> theDocument(db, db->GetRootUID(), UseDefaultIID());<br />     InterfacePtr<IUIDData> uidData(::CreateObject2<IUIDData>(kDashedAttributeValuesBoss));<br />     ASSERT(uidData != nil);<br />     uidData->Set(::GetUIDRef(theDocument));<br />     InterfacePtr<IDashedAttributeValues> dashedAttributeValues(uidData, UseDefaultIID());<br />     if (dashedAttributeValues != nil && dashAndGapValues.size() > 0) {<br />          for (int32 i = 0; i < dashAndGapValues.size(); i++) {<br />               dashedAttributeValues->SetValue(i, dashAndGapValues[i]);<br />          }<br />          this->AddAnAttribute(dashedAttributeValues);<br />     }<br />}

  • Specific Excel graph question for Indesign

    Hello,
    I have a question about how to use an image generated on Excel for mac for Adobe Indesign CC. I have browsed the forums here and googled but I'm not finding solutions for my specific question (so please bear with me, thanks). I have a report for work that requires a lot of bar graphs. The graphs are all done on Excel for mac 2011. I have tried two different ways of importing it into InDesign (also for mac) - 1) saving the graph as a PDF and then placing into InDesign, and 2) copying and pasting the Excel graph into Illustrator and then saving it as an ai file. In both cases, the ai file looks a bit better but the fonts seem a bit jarbled/compacted once I place it into InDesign. The font I use is Times New Roman. Also, since my report is laid out in a 2-column format, I need a chart to fit a space that is approximately 3 inches by 3.5 inches. Whenever I import the image, it’s significantly larger so I place it to fit the 3x3.5 inch space proportionally. When that happens, the fonts don't look quite right on the screen. I need to ensure that the chart looks sufficient once it’s printed on paper. I only recently began learning InDesign (self-taught) so your advise is appreciated.

    First, the preview may be at a lower quality, so see how it looks with View > Display Performance > High Quality Display set. Second, ID always displays some sort of preview on screen, but uses the actual image data for output, so export a page to PDF and print it to judge the quality.

  • Question about PageMaker files

    Can my old Mac Pagemaker files be open and used in the newer Mac with OS 10.6.8 which my Granddaughter has given me?  If so, with all InDesign versions?  I'm an old **** and this is the first time I'm trying to use a Discussion Group.  How do I know when there is an answer?  Do I have to keep this website open, or check back sometime, or will I receive an Email or phone call?  Please let me know by means other that this site, to get started with.  My Email is [removed by forum host] Thank you,  Gerda May
    Message was edited by: Peter Spier

    Dear Peter (if I be so personal).  First, thank you for deleting my Email
    address on the post and saving me a lot of spam.  Further, you were most
    gracious in sending more specifics in regard to the answer of my question about
    using PM files in InDesign.
    However, I am trying hard to understand your instructions to unembed "links" and
    bring them up to date.  However, I have no idea of what links are, are they
    something I would have intentionally done or are they automatic, and something
    of which I have no control over?  How do I locate them?  Are these procedures
    also necessity for using my old Photoshop 6 files?
    I only use 2 Programs: PageMaker 6.5 and Photoshop 6.  I have inherited a newer
    Mac with OS 10.6.8 which has only the basic Mac programs in it.  As you can
    guess, I need to identify which are the proper newer programs to obtain for it,
    with the least bit of effort and understanding.   
    I use PageMaker to write letters, and compose stories for printing in a Club
    magazine.  I also resurrect previous stories, that I've stored through the
    years.
    In Photoshop, I fix up new and old pictures for inclusion in stories and also
    resurrect previous photos I've stored on an external Hard Drive, or placed on a
    CD.
    If you would be so kind to steer me in the right direction, I will be most
    appreciative.  Trying to understand computer things is hard for me, and often
    times unsuccessful.  Please just smile and don't laugh, I'll bet you can't take
    shorthand or bake Dutch cookies, either!  Looking forward to some instructions,
    if you have the time, with many regards, Gerda May.

  • Hello question about certified pdf

    Hello,
    I have a question about certified pdf.
    My client wants to have a certified pdf , when  I make a high resolution PDF in CMYK is this oke for print media?
    Or do I need to do somthing els??
    Ton

    As Dov says, it's very likely that what they actually mean is a PDF/X file - some flavors of which you can make from InDesign using the Export > PDF (Print) dialog presets, and some you can make using Acrobat Pro.
    However it's very important to find out exactly what they want:
    There a couple of versions of PDF/X (the older PDF/X-1a is very widely supported but can only cope with CMYK - the newer PDF/X-4 is more flexible and handles things like spot colors, but is often not printable on older hardware).
    When exporting to CMYK you have to choose a color profile - and that will depend on the printer's hardware and proofing systems. You may have to choose exactly the right one, or they may be able to convert back from any profile - until you find out you're working in the dark.
    Of course you also need to know the printer's rules about bleed, TAC, etc.

  • Questions about your new HP Products? HP Expert Day: January 14th, 2015

    Thank you for coming to Expert Day! The event has now concluded.
    To find out about future events, please visit this page.
    On behalf of the Experts, I would like to thank you for coming to the Forum to connect with us.  We hope you will return to the boards to share your experiences, both good and bad.
     We will be holding more of these Expert Days on different topics in the months to come.  We hope to see you then!
     If you still have questions to ask, feel free to post them on the Forum – we always have experts online to help you out.
    So, what is HP Expert Day?
    Expert Day is an online event when HP employees join our Support Forums to answer questions about your HP products. And it’s FREE.
    Ok, how do I get started?
    It’s easy. Come out to the HP Support Forums, post your question, and wait for a response! We’ll have experts online covering our Notebook boards, Desktop boards, Tablet boards, and Printer and all-in-one boards.
    We’ll also be covering the commercial products on the HP Enterprise Business Community. We’ll have experts online covering select boards on the Printing and Digital Imaging and Desktops and Workstations categories.
    What if I need more information?
    For more information and a complete schedule of previous events, check out this post on the forums.
    Is Expert Day an English-only event?
    No. This time we’ll have experts and volunteers online across the globe, answering questions on the English, Simplified Chinese, and Korean forums. Here’s the information:
    Enterprise Business Forum: January 14th 7:00am to 12:00pm and 6:00pm to 11:00pm Pacific Time
    Korean Forum: January 15th 10am to 6pm Korea Time
    Simplified Chinese Forum: January 15th 10am to 6pm China Time
    Looking forward to seeing you on January 14th!
    I am an HP employee.

    My HP, purchased in June 2012, died on Saturday.  I was working in recently installed Photoshop, walked away from my computer to answer the phone and when I came back the screen was blank.  When I turned it on, I got a Windows Error Recovery message.  The computer was locked and wouldn't let me move the arrow keys up or down and hitting f8 didn't do anything. 
    I'm not happy with HP.  Any suggestions?

Maybe you are looking for

  • How to count List of open sales orders?

    HI Gurus, Client requ: List of no of open sales orders? I used T.code: VA05, given date range as desired and selected radio button as OPEN SALES ORDERS. I got huge list of sales orders with line item wise. say for example in a sales order 100 line it

  • This.hostcontainer not working in chrome

    Hi, I am using this.hostcontainer to communicate between an embedded PDF object and the parent HTML page. This works fine in IE9 however I can not seem to get it to work in google chrome. Does anyone have links to samples which work in chrome? Thanks

  • Transaction Code CJAL for Disributing Projects via ALE

    Hi, I want to Disribute Projects using ALE from one system to another. I have done all the ALE related configurations. I am using IDoc Type: PROJECT01 Message Type: PROJECT BAPI: BAPI_PROJECT_SAVEREPLICA Object: WorkBreakdownStruct                   

  • Lost remote login ability

    Hi all, hope I can keep this brief and get some help. I set up SBS 2011 and ES 2010 for a small business with a few users, all went well. I had to purchase an SSL certificate to get ES working as I wanted, with remote users of iPads, laptops etc ...

  • Post Back Tree view when tree node check changed

    Hi everyone,  I have a tree view, both child and parent have check box. I want to check all the child on the parent selection.  I try "SelectedNodeChanged" but the page doesn't post back to fire my function. I know I can use javascript to post back t