Convert pdf to swf using Flashpaper2

When I convert a pdf (from client) to swf using Flashpaper2
the Flashpaper SWF pages are longer or taller than the original pdf
pages...so a white area appears above and below the content of each
converted page. These pages have alot of images in them. Anyone
have any ideas as to how to get the pages to match the originals
perfectly? Thank You

This is an issue about pdf to swf conversion, some pdf files contain images may result in the problem of the compression and the resolution balance.
And it will fit in with the flash player but ignore proper ratio of the content. But i am using a pdf to swf converter which will automatically shrink or stretch the image size for the swf image.
But still look forward to better solution about this........be well!

Similar Messages

  • Can I convert PDF to PPT using adobe acrobat x standard? If so, how?

    Can I convert PDF to PPT using adobe acrobat x standard? If so, how?

    Hi meganl52100253,
    With Acrobat X, you can save to Word and Excel format by choosing File > Save As. But saving to PowerPoint wasn't introduced until Acrobat XI.
    You're welcome to try Acrobat if you'd like. You can download a free 30-day trial from http://www.adobe.com/products/acrobat.html.
    Best,
    Sara

  • Why does all alphabets change to capital when converting pdf to word using Adobe Acrobat XI

    Why does all alphabets change to capital when converting pdf to word using Adobe Acrobat XI

    Word 2013 uses its own pdf creator engine as far as I know. The step I performed were:
    1 - In the save settings I told word to embed fonts (sorry for the language, I have the Italian client)
    2 - Export from Word -> Save As -> .pdf adding also the table of contents/index
    N.B. I cannot use PDF/A, and in any case it doesn't embed the font
    A working solution is to use Acrobat XI to convert it or print with Adobe PDF printer, results:
    The problems are 2:
    1 - It doesn't create any bookmark and doesn't create links from the table of images to the linked images
    2 - Images, also with the preset "High Quality Printing" customized using "No compression", are really ugly and if you zoom a bit more than 100% they totally be s**t. It wasn't that way with PDF created by word.
    In the end, or I find they way to open the pdf created by word and embedd the missing font, or I find a way to make Acrobat XI creating bookmarks from the word file.
    Suggestion?

  • Convert pdf to swf

    Is it possible to convert a pdf to swf file using acrobat?
    I have a pdf file with 300 individual links (auto generated hyperlinks with a csv file and acrobat plug-in) and wish to convert to swf while keeping the links intact. I tried flash paper, but that did not convert functional hyperlinks. Any help is appreciated.
    Thanks,
    -Ed

    This is an issue about pdf to swf conversion, some pdf files contain images may result in the problem of the compression and the resolution balance.
    And it will fit in with the flash player but ignore proper ratio of the content. But i am using a pdf to swf converter which will automatically shrink or stretch the image size for the swf image.
    But still look forward to better solution about this........be well!

  • Applescript to convert PDF to JPEG using Preview?

    I know there's an existing script available on the internet that converts PDFs to JPEGs (it's here: http://macscripter.net/viewtopic.php?id=25350) BUT, for whatever reason, the quality, even when set to 600dpi, is crap. I get better results simply opening the PDF in Preview then saving as JPEG... even a 150dpi JPG from Preview is higher quality than a 600dpi file from this script I found...
    So, what I need help with is creating a applescript that converts PDF's to JPEGs using Preview (or whatever, as long as the quality of the JPEG is good). I have very little scripting experience so help is appreciate.
    Ideas?
    Thanks.

    Frank Caggiano wrote:
    Decided to finish this up as an interesting exercise. Hope you find it useful.
    One question for the  Applescripters here. The Automator action run as a shell script seems to return a list of filename aliases but the return value while looking like a list didn't behave as a list. I managed to rip it apart to get to the filepaths and the script works but it seems really kludgey . So my question is given the return of the Automator run as a do shell script what is a more correct way to handle it?
    Convert PDF to JPG
              © 2011 Frank Caggiano
              GNU Public License
              Convert pfd files to jpg images.
              The converted JPG files wil have the name of the original PDF files with the extension changed to JPG.
              The actual conversion uses the Automator action Render PDF Pages as Images.
              The user needs to create an Automator action with Render Pages as Images as the single action.
              Set the parameters for the conversion in the action.
              NOTE: this script assumes you're converting to jpg files If you select another output format in the action this script will
              need to be modified.
    -- choose PDF files
    try
              set sourceFiles to choose file with prompt "Select PDF files" of type {"com.adobe.pdf"} with multiple selections allowed
    on error msg number n
              if n ≠ -128 then
                        error "Unknow error: " & msg & space & n
              else
      quit
              end if
    end try
    -- choose destination folder
    try
              set destFolder to choose folder with prompt "Select Destination Folder"
    on error msg number n
              if n ≠ -128 then
                        error "Unknow error: " & msg & space & n
              else
      quit
              end if
    end try
    set destFolder to quoted form of POSIX path of destFolder
    -- select workflow
    try
              set workFlow to choose file with prompt "Select Work Flow" of type {"com.apple.automator-workflow"}
    on error msg number n
              if n ≠ -128 then
                        error "Unknow error: " & msg & space & n
              else
      quit
              end if
    end try
    set workFlow to POSIX path of workFlow
    repeat with sourceFile in sourceFiles
      -- get base name of the source file
              set bName to do shell script "basename " & quoted form of POSIX path of sourceFile
      -- Strip off the extension
              set text item delimiters to "."
              set bName to text item 1 of bName
              try
                        set res to do shell script "automator -i " & quoted form of POSIX path of sourceFile & space & workFlow
              on error msg number n
                        error msg & space & n
              end try
      -- Seems strange to  do it this way but it works
              set text item delimiters to "\""
              set theList to text items of res
    We go through the list of converted files. If there is more then one then the second and subsequent files
    will get and integer added to the name to avoid conflict.
              set cnt to 0
              repeat with convertedFile in theList
                        if convertedFile does not contain "alias" and convertedFile does not contain "}" then
                                  set fullPath to quoted form of POSIX path of convertedFile
                                  if cnt ≠ 0 then
                                            do shell script "mv " & fullPath & space & destFolder & bName & "_" & cnt & ".JPG"
                                  else
                                            do shell script "mv " & fullPath & space & destFolder & bName & ".JPG"
                                  end if
                                  set cnt to cnt + 1
                        end if
              end repeat
    end repeat
    Hi Frank--
    I tried the script you wrote and created the Automator workflow with the single action as requested, saved it to the desktop then selected it when your script's dialogue requested it. However, at that point your script game me the following error. Ideas? I did save the workflow as a workflow and I selected it directly, so I'm not sure why it thinks that the "workflow file does not exist" ? :
    error "The workflow file does not exist. 255" number -2700 from «script» to item

  • Converting PDF to JPG using Acrobat XI Standard

    I know I can convert a PDF into a JPG using Acrobat Pro but I'm wondering if I can do the same using Acrobat XI Standard.  The only thing I've read online is that Standard can convert PDFs into Excel, Word or Power Point docs.

    Yes, you can do this with Acrobat XI Standard. The only export feature that is not available in Std. is the ability to convert to PowerPoint.

  • Openoffice api converted pdf not loading using acrobat viewer

    While i used AcrobatFaxProducer of RFAX component java api which in turn uses Acrobat.jar and MRJToolkit to support pdf documents to fax.
    but you know while I tried to fax a pdf document which is being converted from word file using openoffice api, I got an error as follows:--
    Kindly requested to revert back with a solution for this.
    com.adobe.acrobat.sidecar.FontException:Corrupted or unrecognized font ().
    at com.adobe.acrobat.sidecar.AWTOutlines.doAWTOutlines(AWTOutlines.java:
    at com.adobe.acrobat.sidecar.AWTOutlines.<init>(AWTOutlines.java:351)
    at com.adobe.acrobat.pdf.PDFFont.<init>(PDFFont.java:1490)
    at com.adobe.acrobat.pdf.VPDFFontInstance.computePDFFont(VPDFFont.java:3
    at com.adobe.acrobat.pdf.VPDFFont.computeObject(VPDFFont.java:146)
    at com.adobe.pe.notify.VValuePurgeable.compute(VValuePurgeable.java:76)
    at com.adobe.pe.notify.VValue.handleRequest(VValue.java:172)
    at com.adobe.pe.notify.VValuePurgeable.objectValue(VValuePurgeable.java:
    at com.adobe.acrobat.pdf.VPDFFont.pdfFontValue(VPDFFont.java:128)
    at com.adobe.acrobat.pdf.VPDFFontByRef.computePDFFont(VPDFFont.java:260)
    at com.adobe.acrobat.pdf.VPDFFont.computeObject(VPDFFont.java:146)
    at com.adobe.pe.notify.VValuePurgeable.compute(VValuePurgeable.java:76)
    at com.adobe.pe.notify.VValue.handleRequest(VValue.java:172)
    at com.adobe.pe.notify.VValuePurgeable.objectValue(VValuePurgeable.java:
    at com.adobe.acrobat.pdf.VPDFFont.pdfFontValue(VPDFFont.java:128)
    at com.adobe.acrobat.pdf.VPDFFontByName.computePDFFont(VPDFFont.java:215
    at com.adobe.acrobat.pdf.VPDFFont.computeObject(VPDFFont.java:146)
    at com.adobe.pe.notify.VValuePurgeable.compute(VValuePurgeable.java:76)
    at com.adobe.pe.notify.VValue.handleRequest(VValue.java:172)
    at com.adobe.pe.notify.VValuePurgeable.objectValue(VValuePurgeable.java:
    at com.adobe.acrobat.pdf.VPDFFont.pdfFontValue(VPDFFont.java:128)
    at com.adobe.acrobat.pdf.Funct_cTJ.computeOffsetsAndString(TextExecuter.
    9)
    at com.adobe.acrobat.pdf.Funct_cTJ.setUp(TextExecuter.java:973)
    at com.adobe.acrobat.page.ContentParser.executeLiteral(ContentParser.jav
    at com.adobe.acrobat.page.ContentParser.churn(ContentParser.java:101)
    at com.adobe.acrobat.page.ContentArray.doSomeComputing(ContentArray.java
    at com.adobe.acrobat.page.ContentArray.thereIsContentAt(ContentArray.jav
    at com.adobe.acrobat.page.ContentArray.draw(ContentArray.java:239)
    at com.adobe.acrobat.page.ContentArray$1.draw(ContentArray.java:63)
    at com.adobe.acrobat.PDFDocument.drawPage(PDFDocument.java:191)
    at com.java4less.rfax.AcrobatFaxProducer.createImage(AcrobatFaxProducer.
    4)
    at com.java4less.rfax.AcrobatFaxProducer.getFaxPage(AcrobatFaxProducer.j
    at com.java4less.rfax.FaxModem.createFaxFiles(FaxModem.java:422)
    at com.java4less.rfax.FaxModem.open(FaxModem.java:489)
    at AcrobatFax.main(AcrobatFax.java:63)

    Hi anaghad,
    You can deduce the orientation. Actually the value of the ASFixedRect are [ lower-left x, lower-left y, upper-right x, upper-right y ]. To have the correct value use the ASFixedToInt32 and you will be able to find the orientation of the Media with the length and heigth.
    Use the rotation to change the orientation.
    E.g. MediaBox [0 0 100 400] is portrait. If you have a rotation of 90° in addition it's landscape.
    Regards,
    Joe

  • Converting PDF to word using OCR

    How do I convert a PDF file to Word format without the text changing on the Word document?

    Hi IBEW45,
    OCR is enabled by default when you convert a PDF to Word via the ExportPDF website. Just make sure that you're selecting the correct language for character recognition.
    If you're converting to Word from within Reader, it is possible to disable OCR. If you're encountering issues where there are odd characters in the converted Word file, you may be running into font issues. A good troubleshooting technique is to disable OCR. Here are the instructions: How to disable Optical Character Recognition (OCR) when converting PDF to Word or Excel.
    Please let us know how it goes.
    Best,
    Sara

  • Converting PDF to excel using Adobe Acrobat Pro XI

    I am trying to convert long but simple PDFs to excel but I keep getting an error message. I have tried disabling OCR, but nothing. Some of my files are rather large, but smaller than 100MB. Any suggestions?

    Hi Sara,
    I'm working on an Imac 3.2GHz Intel Core i5 running OS X 10.9.5. Sometimes
    Acrobat just shuts down, sometimes it stops responding and I have to force
    quit, and other times I get this message: "Save as failed to process this
    document. No document was created".
    I don't know exactly how the PDFs were created, as they come from another
    institution. They look as if they were exported from excel though. The
    thing is I have several files, all with the same structure, from the same
    source, and the small ones were converted without a problem, but the large
    ones simply won't. I'm attaching one of the files, perhaps you can see for
    yourself something useful.
    Thanks,
    Mariana
    On Tue, Nov 11, 2014 at 7:34 PM, Sara.Forsberg <[email protected]>

  • Converting PDF to SVG using Illustrator CS2

    Hi
    I'm trying to convert a PDF to a SVG file using illustrator.   The PDF has a number of http links created using the smart link tool in acrobat professional.   When I create the svg, I expected the links to be maintained.  Unfortunately they were not in the svg.    Is there some option I've missed or is this a problem with illustrator?
    Thanks
    Colin

    Colin,
    In order to more accurately answer your question, I believe we would need more information such as what application was originally used to create the pdf, etc.
    One basic answer to this question is that I don't believe Illustrator will maintain hyperlinks created in Adobe Acrobat as Illustrator is a vector design application.  I wonder if you placed the pdf in InDesign, if it would maintain the links.  It may or may not.  However, it is not necessarily a problem with Illustrator as much as outside the scope of what its intended use is.
    Illustrator is able to edit many pdfs.  However, a pdf is not an Illustrator file and vice versa.

  • Converting PDF to Word (Using Acorbat 8)

    Any suggestions as to the best/most efficient way to process Acrobat files to Microsoft word with the least amount of work in re-formatting?
    We currently have Acrobat 8 (Windows/OS-XP) and would like to know if there are any layered utilities to speed up the process. Line feed/tables and layouts are obvious problems areas.
    Any suggestions anyone can provide is much appreciated.
    Thanks,
    Christine
    [email protected]

    The formatting depends a lot on the tags that are embedded in the PDF. If created with PDF Maker they may be there for reasonable good layout reproduction. If not, you may lose all layout. I assume you have no access to the original DOC files for some reason - this is exactly why you do not delete them.
    Sometimes when the save to DOC will not do the job very well, I have had success converting to HTML (different results with different HTML versions available in the Save As) and opening in WORD. Not the best route, but might be worth a try.
    There are some 3rd party products that many have said work well.

  • Converting PDF to Word Using Automator?

    I'm trying to convert a PFD file into a word processing Word Document. Don't know if this is the right place, but if anyone can tell me how to do it, or direct me a software program, I would appreciate it.
    Thank you

    Can't find an Automator action. Might be there in some way though. I'm not too familiar with Applescript but there might be something there.
    In the meantime, for my personal curiosity, from this page, I downloaded this App to see how it works. There are a couple apps listed on the first page.
    Good luck.

  • Text looks jagged when converting PDF to image using Cocoa on Leopard

    Hello,
    I have a program that composites the pages of a PDF into a single image with each page stacked on top of each the previous one. The program works fine, but the font rendering quality is much lower when run from anything but a Snow Leopard system. In Leopard, the text looks jagged and not antialiased properly. Does anyone know a fix for this? Here is my code.
    NSString* path = [[oPanel filenames] objectAtIndex: 0];
    NSPDFImageRep *pdf = [NSPDFImageRep imageRepWithContentsOfFile: path];
    int pageHeight = 765;
    int pageWidth = 990;
    int pages = [pdf pageCount];
    int height = pageHeight * pages;
    NSImage *compositeImage = [[NSImage alloc] initWithSize:NSMakeSize(pageWidth, height)];
    [compositeImage lockFocus];
    for (int i = 0; i < pages; i++) {
    [pdf setCurrentPage: i];
    NSImage *page = [[NSImage alloc] init];
    [page addRepresentation:pdf];
    NSSize size = [pdf bounds].size;
    int width = round(pageHeight * size.width / size.height);
    [page drawInRect: NSMakeRect(0, height - pageHeight * (i + 1), width, pageHeight)
    fromRect: NSZeroRect
    operation: NSCompositeSourceOver
    fraction: 1.0];
    [page release];
    [compositeImage unlockFocus];
    NSBitmapImageRep *rep = [NSBitmapImageRep imageRepWithData: [compositeImage TIFFRepresentation]];
    NSData *imageData = [rep representationUsingType: NSJPEGFileType properties: nil];
    [imageData writeToFile:@"/Users/devongovett/Desktop/out.jpg" atomically: YES];
    Thanks for any help you might be able to give!
    Devon
    Message was edited by: devongovett
    Message was edited by: devongovett

    devongovett wrote:
    The program works fine, but the font rendering quality is much lower when run from anything but a Snow Leopard system. In Leopard, the text looks jagged and not antialiased properly.
    Without knowing anything about how to draw into a PDF in code: the problem might not be in your code but in Leopard's rendering.
    I bet you are testing just with Apple's own Preview app -- can you test with something else, for example, the Acrobat Reader, on both systems? There is a good chance your image is just fine.

  • Reg: PDF to SWF Conversion

    Hi mate
    How do convert to pdf to swf using  flex application.
    Thanks

    Thanks for guidance Ross,
    As suggested by you, I have used server side technology to run it in the backend from www.swftools.org
    It is installed but swf generated from pdf here doesn't have navigation button and zoom option but it play automatically after some second interval.
    I have refered to all documentation related but with no clue.
    Could you please sort me out how to put navigation button and zoom option button in generated swf?
    Thanks in Advance.

  • Define a path to save my converted pdf word document

    Hello,
    I would like to be able to define a specific place to save the pdf document I have converted from Word. The script I'm writing should normally able me to send to my customer a personalised mail with an attach pdf document. The mail and the pdf are personalised for each customer. I have put the script I wrote below. I will be really greatfull if you could help me ! Also if you see some improovement I can add to this script do not hesitate
    Many thanks in advance.
    Xavier
    --Main Programme
    set startCell to "A1" as string
    set leSujet to "CES EduPack 2013 – Maintenance de votre installation"
    --set leCorps to ("Bonjour " & leSujet)
    display dialog "Enter the Name of the last cell in Excel " default answer "AA25"
    set endCell to text returned of the result
    set myMatrix to excelTxtExtract(startCell, endCell)
    set custInfo to findInfo(myMatrix, 1) --récupération des mots clés
    set partChoix to choose from list custInfo with prompt "Choose part(s) for file name :" with multiple selections allowed
    set numList to posElmList(partChoix, custInfo)
    --display dialog posList as string
    set myFilenameWord to (choose file with prompt "Please select the Word Template doc for the Quotation :")
    set partChoix to choose from list custInfo with prompt "Choose the email address :"
    set emailList to posElmList(partChoix, custInfo)
    --display dialog emailList as string
    set partChoix2 to choose from list custInfo with prompt "Choose Title of the person :"
    set title1 to posElmList(partChoix2, custInfo)
    set partChoix3 to choose from list custInfo with prompt "Choose the Name of hte person :"
    set name1 to posElmList(partChoix3, custInfo)
    set partChoix4 to choose from list custInfo with prompt "Choose the Nbr of User of the Lycée :"
    set seat1 to posElmList(partChoix4, custInfo)
    set partChoix5 to choose from list custInfo with prompt "Choose the licence type:"
    set licenceType1 to posElmList(partChoix5, custInfo)
    set partChoix6 to choose from list custInfo with prompt "Choose the maintenance expire date:"
    set expireMaint1 to posElmList(partChoix6, custInfo)
    repeat with i from 2 to (length of myMatrix)
              set customer to findInfo(myMatrix, i)
              set email to nomFichier(emailList, customer) as string
              set title2 to nomFichier(title1, customer) as string
              set name2 to nomFichier(name1, customer) as string
              set seat2 to nomFichier(seat1, customer) as string
              set licenceType2 to nomFichier(licenceType1, customer) as string
              set expireMaint2 to nomFichier(expireMaint1, customer) as string
              set leCorps to "Bonjour " & title2 & " " & name2 & "," & return & return & "TEXTE"
              set nomDuFichier to nomFichier(numList, customer) as string
      wordTxtModif(myFilenameWord, customer, custInfo, nomDuFichier)
      envoiMail(leSujet, leCorps, email, nomDuFichier)
    end repeat
    --Envoyer Mail
    on envoiMail(leSujet, leCorps, email, nomDuFichier)
              tell application "Mail"
      activate
                        set nouveauMessage to make new outgoing message with properties {subject:leSujet, content:leCorps & return & return, visible:false}
                        tell nouveauMessage
      make new to recipient at end of to recipients with properties {address:email}
                                  tell content of nouveauMessage
                                            make new attachment with properties {file name:("/Users/grantadesign/Documents/" & nomDuFichier & ".pdf")} at after the last paragraph
                                  end tell
      send nouveauMessage
                        end tell
              end tell
    end envoiMail
    --Nom du fichier
    --Retourne le nom du fichier sans l'extension "Lycée F.Xavier"
    on nomFichier(numList, customer)
      activate
              set nomDuFichier to {}
              repeat with i from 1 to (length of numList)
                        set a to item i of numList
                        copy (item a of customer) to the end of nomDuFichier
              end repeat
              return nomDuFichier
    end nomFichier
    --Position d'un élément dans une lste
    on posElmList(partChoix, custInfo)
      activate
              set elmChoix to 0
              set numList to {}
              repeat with i from 1 to (length of custInfo)
                        set elmChoix to elmChoix + 1
                        repeat with j from 1 to (length of partChoix)
                                  if ((item j of partChoix) = (item i of custInfo)) then
                                            copy elmChoix to the end of numList
                                  end if
                        end repeat
              end repeat
              return numList
    end posElmList
    --Modifier un document Word
    --remplacer des mots dans un texte
    on wordTxtModif(myFilenameWord, customer, custInfo, nomDuFichier)
              tell application "Microsoft Word" --
      activate
      open myFilenameWord
                        set findrange to find object of selection -- ???
                        repeat with i from 1 to (length of custInfo)
                                  tell findrange --replacement of the bookmark
      execute find find text (item i of custInfo) replace with (item i of customer) replace replace all
                                  end tell
                        end repeat
      --display dialog nomDuFichier as string
      save as active document file name (nomDuFichier & ".pdf") file format format PDF
      close window 1 saving no
              end tell
    end wordTxtModif
    --Chargement des valeurs Excel dans une liste
    --Ammélioration : trouver startCell et endCell automatiquement
    on excelTxtExtract(startCell, endCell)
              tell application "Microsoft Excel" -- Load values from Excel
      activate
                        set myFilenameExcel to choose file with prompt "Please select an Excel workbook file:"
      open myFilenameExcel
                        set nameworksheet to get name of every worksheet
                        set myWorksheet to choose from list nameworksheet default items (item 1 of nameworksheet) with prompt "Choose a worksheet where the data are in the list:"
      activate object worksheet (result as string)
                        set myMatrix to value of range (startCell & ":" & endCell)
                        return (myMatrix)
              end tell
    end excelTxtExtract
    --Trouver automatiquement les Mots clés à remplacer dans le texte
    --lineChosen est la ligne que l'on veut lire
    on findInfo(myMatrix, lineChosen)
      activate
              set custInfo to {}
              set selectLine to (item lineChosen of myMatrix)
              repeat with i from 1 to (length of selectLine)
                        set custInfo to custInfo & (item i of selectLine)
              end repeat
              return custInfo
    end findInfo

    Hi kathyv30365453,
    You can convert PDF to Word using either  the ExportPDF online service, or Acrobat. I checked your account, and it doesn't look like you've purchased an ExportPDF subscription. If you want to give Acrobat a try, you're welcome to download a 30-day trial from the link I reference above. In Acrobat, you choose File > Save as Other > Microsoft Word > Word Document.
    Best,
    Sara

Maybe you are looking for

  • Getting error while using TRIM method in collections

    Hi Experts, While using TRIM method I am getting below error. Am I doing any mistake here ? DB : Oracle 11g SQL> declare   2   3    type emp_tab is table of employees%rowtype index by binary_integer;   4    l_emp_tab emp_tab;   5   6  begin   7   8  

  • Sound not available. . .

    Hi. Sometimes, in fact, most of the time, when i try to turn up the volume on my mac it comes up with a circle with a line through it as if its not available. I dont hear the pop when you turn it up or down either. I dont have any external audio inte

  • Is it possible to call different queries in a report whn called from a form

    hello all I want to know if it is possible to call different report queries when called from oracle 9i form . i tried to use he SET_REPORT_OBJECT_PROPERTY(REPORT_QUERY = 'q_diff' ) option and actualy called the report name but it dint seem to work !!

  • Some MP3 songs Invisible to iTunes - Repeatable Problem!

    This may sound familiar to avid readers of this forum, but I haven't gotten any of the previously offered solutions to work for me. I have spent countless hours over the past two years ripping/digitizing my embarasingly-huge CD and LP collections to

  • Desktop software v5 does not detect BB 8330, tried everything...

    Hi! I an absolutely new to the forum and seeking some help to troubleshoot my Desktop to BB connection. I've had it working on my Desktop (XP Pro 2002, SP2) with DM 5.0 + BB (8330) w version 4.5.0.160 (platform 3.4.0.41) A few days ago, out of the bl