PDF Portfolio SDK setup - Navigator project wizard in Flex Builder 4.6 does not show

Hello, Experts
I am trying to build PDF Custom Navigator using Adobe PDF Portfolio SDK; however, for some reason, when performing step 3 of installation, Navigator project wizard in Flex Builder  (  4.6 ) would not show;
The plugins have been extracted to:
C:\Program Files\Adobe\Adobe Flash Builder 4.6\eclipse\plugins
The NavigatorSupport folder has been extracted to:
C:\Program Files\Adobe\Adobe Flash Builder 4.6\eclipse and ( just in case ) to
C:\Program Files\Adobe\Adobe Flash Builder 4.6\
any advice would be greatly appreciated
Best Regards,
-Alex

as per Joel's recommendation, used 4.5 instead - that worked just fine

Similar Messages

  • Adobe Illustrator CS5 does not show PDF thumbnails when browsing

    When I am browsing through PDF files to open one of them in Adobe Illustrator CS5 it does not show the thumbnail.  When I am browsing in Adobe Acrobat it does show the thumbnails.  If I have Adobe Acrobat open and am browsing through files and the thumbnails are showing then if I open Adobe Illustrator and browse for a file the thumbnail does show up. 
    How can I get Illustrator to always show the PDF thumbnails.  I have to frequently browse through thousands of PDF files and it is imperative that I can see the thumbnail for these PDF files.  I primarily use Illustrator to edit PDF files.
    The computer is Windows 7 Enterprise 64 bit edition.  Thumbnails barely work when browsing files through Explorer.  Some thumbnails will show, but not very many of them and it is extremely slow to load the thumbnails that will display.

    Bob,
    So I am assuming you are talking about viewing the files using this method first:
    To use the 32-bit version of Windows Explorer, follow these steps:
    Click Start, click Run, type the following in the Open box, and then click OK:
    Drive_Letter:\windows\syswow64\explorer.exe /separate
    Note The placeholder Drive_Letter represents the drive where the x64-based version of Windows is installed.
    Please let me know if I am missing what you are saying here.

  • Newest Adobe Reader not working with 8.1 IOS...Adobe icon does not show when pdf docs are saved...also printing pdf documents take forever.  I uninstallled and reinstalled...issues continue

    Latest AdobeReader not working properly with 8.1 IOS...Adobe icon does not show on saved PDF's and printing from PDFs takes forever. I uninstalled and reinstalled latest Reader

    zoer1,
    Adobe icon does not show on saved PDF's
    Would you provide more details about the problem?  A screenshot would be helpful.
    The following FAQ document describes the steps to add a screenshot to your forum message.
    How to add a screenshot to a forum message from iPad/iPhone
    Regarding printing PDF documents...It depends on the PDF document that you are trying to print.  In general, it will take longer to print more complex and larger PDF documents.
    If you are willing to share your PDF document (that takes forever to print) with us at [email protected], we can test it with the same version (11.6.3) of Adobe Reader on different iOS versions (iOS 7.x vs. iOS 8.x).  Please include the link to this forum (https://forums.adobe.com/thread/1616231) in your email message for reference.
    Actual printing is handled by iOS (not by Adobe Reader) via AirPrint over Wi-Fi connection.  We've heard from other users about iOS 8 Wi-Fi connectivity problems.
    You may also want to search for similar issues on Apple Support Communities.

  • Tab navigation does not show at all in FP 10 it shows in FP9

    Hi,
    I have module that is loaded at runtime,
    it has simple tab navigation with 3 children,
    in FlashPlaer 9 Debug, tab navigation shows fine, even
    thought for some reason it looks like linkbar :)
    also numericStepper looks like inputBox and ComboBox has no
    arrow, (they all look fine in FB 3.2)
    in Flash player 10 tab navigation does not show at all, is
    there any obvious thing that I am missing ?
    I am guessing something terribly wrong with flex styles, but
    I am not overriding any styles,
    my environment :
    vindows Vista 64 bit (although I use jvm 32)
    project is build with latest flex sdk :flex_sdk_3.3.0.4589
    P.S: I cant attach image here, so I will record video
    tomorrow, if that will help.
    thanks in advance
    Levan

    bump :)
    anybody , please please :)

  • PDF does not show up

    Hi all,
    The following is my code snippet in JSP for a project which i used to generate a PDF file. But the PDF does not show up . The Adobe loads and i get a pop-up saying
    'Acrobat could not open 'Example[1].pdf' because it is either not a supported file type or because the file has been corrupted.'
    This is the code snippet i used:
    <%@ page import="java.io.*" %>
    <%
    String s = new String("Hai this is PDF Sample");
    byte file[] = s.getBytes();
    try
    BufferedInputStream inputStream = new BufferedInputStream(new ByteArrayInputStream(file));
    BufferedOutputStream outputStream = new BufferedOutputStream(response.getOutputStream());
    response.setHeader ("Content-Disposition", "attachment; filename=Example.pdf");
    response.setContentType("application/pdf ; charset=iso-8859-1");
    int bytes = 0;
    byte buffer[] = new byte[1024];
    while((bytes = inputStream.read(buffer)) != -1)
    outputStream.write(buffer,0,bytes);
    inputStream.close();
    outputStream.flush();
    outputStream.close();
    }catch
    (Exception e){}
    %>
    Can anyone please help me out.
    Thanks in Advance.
    RDP.

    FOP is an Apache project that lets you generate PDFs using XML and XSL.
    Here's the servlet:
    package common.servlets;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.PrintWriter;
    import java.io.StringReader;
    import java.net.URLDecoder;
    import java.util.Map;
    import javax.servlet.ServletException;
    import javax.servlet.http.HttpServlet;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.xml.transform.Result;
    import javax.xml.transform.Source;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.sax.SAXResult;
    import javax.xml.transform.stream.StreamSource;
    import org.apache.fop.apps.Driver;
    * A servlet that takes XML and XSL streams and sends back a PDF file,
    * using Xalan and FOP.
    public class PDFServlet extends HttpServlet
        /** Response content type */
        public static final String DEFAULT_RESPONSE_CONTENT = "application/pdf";
        /** Parameter/attribute name for XML input */
        public static final String DEFAULT_XML_NAME = "print.xml";
        /** Parameter/attribute name for XSL input */
        public static final String DEFAULT_XSL_NAME = "print.xsl";
        /** Default character encoding */
        public static final String DEFAULT_CHAR_ENCODING = "UTF-8";
        /** Transformation factory */
        private TransformerFactory transformerFactory;
         * Initialize the servlet
         * @throws ServletException if the initialization fails
        public void init() throws ServletException
            try
                this.transformerFactory = TransformerFactory.newInstance();
            catch (Exception e)
                throw new ServletException(e);
         *  Process a GET request
         * @param servlet request
         * @param servlet response
         * @throws ServletException if the servlet fails
         * @throws IOException if IO fails
        public void doGet(HttpServletRequest request,
                                     HttpServletResponse response)
            throws ServletException, IOException
            this.doPost(request, response);
         * Process a POST request by looking up the JSP using the source + action
         * parameters
         * @param servlet request
         * @param servlet response
         * @throws ServletException if the servlet fails
         * @throws IOException if IO fails
        public void doPost(HttpServletRequest request,
                           HttpServletResponse response)
            throws ServletException, IOException
            try
                Driver driver = new Driver();
                driver.setRenderer(Driver.RENDER_PDF);
                ByteArrayOutputStream baos  = new ByteArrayOutputStream();
                driver.setOutputStream(baos);
                Map parameters   = request.getParameterMap();
                String xmlString = null;
                if (parameters.containsKey(DEFAULT_XML_NAME))
                    xmlString = request.getParameter(DEFAULT_XML_NAME);
                else
                    xmlString = (String)request.getAttribute(DEFAULT_XML_NAME);
                String xslString = null;
                if (parameters.containsKey(DEFAULT_XSL_NAME))
                    xslString = request.getParameter(DEFAULT_XSL_NAME);
                else
                    xslString = (String)request.getAttribute(DEFAULT_XSL_NAME);
                if ((xmlString != null) && (xslString != null))
                    xmlString = URLDecoder.decode(xmlString, DEFAULT_CHAR_ENCODING);
                    xslString = URLDecoder.decode(xslString, DEFAULT_CHAR_ENCODING);
                    Source xml = new StreamSource(new StringReader(xmlString));
                    Source xsl = new StreamSource(new StringReader(xslString));
                    Result fop = new SAXResult(driver.getContentHandler()); // Intermediate result
                    Transformer transformer = this.transformerFactory.newTransformer(xsl);
                    transformer.transform(xml, fop);
                    response.setContentType(DEFAULT_RESPONSE_CONTENT);
                    response.setContentLength(baos.size());
                    response.getOutputStream().write(baos.toByteArray());
                    response.getOutputStream().flush();
                else
                    PrintWriter out = response.getWriter();
                    if (xmlString == null)
                        out.println("Missing XML");
                    if (xslString == null)
                        out.println("Missing XSL");
            catch (TransformerException e)
                e.printStackTrace(System.err);
                throw new ServletException(e);

  • When printing an AutoCAD-exported PDF file, the paper version has lines that screen does not show

    Hello,
    We were contacted by our customer, a landscape architectural company that uses our product, M-Color, (http://m-color.com) to plot AutoCAD drawings with required preferences and effects.
    However, they provided us with a sample PDF files, that contain examples of scanned drawings, that have some "ghost lines" at the drawings that the screen does not show.
    We tracked the issue and it appears to be an issue with Adobe Reader pringing. We tried many versions from 8.0 version onwards to the latest versions available in public, all represent the same issue.
    This may be an issue of the original drawing having some line that was not marked ending at some point.
    The zip file within the link below has three PDF files, two from the company that brought this issue to our awareness and the one with name "scanstation" is printed by me, and then scanned with markings to explain the issue.
    Any ideas what would be the best solution to solve this issue?
    https://skydrive.live.com/redir?resid=FF1904428CF64324!1445&authkey=!AMwkjv9QMg-Gawg

    Edit>Preferences>Accessibility... Replace Document Colors (use custom colors - black on white)
    That usually fixes ghosting...

  • I really need someone to help me. I have been trying to figure out how to select a PDF document to convert to a Word doc. When I go to select a PDF file, all that shows up is the WORD docs. does not show ANY of my PDF files... Please help me figure out wh

    I really need someone to help me. I have been trying to figure out how to select a PDF document to convert to a Word doc. When I go to select a PDF file, all that shows up is the WORD docs. does not show ANY of my PDF files... Please help me figure out what is going on? We have it set on auto renewal so I know its not that we haven't renewed this subscription, because we pay automatically.

    Hi olivias,
    It sounds like there may be some confusion on your system about what application should be associated with PDF files. You can reset filename associations by following the steps in these articles (depending on your operating system):
    How to change the default application for a file type | Macworld
    http://windows.microsoft.com/en-us/windows/change-default-programs#1TC=windows-7
    Please let us know if you have additional questions.
    Best,
    Sara

  • I purchased an hp external cd drive, how can i boot from it? setup does not show it being connected

    When i connect the external drive it is being connect to a usb port.  When i go into the setup of the laptop it does not show an external drive being connected to the usb port.  My cd drive that came with the laptop does work, i tried it in my laptop, but on my daughters machine the cd drive is not being shown on the computer or in Device manager.  I upgrade out laptops from windows vista 32 to windows 7. The drive was working and one day my daughter went to go burn a cd and thats when we found out it is not showing on the computer. Her p/n is FE653UA#ABA - dv6910US.  I tried everything to get the drive to show up on the computer but had no luck, that is why i purchased an external drive. The drive i purchased is an HP 8x external dlim muliformat dvd/cd writer.
    I now need to figure out how I can boot from this external drive, can  anyone help me?

    Hi,
    Have you read the Windows7 Upgrade Guide for dv6000/dv9000 models so generously written and provided to the community by Expert member Daniel_Potyrala?
    Have you checked in the Device Manager to asee if all devices have drivers loaded?
    Have you tried the Microsoft Fixit for DVD/CD drives?
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Premiere 2014 queue, project does not show up in media encoder

    When I queue a sequence in premiere 2014 and media encoder 2014 launches the sequence does not show up in the queue. I can do the same process in cc and it works.

    In AME, please try disabling the option on the General tab in Preferences named "Import Sequences Natively." Then close and relaunch AME and double-check prefs to make sure the option remained disabled (we've had a few reports of cases where the setting reverted to Enabled). Now try queuing a job from PPro.
    Also, please try dragging the sequence from Premiere's Project panel to AME's Queue, or to a preset in the Preset Browser.
    What export format is selected? If you switch to another format, does the job get queued?

  • Exporting pdf does NOT show my headers and footers

    I export number files to my administrators. I've noticed when I print my file directly from my computer in iWork/Numbers it prints and show the footer and header. However, when I send a bcc to myself when I attach the pdf file to my administrator, it does not show or print my headers and footers. Any ideas?

    Re-reading the original question, it does appear that Gogoette is exporting to PDF then attaching the file to an email versus using the "Send via email as PDf" operation. In that case, setting it to Page View for the export will solve the problem. I had originally thought "Send via email as PDF" was being used. What I noticed is that it doesn't give you the choice of page versus sheet view but if you first go through the motions of exporting, it sets it up. In prior threads about exporting to PDF, we have all recommended using Print, not export, and choosing Print to PDF (rather than to a printer) as the best way to create a PDF. It gives more flexibility, such as allowing you to choose which pages to "print to PDF".

  • Background does not show up when creating a PDF in InDesign

    I have placed the same image in Illustrator and the PDF does show up the image.

    Ooh. Ok. Thank you! I'm using InDesign CS5.5, Acrobat 10.1.6. Mac OSX (10.6.8).
    Layer 1: background (TIFF): does not show up
    Layer 2: Type and logos (EPS): do show up in my pdf.
    -When I select Overprint Preview in Indesign the background is missing.
    -I have created pdfs in different presets (smallest, high quality, etc) and still background does not show up.
    -When I place ONLY the background on a new InDesign document, it does show up in the PDF.
    -I have created a pdf with the background in Illustrator and it does show in my PDF.
    Thanks!

  • HT4075 when i drag the pdf file over other (in previewer) to merge it does not show green circle with plus one. what to do?

    when i drag the pdf file over other (in previewer) to merge it does not show green circle with plus one. what to do?

    Hello djensen1x,
    Could you please let me know what version of Acrobat are you using.
    Also, tell me your workflow of combining those PDF files?
    Please share the screenshot of the error message that you get.
    Hope to get your response.
    Regards,
    Anubha

  • Database Adapter Wizard does not show accessible table

    HI guys,
    in the wizard I am unable to see the tables which I need to use for database adapter.
    But I do have access to those tables, and able to select from them in SQL worksheet from with in Jdev.
    I dont own the tables, but my user id have readable access to those tables.
    Any help is appreciated.
    P.S. If I didnt explain it properly, plz let me know. It really creates lot of access issues if I can only create DB adapter on My owned tables.
    :)

    Hi there,
    please see the answer to your duplicate post on the BPEL forum:
    DB Adapter does not show selectable tables
    In general BPEL forum gets a lot more traffic but I will try to address questions on both equally.
    Thanks
    Steve

  • Why did ps touch does not show saved project and my old project disappear?

    Why did ps touch (ipad 4) does not show saved project and my old project disappear?

    OldGhias,
    Have you found a solution yet? I don’t know if I will be of any help but I was curious and no one else has chimed in yet.
    I don’t quite understand all of your statement.
    To clarify, you were making SimpleSave backups from Win95 and cannot see them all on the Win7 laptop?
    Or
    You were copying files over (SimpleSave utility not used) and you cannot see those files on Win7 but you can on the Win95 machine?
    Do you have another Win7 machine you could connect the external to, to see if the files are still not showing (one that is not locked for work)?
    On the drive that shows full, can you see it in Disk Management showing the correct size of the drive and also another CD drive? Not your real CD/DVD drive, it’s actually a CD emulator that is attached to the HDD for encrypting the backups and all SimpleSave’s have them.
    Lastly, did you reformat the SimpleSave drive to Fat32 first?
    My understanding is that USB support was quite limited on Win95 machines. Since Win95 is Fat32 and the SimpleSave drive is by default NTFS, I would think it would not work.

  • Firefox does not show url in navigation toolbar while loading webpage (in new tab)

    Firefox 3.6 when opening a link in new tab the url does not show in navigation toolbar while loading the web page. All ypu see is "Type a Web Adress" until the page load.
    Before with my older version the URL was visible in navigation toolbar even before page started loading. How can I get this back?

    A couple of possible causes. First check for an incompatible add-on, for details of how to do that see the [[troubleshooting extensions and themes]] article.
    Another possible cause is a problem with the file that stores bookmarks. One of the symptoms is the URL not being updated in the Location Bar as you browse. For details on this see [http://kb.mozillazine.org/Locked_or_damaged_places.sqlite locked or damaged places.sqlite].

Maybe you are looking for