Multiple Problems with PDF InDesign, Bridge, and Acrobat Reader

I create proof books with a blend of Adobe Bridge & InDesign.
Here is my work flow: I will BOLD the errors I am having and need help with.
Step 1.) I create contact sheets in Bridge and save them as PDF's
Problem with Bridge ( I have another posting for this thread as well under Bridge) I cannot save PDF's larger than 400ish photos at 300ppi (important for my printer) without it saving as a blank PDF. COMPLETELY EMTPY! So I have to split up my photos into groups of 400 or less photos then patch them back together.
Problem with Acrobat: If I patch those PDF’s back together with Adobe Acrobat (a suggestion from another person on here) they save great but I get an error when I try to import them in indesign. The error reading: ERROR. Cannot determine page count.
Please open the PDF file in Acrobat, do a “Save As…” and try again. (99)
Step 2.) I use a script (MultiPageImporter2.2.1.jsx) to import the PDF's into Indesign. (if saved as one pdf in acrobat I get the above error)
Problem With InDesign: I run this importer script in InDesign to create my books with a template I use from my printers. Well since I have to import multiple pdf with multiple pages ( because I can’t piece them together without the above error. Then I have this problem:
I place a pdf with 1-226 pages in. I start this on page 1.
I place the next pdf with 1-141 pages in. I start this on page 227.
An error pops up that says I MUST start my import on page 226!!!!!!!!!! I don’t want to import on page 226 because I have two photos on that page!
I tried it several ways and no matter what I loose my last page of my first import.
PLEASE someone help me! I feel like I might be doing something really silly but I’ve spent 7.5 hours today working on this books with error after error.
I have done all the updates on my computers and nothing works. I use two macs and both have the same errors. I have a mac-book Pro | snow leopard and a Imac | snow leopard.
Thanks much!

All your problems seem to stem from the PDFs that you are making from Bridge.  What you are describing should be perfectly possible, but the fact that Bridge doesn't want to make a PDF with more than 400 photos and it all goes downhill from there makes me suspect Bridge.
Here's a plugin that may help?  Looks pretty cheap for what it does.
Apart from that I'd try to clean up the PDFs that Bridge is producing if Indesign doesn't like them.  One way would be to print to a new PDF, after you've combined them as necessary.
As to the last pronlem you mention, where it forces you to place on page 226, have you tried creating a blank page 227 first, before you try placing?

Similar Messages

  • Problems with Windows 8.1 and Acrobat Reader XI

    I have two problems which are likely related.  First I can no longer save .PDF files that already include saved comments, and secondaly, I can no longer delete .PDF files.  Any suggestions?

    This forum is for users of Adobe's online service - files.acrobat.com.
    Please try reposting your question in the Adobe Reader forums (http://forums.adobe.com/community/adobe_reader_forums)

  • Compatibility problem with GoLive 5.0 and Acrobat 6.0 Standard?

    Whenever I add pdf files created with Acrobat 6.0 to the GoLive 5.0 site window a question mark or the little green bug appears next to the file. The bug/question mark does not go away when I link to the file. Moreover, trying to delete it in GoLive's trash is almost impossible. No matter how many times I try, it continues to appear in Site Trash (under the Extras tab). Has anyone out there had problems with pdf files and GoLive 5.0? Thanks for the help!

    Almost all versions of Acrobat came with Distiller since version 1.0. There was a version of Acrobat Approval 5.0 that did not come with Distiller, but that wasn't really a full version of Acrobat.
    ...Mike

  • Having multiple problems with script - NTFS Permissions and AD Groups

    Hi, all!  I'm having multiple problems with my first script I've written with Powershell.  The script below does the following:
    1. Prompts the user for a corporate division under which a shared folder will be created, and adjusts variables accordingly.
    2. Prompts if the folder will be a global folder or an office/location-specific folder, and makes appropriate adjustments to variables.
    3.  If a global folder, prompts for the name.  If an office/location-specific folder, prompts for each component of the street address, city and state and an optional modifier.  I've prompted for this information in this way because the information
    is used differently later on in the script.
    4.  Verifies the entered information and requests confirmation to proceed.
    5.  Creates the folder.
    6.  Creates an AD OU and/or security group(s).
    7.  Applies appropriate security groups to the new folder and removes undesired permissions.
    Import-Module ActiveDirectory
    $Division = ""
    $DivAbbr = ""
    $OU = ""
    $OUDrive = "AD:\"
    $FolderName = ""
    $OUName = ""
    $GroupName = ""
    $OURoot = "ou=DFS Restructure Testing OU,ou=Pennsylvania Camp Hill 4410 Industrial Park Rd,ou=Locations,ou=Camp Hill,dc=jacobsonco,DC=com"
    $FSRoot = "E:\"
    $FolderPath = ""
    $DefaultFolders = "Archive","Customer Service","Equipment","Inbounds","Management","Outbounds","Processes","Projects","Quality","Reports","Returns","Safety","Schedules","Time Keeping","Training"
    [bool]$Location = 0
    do {
    $userInput = Read-Host "Enter CLS Division: (W)arehousing, (S)taffing, or (P)ackaging"
    Switch ($userInput)
    W {$Division = "Warehousing"; $DivAbbr = "WHSE"; $OU = "ou=Warehousing,"; break}
    S {"Staffing is not yet implemented."; break}
    P {"Packaging is not yet implemented."; break}
    default {"Invalid choice. Please re-enter."; break}
    while ($DivAbbr -eq "")
    write-host ""
    write-host ($Division + " was selected.")
    $FolderPath = $Division + "\"
    write-host ""
    $choice = ""
    do {
    $choice = Read-Host "Will this be a (G)lobal folder or (L)ocation folder?"
    Switch ($choice)
    G {$Location = $false; break}
    L {$Location = $true; $FolderPath = $FolderPath + "Locations\"; $OU = "ou=Locations," + $OU; break}
    default {"Invalid choice. Please re-enter."; $choice = ""; break}
    while ($choice -eq "")
    write-host ""
    write-host ("Location is set to: " + $Location)
    write-host ""
    if ($Location -eq $false) {
    $FolderName = Read-Host "Please enter folder name:"
    $GroupName = $DivAbbr + " " + $FolderName
    } else {
    $input = Read-Host "Please enter two-letter state abbreviation:"
    $FolderName = $FolderName + $input + " "
    $input = Read-Host "Please enter city:"
    $FolderName = $FolderName + $input + " "
    $input = Read-Host "Please enter street address number only:"
    $FolderName = $FolderName + $input
    $GroupName = $DivAbbr + " " + $FolderName
    $FolderName = $FolderName + " "
    $input = Read-Host "Please enter street name:"
    $FolderName = $FolderName + $input
    $input = Read-Host "Please enter any optional information to appear in folder name:"
    if ($input -ne "") {
    $FolderName = $FolderName + " " + $input
    $OUName = $FolderName
    write-host
    write-host "Path for folder: "$FSRoot$FolderPath$FolderName
    write-host "AD Path: "$OUDrive$OU$OURoot
    write-host "New OU Name: "$OUName
    write-host -NoNewLine "New Security Group names: "$GroupName
    if ($Location -eq $true) { write-host " and "$GroupName" MGMT" }
    write-host
    $input = Read-Host "Please confirm creation of new site/folder: (Y/N) "
    if ($input -ne "Y") { Exit }
    write-host
    write-host -NoNewLine "Folder exists: "; Test-Path ($FSRoot + $FolderPath + $FolderName)
    if (Test-Path ($FSRoot + $FolderPath + $FolderName)) {
    Write-Host "Folder already exists! Skipping folder creation..."
    } else {
    write-host "Folder does not exist. Creating..."
    new-item -path ($FSRoot + $FolderPath) -name $FolderName -itemtype directory
    Set-Location ($FSRoot + $FolderPath + $FolderName)
    if ($Location -eq $true) {
    $tempOUName = "ou=" + $OUName + ","
    write-host
    write-host $OUDrive$tempOUName$OU$OURoot
    write-host
    write-host -NoNewLine "OU exists: "; Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)
    if (Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)) {
    Write-Host "OU already exists! Skipping OU creation..."
    } else {
    write-host "OU does not exist. Creating..."
    New-ADOrganizationalUnit -Name $OUName -Path ($OU + $OURoot) -ProtectedFromAccidentalDeletion $false
    $GroupNameMGMT = $GroupName + " MGMT"
    if (!(Test-Path ($OUDrive + "CN=" + $GroupName + "," + $tempOUName + $OU + $OURoot))) { write-host "Normal user group does not exist. Creating..."; New-ADGroup -Name $GroupName -GroupCategory Security -GroupScope Global -Path ("OU=" + $OUName + "," + $OU + $OURoot)}
    if (!(Test-Path ($OUDrive + "CN=" + $GroupNameMGMT + "," + $tempOUName + $OU + $OURoot))) { write-host "Management user group does not exist. Creating..."; New-ADGroup -Name $GroupNameMGMT -GroupCategory Security -GroupScope Global -Path ("OU=" + $OUName + "," + $OU + $OURoot)}
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $FolderACL.SetAccessRuleProtection($True,$True)
    # $FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
    $BIUsers = New-Object System.Security.Principal.NTAccount("BUILTIN\Users")
    $BIUsersSID = $BIUsers.Translate([System.Security.Principal.SecurityIdentifier])
    write-host $BIUsersSID.Value
    # out-string -inputObject $BIUsers
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($BIUsersSID.Value,"ReadAndExecute,AppendData,CreateFiles,Synchronize","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.RemoveAccessRuleAll($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    get-acl ($FSRoot + $FolderPath + $FolderName) | fl
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $ADGroupName = "JACOBSON\" + $GroupName
    $objUser = New-Object System.Security.Principal.NTAccount($ADGroupName)
    $objUser.Translate([System.Security.Principal.SecurityIdentifier]).Value
    write-host $ADGroupName
    write-host $objUser.Value
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName,"ReadAndExecute","ContainerInherit, ObjectInherit", "None", "Allow")
    Out-String -InputObject $ar
    $FolderACL.AddAccessRule($Ar)
    $ADGroupName = "JACOBSON\" + $GroupNameMGMT
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName, "Modify", "ContainerInherit, ObjectInherit", "None", "Allow")
    Out-String -InputObject $ar
    $FolderACL.AddAccessRule($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    } else {
    $tempOUName = "cn=" + $GroupName + ","
    write-host
    write-host $OUDrive$tempOUName$OU$OURoot
    write-host
    write-host -NoNewLine "Group exists: "; Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)
    if (Test-Path ($OUDrive + $tempOUName + $OU + $OURoot)) {
    Write-Host "Security group already exists! Skipping new security group creation..."
    } else {
    write-host "Security group does not exist. Creating..."
    New-ADGroup -Name $GroupName -GroupCategory Security -GroupScope Global -Path ($OU + $OURoot)
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $ADGroupName = "JACOBSON\" + $GroupName
    $FolderACL.SetAccessRuleProtection($True,$True)
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($ADGroupName,"Modify","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.AddAccessRule($Ar)
    $FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    My problems right now are in the assignment/removal of security groups on the newly-created folder, and the problems are two-fold.  Yes, I am running this script as an Administrator.
    First, I am unable to remove the BUILTIN\Users group from the folder when this is an office/location-specific folder.  I've tried to remove the group in several different ways, and none are having any effect.  Oddly, if I type in the lines directly
    into Powershell, they work as expected.  I've tried the following methods:
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $FolderACL.SetAccessRuleProtection($True,$True)
    $FolderACL.Access | where {$_.IdentityReference -eq "BUILTIN\Users"} | %{$FolderACL.RemoveAccessRuleAll($_)}
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    $FolderACL.SetAccessRuleProtection($True,$True)
    $BIUsers = New-Object System.Security.Principal.NTAccount("BUILTIN\Users")
    $BIUsersSID = $BIUsers.Translate([System.Security.Principal.SecurityIdentifier])
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($BIUsersSID.Value,"ReadAndExecute,AppendData,CreateFiles,Synchronize","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.RemoveAccessRuleAll($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    In the first case, the script goes through and has no apparent effect because afterwards, I do a get-acl and the BUILTIN\Users group is still there, although when looking through the GUI, inheritance appears to have been broken from the parent folder.
    In the second case, I get the following error message:
    Exception calling "RemoveAccessRuleAll" with "1" argument(s): "Some or all identity references could not be translated."
    At C:\Users\tesdallb\Documents\FileServerBuild.ps1:110 char:5
    +     $FolderACL.RemoveAccessRuleAll($Ar)
    +     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
        + FullyQualifiedErrorId : IdentityNotMappedException
    This seems strange that the local server is unable to translate the SID of a BUILTIN account.  I've also tried explicitly putting in the BUILTIN\Users SID in place of the variable in the New-Object line, but that gives me the same error.  I've
    also tried the solutions given in this thread:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/ad59dc58-1360-4652-ae09-2cd4273cbd4f/remove-acl-issue?forum=winserverpowershell and at this URL:
    http://technet.microsoft.com/en-us/library/ff730951.aspx but these solutions also failed to have any effect.
    My second problem is when I try to apply the newly-created security groups, I also will get the "Some or all identity references could not be translated."  I thought I had found a workaround to the problem by adding the -PassThru option to
    the New-ADGroup commands, because it would output the SID of the group after creation, however a few lines later, the server is unable to translate the account to apply the security groups to the folder.
    My first Powershell script has been working well up to this point and now I seem to have hit a showstopper.  Any help is appreciated.
    Thanks!

    I was hoping to stay with strictly Powershell, but unless I can find a Powershell solution, I may resort to ICACLS.
    As for the problems with my groups not being translatable right after creating them, I think I have solved this problem by using the -Server parameter on all my New-ADGroup commands and this example code seems to have gotten around the translation problem,
    again utilizing the -Server parameter on the Get-ADGroup command:
    get-acl ($FSRoot + $FolderPath + $FolderName) | fl
    $FolderACL = get-acl ($FSRoot + $FolderPath + $FolderName)
    # Add the new normal users group to the folder with Read and Execute permissions
    $GroupSID = Get-ADGroup -Identity $GroupName -Server chadc01.jacobsonco.com | Select-Object -ExpandProperty SID
    $SIDIdentity = New-Object System.Security.Principal.SecurityIdentifier($GroupSID)
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($SIDIdentity,"ReadAndExecute","ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.AddAccessRule($Ar)
    # Add the management users group to the folder with Modify permissions
    $GroupMGMTSID = Get-ADGroup -Identity $GroupNameMGMT -Server chadc01.jacobsonco.com | Select-Object -ExpandProperty SID
    $SIDIdentity = New-Object System.Security.Principal.SecurityIdentifier($GroupMGMTSID)
    $Ar = New-Object System.Security.AccessControl.FileSystemAccessRule($SIDIdentity, "Modify", "ContainerInherit, ObjectInherit", "None", "Allow")
    $FolderACL.AddAccessRule($Ar)
    Set-ACL ($FSRoot + $FolderPath + $FolderName) $FolderACL
    Going this route seems to ensure that the Domain Controller I'm creating my groups on is the same one that I'm querying for the group's SID to use in the FileSystemAccessRule.  It's been working fairly consistently.
    Still having issues with the translation of the BUILTIN\Users group, though. 

  • Problem with pdf chrome viewer and javascript

    I have a problem with chrome pdf viewer. We have created a form with acrobat 9 pro, this form contains a javascript. When the form is printed or saved the javascript checks that all the mandatiry fields are completed and displays a message if some fields are uncompleted. The chrome pdf viewer doesn't display the warning message when the form is saved, and doesn't display the check box included in the warning message pop up to confirm that the user accepts to print the form. The control is correct with FF et IE
    Thanks for your help

    There are many PDF viewers. Adobe's, third party downloads, things that come with systems (Apple Preview, Microsoft 8 Reader), things built into browsers (Chrome, Firefox...) Adobe's software understands the full set of JavaScript. Some ignoresJavaScript altogether. Some do selected JavaScript. This is a bit of a mess, but nothing can be done about it EXCEPT that you can demand your users use Adobe Reader. Whether they actually will depends on how important your needs are to them.

  • Problem with pdf-printing in Adobe Acrobat Pro

    Hi,
    I have Adobe Acrobat Pro 9.4.3.
    PDF-printing has always worked great but suddenly there is some kind of problem.
    After printing a excel-document from "Print to pdf" built-in function in MacOS OR Adobes Printer I have corruptet pdf-files when showing them in Adobe Reader/Acrobat, but the MacOS Preview-software shows them correct.
    So, there cannot be any problem with the printing, but the local preview on my computer using Reader or Acrobat. I dont even use the Myriad font in the document, I use Verdana.

    You say you're using Verdana but you're not. The error message clearly shows you're using MyriadPro Bold.
    You probably recently installed the Mac OS X 10.6.7 update which has a bug with OpenType PostScript fonts like MyriadPro Bold. Either use Verdana or another TrueType or PostScript font, or revert to Mac OS X 10.6.6.
    Read about the problem here: http://www.tidbits.com/article/12078

  • Problems viewing pdfs after upgrade to acrobat reader 8.0

    After uograding to acrobat reader 8.0, employees are getting garbage characters when they open docs created in acrobat 7.0.  Everyone is running Windows XP.  They have saved docs to desktop and tried to open but still no luck... any suggestions?

    Try re-starting Safe Mode (It will take more time to startup in Safe Mode because it runs a directory check.)
    If your Finder functions correctly that way, go to System Preferences >> Accounts >> Login Items, and remove them. Boot normally and test. If not go to ~(yourHome)/Library/Contextual Menu Items and move whatever is there to the desktop. Then do the same with /Library/Contextual Menu Items. Lastly, try moving ~(yourHome)/Library/Fonts to your desktop and restarting.
    Log out/in or restart, if that sorts it start putting items back one at a time until you find the culprit.
    Let us know.
    -mj

  • 2 Problems with PDF Forms:  Import and Launcing PDF Form in Browser

    We are installing SAP sersion 2004s and I have encountered 2 problems while working through several tutorials.
    1.  When Adobe Designer opens from the layout in SE80, the IMPORT option (under TOOLS) does not appear.  Is there an installation step(s) missing?
    2. I created a simple Adobe Interactive form based on T. Jung's demo (but without the imported PDF form).  Enabled is on and the binding is ok; yet, when I test the application the browser displays only a blank screen.  Other Web Dynpro for ABAP tutorials have worked fine, but not the Adobe Forms.  Again, is there an installation step(s) missing?
    regards,
    john

    First make sure that you have the correct version of the Adobe Lifecycle Designer installed.  I am running 7.0.050519.0.  There are some OSS notes on how to upgrade to the 7.X version of the designer.
    On the second problem, you probably don't have the correct version of the ACF installed.  The ACF (Active Control Framework) is only used when running Interactive PDF documents - not print version ones.  Have a look at OSS note 766191 and 846952.  I had to uninstall my current ACF and install the 04S SP7 version (according to the two notes listed) before I could build the demo in question.

  • IF ANYONE IS HAVING PROBLEMS WITH THEIR ZEN MICRO AND MICROPHOTO, READ TH

    Download : Latest Firmware.
    - ZenMicroPhotoP4S_PCFW_LB__20_0.exe
    Disable Mediasource Detector.
    -Start Creative MediaSource.
    -On the menu bar, click Tools -> Settings.
    -Click the Detector tab.
    -Click the Enable Detector checkbox to uncheck it.
    -Restart your computer.
    Try updating the firmware again.
    Afterwhich , you may want to try reloading the firmware using the
    recovery mode option.
    Try to get into recovery mode with the following steps:
    ) Turn off the player.
    2) Remove the battery.
    3) Move and hold the Power button to the Power On position and
    re-insert the battery. Hold the Power button until the Recovery Mode
    appears.
    The following options will be displayed:
    ) Clean Up (Performs a disk scan on the players hard disk, it will not
    affect music files)
    2) Format All (Formats the players hard disk - Note: all contents will
    be lost)
    3) Reload Firmware (Reloads the Operating System on the Jukebox)
    4) Reboot (Reboots the device).
    Next select Reload Firmware and connect the player to the PC. After
    connecting, launch firmware update file. Does the firmware update
    process complete?
    Message Edited by barylakamil on -2-200608:3 AM

    Mine is doing the exact same thing. Completely frozen while trying to reload firmware. You boot the thing up and it just sits there with the creai've logo. I have not tried the steps outlined exactly above yet but I am going to give them a shot. Heck I have nothing else to lose. At this point it is already 200 bucks down the drain. Hmm maybe I will go with the Zune form microsoft.

  • Acrobat 9 pro and problems with pdf made by photoshop cs4

    Hello,
    I have encountered a problem when viewing pdfs exported from photoshop cs4 using acrobat pro 9. If I open single pdf, it's ok, but whenever I open another pdf, all text is jagged. Then if I close all pdfs and try opening the second one, it's ok again. It looks like acrobat is not able to render texts correctly in newly opened pdf when another pdf is already opened.
    This happens only with pdfs exported from photoshop (file->save as->pdf). It does not really matter if the first opened pdf is from photoshop or not, all other opened pdfs from photoshop are crapy.
    I tried different settings when saving pdf but the results are always the same - jagged type (it does not even look like aliased, it's completely screwed and unreadable) in second pdf. It is funny because text present as smart object from illustrator renders fine all the time. Therefor I think the problem is between photoshop export and acrobat, vectors are rendered with no problems.
    I tried opening on different pc (also with acrobat 9 pro) with the same result. Systems are vista on exporting pc, the second pc is running windows7 beta. However on the third pc with windows XP and adobe reader 9 everything works fine.
    Any ideas how to make this work?
    regards,
    embee

    Solution found for me. From Adobe Acrobat & Reader 9.1 Release Notes:
    Roaming Profiles on Windows and Networked Home Directory on Macintosh
    are not supported configurations for 9.0 or 9.1, however we have made
    several fixes in 9.1. We are looking at the possibility of supporting
    this for the next major release.
    As I am working with roaming profiles, my current solution (which is no solution at all) is to wipe current and reinstall Acrobat/Reader 8. Among other things there are supposed console hacks to make the purchased Adobe software run at all in a group work environment. I will end up trying them later.
    Some good reads are :
    http://forums.adobe.com/thread/300660
    http://forums.macrumors.com/showthread.php?t=198512
    http://forums.adobe.com/thread/391738?start=150&tstart=0
    http://serverfault.com/questions/37805/adobe-reader-wont-launch-when-logged-into-network-u ser-accounts-open-directory

  • I'm working mostly with CS6 Photoshop, Indesign, Illustrator and Acrobat Pro X. Can I update from 10.6.8 to Mavericks without any problems?

    Can I update to Mavericks without any problems for CS6 Photoshop, Indesign, Illustrator and Acrobat Pro X?

    I can't guarantee it, but I think it's very likely you'll have no problems. Mavericks is now up to 10.9.3, and it's extremely stable.

  • Resolution problem with pdf presentation from CS4 in Bridge

    I have CS4 and am consistently having problems creating multipage pdf files using Bridge; though they are created using 300 dpi files in Photoshop CS4 the resulting multipage pdfs from Bridge are not print quality. I never had a problem with this before Bridge was required to create pdf presentations. The files used to create the presentation in Bridge are either psd or Photoshop pdf at 300 dpi. I am completely self-taught in Photoshop and my skill level is moderate at best, but I am not finding anything to help me so far in searching google and forums. Does anyone have any info to point me in the right direction? thanks-

    Have you applied all the updates for photoshop cs4 including this one:
    win:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4228
    mac:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4229

  • Printing Problems with PDF - Adobe Acrobat

    Printer - HP Deskjet 3070A
    Laptop - Asus Zenbook running Windows 7 Home Premium
    Issue: Printing problems with PDF (Adobe Acrobat Reader)
    Dear All,
    Please help!
    My printer was working absolutely perfectly until my brother in law recently needed to borrow my printer. He plugged in his laptop running Windows 8 (awful thing that is). Since he did this to print his own PDF, I cannot print mine.
    Although all the text will appear on the page perfectly both in the document view and on actual printing, it appears that some of the transparent formatting stuff on a PDF - such as boxes you have to fill in and transparent areas (such as you find on glorious tax forms) are omitted completely. In fact, in their place I was getting a single black dot. Now, after uninstalling and re-installing updates for the printer, windows 7, adobe acrobat reader, etc.etc. I get squat. Just all the text laid out but none of the shading or boxes.
    I have tried fiddling with the printer settings; the  print as 'photo' option, dpi settings, greyscale - as much as I can think of and I am thoroughly stumped.
    In a desperate attempt, I even installed the Universal Printer Drivers - thinking it might have been that. No. All I got was a page of gobbledygook. Consequently, I uninstalled and reinstalled the normal drivers again.
    If there are any wonderful people out there with any fabulous ideas about how I can get my shading and boxes back; I'd  very much appreciate it. Sadly I have a tax return to fill out (which is already fabulously late) and need my printer to work!
    Much appreciation in advance x

    Hey there @Reverie!
    Thanks for posting on the HP Forums!
    I can see that the printer is no longer printing in the correct format after it was plugged into the Windows 8 computer!  You mentioned you have run the updates and uninstalled/re-installed the printer software.  Have you uninstalled and re-installed the Adobe software? Are you getting the same issue from other programs as well? Are you getting the same issues if you are logged in as a different user on the computer? 
    I have located the HP Update Software Utility that may be able to help.  You can download an run the utility.  It may be able to locate any other updates for the printer.
    I would also recommend running a disk cleanup on the computer to clear any temporary files and junk files that may be causing some performance or software issues. If you do not know how to run a disk cleanup on the computer please follow this document regarding Delete files using Disk Cleanup.  It is recommended to restart the computer after a disk cleanup. After the restart try the print job again!
    Let me know if that helped and thanks again for posting on the HP Forums!
    Cbert
    I work on behalf of HP.
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" at the bottom of this post to say “Thanks” for helping!

  • We have a mac laptop and dont have any problems with pdf files but our imac will not open them.  any suggestions

    we have a mac laptop and dont have any problems with pdf files but our imac will not open them.  any suggestions?

    Back up all data.
    In the Finder, select Go ▹ Go to Folder from the menu bar, or press the key combination shift-command-G. Copy the line of text below into the box that opens, and press return:
    /Library/Internet Plug-ins
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • Problem with update Photoshop, Illustrator and Indesign CS6

    Hi all. I have problem with update Photoshop, Illustrator and Indesign CS6 on OSx 10.8.4. Application are OK but update (bug fixies) not working. Update failed. (U44M1P7)

    Hi El Gondo,
    The following might explain and help solve the problem...
    U44M1P7 - Updates :
    http://helpx.adobe.com/creative-suite/kb/error-u44m1p7-installing-upda tes-ccm.html
    U44M1P7, U44M2P7 - Creative Cloud Help / Can't apply Extension Manager update 6.0.2 | Mac OS :
    http://helpx.adobe.com/creative-suite/kb/unable-apply-extension-manage r-update.html
    Thanks!
    Ankit

Maybe you are looking for