How do I set Adobe Pro as the default Adobe (vs reader for example)

When I open a PDF document I want Adobe Pro to open
by default (rather then Adobe reader). I cant find how to set that in the Adobe Pro configuration
Does anyone know how to do this? Thanks

When I open a PDF document I want Adobe Pro to open by default
Adobe Acrobat Pro ?
Uninstall Adobe Reader and repair the installation of Adobe Acrobat.

Similar Messages

  • How do I set safari to be the default rss reader on windows XP

    How do I set safari to be the default rss reader on windows XP?

    Looks like I got it to work by selecting a document and setting in get info.  For some reason it was not working before.
    never mind

  • How do I set photoshop CC as the default for Bridge CC?

    How do I set photohsopCC as the default for Bridge CC?

    Command i or File > Get info on a selected pdf in finder.
    In the resulting window set open with AcrobatPro > Then set all like this to Acrobat pro..

  • I always want google classic, but sometimes i get google beta or google security (or whatever, can't remember its name) when i don't want it. why does this happen and how can i set google classic as the default?

    google is my default on the home page. But when i ask for google or simply open firefox, i sometimes get google beta or google security (or whatever its name is) instead of google classic. I just want google classic. How can i set it as my default. (I have a desk top computer, use firefox, and this never happens.)

    Why Apple can't undo its mistake?
    Whose mistake? The source of the problem:
    I was required to enter my recovery key. Now, there begins that huge flaw. I've forgotten it (I know it was my responsibility to remember it).
    If you had just taken the simple steps of storing your recovery key as Apple tells you to when you set it up, none of this would've happened.
    As it clearly states in the FAQ on 2-step verification: http://support.apple.com/kb/HT5570
    After you turn it on, there will be no way for anyone to access and manage your account at My Apple ID other than by using your password, verification codes sent your trusted devices, or your Recovery Key. You must be responsible for:
    Remembering your password.
    Keeping your trusted devices physically secure.
    Keeping your Recovery Key in a safe place.
    If you lose access to two of these three items at the same time, you could be locked out of your Apple ID account permanently.
    In addition, with two-step verification turned on, only you can reset your password, manage your trusted devices, or create a new recovery key.
    Apple Support can help you with other aspects of your service, but they will not be able to update or recover these three things on your behalf.
    If you aren't responsible enough to do that, you should not have turned the optional security feature on.
    This is your fault, not Apple's.

  • How can I set Paul to be the default TTS voice?

    Is there a way to set a TTS voice as the default so that it is always selected by default as the voice to use? I have all the voices installed and it currently defaults to Bridget - I guess because that is the first voice in the list. I normally use Paul but sometimes others so I want access to all the voices but would like the default to be Paul. I know that once I set Paul for the first slides, it defaults for that project for the rest of the slides, but I have to do this for every project and if I forget to set Paul then I have to go back and redo the slides. It would be nice if I could set the default to the voice I use the most often. I'm using Captivate 7.

    j,
    In the Finder, single-click on any text file, then type command-I (Get Info). You'll see an Open With... menu item. Select Pages from the list (if it's not in the list, navigate to it). Finally, click the Change All button. Use the same process for .doc files. Now, if you double-click on any of these files, it should open in Pages.
    -Dennis

  • How do I set Preview to be the default app for opening ALL pdf's?

    I have both Preview and Acrobat Professional on a Macbook Air running Mountain Lion.
    I don't see an option if I get info on Preview to set it as the default app for all PDF's.
    Where can I set this?  I only use Acrobat on occasion for form fill-in but prefer to use Preview.
    thanks
    neil

    Looks like I got it to work by selecting a document and setting in get info.  For some reason it was not working before.
    never mind

  • How to set up icloud as the default calendar in Outlook

    how do I set up icloud as the default calendar in Outlook?

    Not possible, Outlook only allows Exchange or local calendars to be the default, same with Contacts.

  • How to set a Photoshop version the default application when two versions are installed?

    I have two versions of photoshop installed on my Mac. Double clicking on the Photo in Bridge CS6, the photo is opened in Photoshop CS5 (Photoshop CS5 (default). Haw can I set Photoshop CS6 as the default application?

    Thanks for your prompt replay, I had already done what you suggested, but it does not work. When you open in Bridge File>Open with you still see Photoshop CS5 (default) and the file is opened automatically with Photoshop CS5 and not CS6 unless you specifically choose Open with Photoshop CS6. I vaguely remember that I found once somewhere "would you like Photoshop xxx to be your default option? but I cannot remember where and I cannot find it anymore

  • Can anybody tell me how I set an hiperlink in the new Adobe Muse CC 2014...

    Can anybody tell me how I set an hiperlink in the new Adobe Muse CC 2014...?

    Check out: http://helpx.adobe.com/muse/using/creating-hyperlinks.html
    Cheers,
    Vikas

  • How to authorise more than one machine (1 tablet Android and one PC running Windows XP Pro) with the same Adobe ID ?

    How to authorise more than one machine (1 tablet Android and one PC running Windows XP Pro) with the same Adobe ID ?

    Cloud License allows 2 activations http://www.adobe.com/legal/licenses-terms.html
    -Install on a 2nd computer http://forums.adobe.com/thread/1452292?tstart=0
    -Windows or Mac does not matter... 2 on the same operating system, or 1 on each

  • How do I set a variable on the main timeline from within a symbol?

    Just getting started with Animate and coming to it from Flash, as may be apparent from my question. How do you set a variable to the main timeline from within a symbol?
    I have 24 pairs of clickable elements, each in their own symbols, and all 24 of those symbols sit inside another symbol. I want all 24 to be able to set the same global variable when clicked. I can't find that this question is addressed anywhere, which makes me think I may be stuck in a Flash mindset and approaching the task in the wrong way. (There are however MANY discussions of how to address objects at different levels in the hierarchy. That's well covered.)
    Relatedly, how do you access a function on the main timeline from within a symbol?
    Adobe should consider putting together a support page (or pages) just for folks migrating form Flash. In the materials I've encountered so far there seems to be a studied effort to refrain from mentioning Flash in any way. I imagine there are a lot of people out there like me who have a deep background in Flash coding, but are just getting started with Animate. We don't need help with most of the basic concepts, but we may still have some pretty basic questions about how to accomplish some things in Animate because our Flash knowledge is getting in the way.

    Hi Bill,
    There are plenty of threads on here about scope, but here's one way to create a global variable:
    // code on Stage.compositionReady
    sym.myGlobalVar = 1;
    Then, anywhere in your project, you can check/set that var like so:
    sym.getComposition().getStage().myGlobalVar = 2;
    And here's one way to create a global function:
    // code on Stage.compositionReady
    sym.myGlobalFunction = function(){
              console.log('myGlobalFunction');
    Then, anywhere in your project, you can call that function like so:
    sym.getComposition().getStage().myGlobalFunction();

  • How can you download premier pro when the icon doesn't exist in cloud?[was:pr]

    how can you download premier pro when the iucon doesent exist in cloud???

    In order to download the software, your computer must meet the system requirements to run the software.
    http://helpx.adobe.com/x-productkb/policy-pricing/system-requirements-premiere-pro.htmlhttp://www.adobe.com/products/premiere/tech-specs.html
    The usual reason for not being able to download is that Premiere Pro (and other video apps such as After Effects) are 64 bit only so they require a 64 bit computer and a 64 bit operating system.
    If you're running a 32 bit computer and operating system then you will not see the Premiere Pro icon since the software will not run on your computer.

  • How do I set Preview to be the PDF defult reader?

    How do I set Preview to be the PDF defult reader?

    Thanks T P I got this from your search:  http://osxdaily.com/2011/10/31/set-default-pdf-viewer-mac-os-x/
    for others here is the answer.
    If you’ve downloaded Adobe Acrobat on the Mac you’ve probably discovered that it takes overPreview as the default PDF viewer in OS X, which is annoying because Acrobat is slow to load and a fairly bloated application. There’s little need to use Acrobat Reader as the way to view PDF files, so here’s how to change it back to Preview.
    Change the Default PDF Viewer in Mac OS X
    From the Mac OS X desktop, find a PDF file and hit Command+i to “Get Info” on the file
    Click on the arrow next to “Open with:” to expand and access the default application list
    Click the pull-down menu and choose “Preview” from the list, or if it’s not visible, navigate to it by choosing “Other”
    With Preview.app selected, click on the “Change All” button
    This will restore the leaner and very capable Preview app as the default PDF viewer in OS X and prevent the lengthy launch of Acrobat anytime a PDF is opened. This tip will be of less use if you need the full functioned Acrobat version, but for the average person just looking to quickly open pdf docs this can be a significant time saver.
    If you want a quick PDF file to use for this tip, you can grab the Apple history book “The Macintosh Way” for free (direct PDF link).

  • How to set InDesign CS5 as the default in the system having InDesign CS4 has the default ?

    How to set InDesign CS5 as the default .indd application when you have InDesign CS4 and CS5 installed and InDesign CS4 is the current default (InDesign CS4 was installed after CS5 installation)

    Thanks, but I already tried it at first but it is not the effective method.
    I think its because of the this reason :
    Both - InDesign CS4 and InDesign CS5 have their application/program/exe named as "indesign.exe".
    Installation of either InDesign CS4 or InDesign CS5, sets a Windows default path for the "indesign.exe". In this case, since InDesign CS4 was installed later (after InDesign CS5 was already installed), the "indesign.exe" which was directing InDesign CS5's "indesign.exe" was replaced by InDesign CS4's "indesign.exe".
    But after long google and search through regedit, I've got the solution :
    Locate HKEY_CLASSES_ROOT\InDesign.Document\Shell\Open\Command in regedit
    Change the value of (Default) attribute to "C:\Program Files (x86)\Adobe\Adobe InDesign CS5.5\InDesign.exe" "%1"     // Include the quotes
    Message was edited by: Vidit Kothari

  • How can I use aperture after receiving the full adobe suite? It won't allow me to use it.

    How can I use aperture after receiving the full adobe suite? It won't allow me to use it. I receive a dialogue box which states previews are not allowed in  aperture and the application is shut down.

    Aperture is Apples version of Lightroom. This has nothing to do with Adobe. Ask on a Apple forum. You won't find many people here using this program.
    Mylenium

Maybe you are looking for

  • Change swatches from CMYK to RGB

    Okay so I've just realised that my documents are CMYK and have changed the settings to RGB (File > Document color mode > RGB and from the colour fly out menu) although I notice that when I hover my mouse over the colors in the swatches panel that it

  • Failed to create object.Help needed

    Hi, I have some program here, the BPDU class and also the RootBridge class. The BPDU class is just a simple class with all the getMethods and the setMethods. For the RootBridge class, it is suppose to connect to the JDBC ODBC database, and create arr

  • Why does Siri not read my text messages to me?

    Why does my Siri not read my text messages to me?

  • Posting date is not opened---URGENT

    Dear MM Gurus, When we are doing MIGO_GS( subsequent adjustment) we are facing problem as follows:     <b>Posting Period 01 2007 is not open</b> Document Posting date: 30.03.2007 MM Period: Current Period 01 2007 ( user wrongly opened so we allowing

  • Different skype names appearing when you sign in

    When I sign into skype, a list of used names appears in the 'skype name' drop-down menu. Is it possible to clear this list? I don't want all the names to be visible when signing in. Grateful if anyone can advise, thanks.