Create Custom PDF using Flex

I posted this in an Acrobat forum, but I was wondering if
Flex would work for this. Anyone have any thoughts? Thanks!!
Hopefully someone can help me! I am a designer, not a
programmer so I may be in over my head. My client has an archive of
individual technical data sheet saved as PDFs. They would like a
user to be able to go to a web page, select which products they use
and have that automatically combined into one PDF file. Any ideas
on where to start? Thanks!

Hi there there's a library named AlivePDF that allows you to
create PDFs on the fly. But if you're not a developer, and don't
want to learn about Flex and AS3, then you'll probably couldn't be
able to accomplish this.

Similar Messages

  • Create a pdf in flex

    Hi, i wanna create a pdf or a doc in flex builder for a website, i was watching a tutorial on XPAAJ but they dont have it anymore.
    i also tried fpdf where u create a pdf using php, but for some reason when i pass the data it doesnt create it.
    Any ideas?
    Thanks.

    pls check out this link
    http://sunilrana.wordpress.com/2010/01/01/to-create-pdf-in-flex
    also download alivepdf from
    code.google.com/p/alivepdf/downloads/list
    Thanks
    Happy New Year

  • How to create multiple pages using flex application.

    Hi all,
    i am doing flex application which contains 5 different
    pages,
    to do this i have used viewstack component to navigate
    between the pages.
    this is working fine if all my pages are of same size. each
    page as different background image.
    but i have to create pages with different sizes.
    my first and second page are small and remaining pages are
    big.
    when i navigate to 3rd or 4th page, it is showing scrollbar
    inside swf.
    but i want scrollbar for browser window not inside my swf
    anyone please guide me how to create pages in flex
    application.
    i have one more doubt, if my page contains some html links ,
    how to open those links,
    is it posible to open the link in new window.
    please help me , i have no idea how to create web
    applications using flex
    Thanks in advance
    regards
    avanthika

    Hi inlineblue,
    Thanks for your reply,
    you asked about sample code,
    following is my sample code.
    In my Application mxml file, i am loading all custom
    components for each page.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns="*"
    horizontalAlign="center" verticalAlign="top"
    styleName="plain"
    backgroundColor="#FFFFFF"
    creationComplete="init()" width="780" height="594" >
    <mx:Script>
    <![CDATA[
    //navigating to next page
    public function showNextStep(newIndx:int):void{
    vs.selectedIndex=newIndx;
    //navigating to previous page
    public function showPreviousStep(newIndx):void{
    vs.selectedIndex=newIndx
    ]]>
    </mx:Script>
    <mx:ViewStack id="vs" paddingLeft="0" height="100%"
    width="100%" >
    <mx:Canvas id="s1" label="step1"
    backgroundImage="assets/Step1.jpg" >
    <!-- Step1.jpg image size is width=778, height=560 -->
    <mx:HBox paddingLeft="8" width="780" height="548">
    </mx:HBox>
    <mx:Button alpha="0" buttonMode="true" x="697" y="18"
    click="showNextStep(1)" width="72" height="24" />
    <mx:Button alpha="0" buttonMode="true" x="697" y="508"
    width="72" click="showNextStep(1)" height="24"/>
    </mx:Canvas>
    <step2 id="s2" label="Step2" hideEffect="{blurImage}"
    showEffect="{unblurImage}" />
    <step3 id="s3" label="Step3" hideEffect="{blurImage}"
    showEffect="{unblurImage}" />
    <step4 id="s4" label="Step4" hideEffect="{blurImage}"
    showEffect="{unblurImage}" />
    <step5 id="s5" label="Step5" hideEffect="{blurImage}"
    showEffect="{unblurImage}" />
    </mx:ViewStack>
    </mx:Application>
    // following is the page2 (step2) component code
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()"
    backgroundImage="assets/Step2.jpg" width="778" height="600"
    >
    <!-- Step2.jpg image size is width=778, height=600 -->
    <mx:HBox horizontalAlign="left" paddingLeft="5"
    height="511" width="768">
    </mx:HBox>
    <mx:Button alpha="0" buttonMode="true" x="648" y="6"
    click="this.parentApplication.showPreviousStep(0)" width="61"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="711" y="6"
    click="this.parentApplication.showNextStep(2)" width="53"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="651" y="529"
    width="58" click="this.parentApplication.showPreviousStep(0)"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="712" y="528"
    width="54" click="this.parentApplication.showNextStep(2)"
    height="24"/>
    </mx:Canvas>
    // following is the code for page3 (step3) component
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()"
    backgroundImage="assets/Step3.jpg" >
    <!-- Step3.jpg image size is width=778, height=660 -->
    <mx:VBox width="763" height="668">
    </mx:VBox>
    <mx:Button alpha="0" buttonMode="true" x="644" y="10"
    click="this.parentApplication.showPreviousStep(1)" width="61"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="708" y="10"
    click="this.parentApplication.showNextStep(3)" width="53"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" label="Back"
    x="625" y="590" width="58"
    click="this.parentApplication.showPreviousStep(1)" height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="694" y="590"
    width="68" click="this.parentApplication.showNextStep(3)"
    height="24"/>
    </mx:Canvas>
    // following is code for page4 (step 4),
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()"
    backgroundImage="assets/Step4.jpg" >
    <!-- Step4.jpg image size is width=778, height=773 -->
    <mx:VBox width="762" height="792">
    <!-- User interface -->
    </mx:VBox>
    <mx:Button alpha="0" buttonMode="true" x="644" y="15"
    click="this.parentApplication.showPreviousStep(2)" width="61"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="708" y="16"
    click="this.parentApplication.showNextStep(4)" width="53"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="644" y="710"
    width="58" click="this.parentApplication.showPreviousStep(2)"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="703" y="710"
    width="54" click="this.parentApplication.showNextStep(4)"
    height="24"/>
    </mx:Canvas>
    // Following is code for Page 5 (step 5 ) component.
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Canvas xmlns:mx="
    http://www.adobe.com/2006/mxml"
    creationComplete="init()"
    backgroundImage="assets/Step5.jpg" width="778"
    height="600">
    <!-- Step5.jpg image size is width=778, height=539-->
    <mx:VBox paddingLeft="170" paddingTop="170" width="778"
    height="522">
    </mx:VBox>
    <mx:Button alpha="0" buttonMode="true" x="654" y="41"
    click="this.parentApplication.showPreviousStep(3)" width="72"
    height="24"/>
    <mx:Button alpha="0" buttonMode="true" x="654" y="486"
    width="72" click="this.parentApplication.showPreviousStep(3)"
    height="24"/>
    </mx:Canvas>
    I am getting vertical scrollbar for page3 and page4,
    please tell me how to avoid this, Is their any other method
    to do this.
    Following is the link for my above code
    http://www.emantras.com/flexdemo/sample.html
    in this application one more problem is also their,
    background image loads very slow, before it loads all the flex
    components will load. So when you open this please wait till
    background image loaded, to move to next and back pages.
    Thanks for your time and consideration.
    Regards
    Avanthika

  • How do I create  a PDF using Acrobat 7.0 in Windows 8 from a Visio drawing on a 64-bit system

    I used to be able to create a PDF using Acrobat 7.0 from a Visio drawing in XP. Now I'm running a 64-bit system, no Adobe printer can be installed, and it is unsupported.  Help?

    On a 32-bit system, there is a workaround. I do not think it is possible to get AA7 to work on a 64-bit system (no one has reported success and only 1 has suggested success with AA8). You may be able to print to a PS file and then open that in Distiller. I suspect that is the only way and you will have to find a decent PS printer driver to do it. I suspect the printer driver (and associated AcroTray) will not work in a 64-bit Win8 -- Acrobat and Distiller may.

  • Problem with creating customer account using TCA Java API

    Hi,
    I am trying to create customer account using TCA java API. i am getting exception saying PL/SQL numeric error: character to number conversion. but this error raises when calling API method
    HzCustAccountV2Pub.createCustAccount.
    can any body help me in solving this issue, any clue why this exception raises. i have tested even the code given in TCA API user guide. that code also gets same error.

    package client;
    import java.math.BigDecimal;
    import java.sql.Timestamp;
    import java.sql.DriverManager;
    import java.sql.SQLException;
    import oracle.jdbc.driver.OracleConnection;
    import oracle.jdbc.driver.OracleCallableStatement;
    import oracle.jdbc.driver.OracleTypes;
    import oracle.apps.ar.hz.v2api.HzCustAccountV2Pub;
    import oracle.apps.ar.hz.v2api.HzPartyV2Pub;
    import oracle.apps.ar.hz.v2api.HzCustomerProfileV2Pub;
    class CreateCustAccount {
         public static void main(String[] args) throws Exception {
         HzCustAccountV2Pub.CustAccountRec p_cust_account_rec = new HzCustAccountV2Pub.CustAccountRec();
         HzPartyV2Pub.PersonRec p_person_rec = new HzPartyV2Pub.PersonRec();
         HzCustomerProfileV2Pub.CustomerProfileRec p_customer_profile_rec = new      HzCustomerProfileV2Pub.CustomerProfileRec();
         BigDecimal[] x_cust_account_id = new BigDecimal[1];
         String[] x_account_number = new String[1];
         BigDecimal[] x_party_id = new BigDecimal[1];
         String[] x_party_number = new String[1];
         BigDecimal[] x_profile_id = new BigDecimal[1];
         String[] x_return_status = new String[1];
         BigDecimal[] x_msg_count = new BigDecimal[1];
         String[] x_msg_data = new String[1];
         try
         Class.forName ("oracle.jdbc.driver.OracleDriver");
         OracleConnection conn = (OracleConnection) DriverManager.getConnection ("jdbc:oracle:thin:@ebiztst.trianz.int:1526:PATCH","apps","apps");
         HzCustAccountV2Pub custaccountV2Pub = new HzCustAccountV2Pub();
         p_cust_account_rec.account_name = "John Ac";
         p_person_rec.person_first_name = "John";
         p_person_rec.person_last_name = "Smith";
         p_cust_account_rec.created_by_module = "TCA_EXAMPLE";
         HzCustAccountV2Pub.createCustAccount(
         conn
         , "T"
         , p_cust_account_rec
         , p_person_rec
         , p_customer_profile_rec
         , "F"
         , x_cust_account_id
         , x_account_number
         , x_party_id
         , x_party_number
         , x_profile_id
         , x_return_status
         , x_msg_count
         , x_msg_data
         System.out.println( "x_return_status = " + x_return_status[0] );
         System.out.println( "x_msg_count = " + x_msg_count[0] );
         System.out.println( "x_msg_data = " + x_msg_data[0]);
         if (x_msg_count[0].intValue() > 1) {
              OracleCallableStatement ocs = null;
              for (int i=0; i<x_msg_count[0].intValue(); i++) {
              ocs = (OracleCallableStatement)conn.prepareCall(
              "begin ? := fnd_msg_pub.get( p_encoded => ’F’ ); end;");
              ocs.registerOutParameter(1, OracleTypes.VARCHAR);
              ocs.execute();
              System.out.println((i + 1) + ". " + ocs.getString(1));
              conn.close();
              } catch (ClassNotFoundException e) {
              System.out.println("Driver Not Found: " + e);
              } catch (SQLException e) {
              System.out.println("SQL Error." + e);
    }

  • URGENT:Creating customer master using Sd_Customer_Maintain_all

    hello all ,
    I am creating customer master using SD_Customer_Maintain_All.I will be thankful if somebody Can  tell me how to pass data to this function module.Better if somebody can provide code.
    Thanks.
    Sandeep.

    hello all ,
    I am creating customer master using SD_Customer_Maintain_All.I will be thankful if somebody Can  tell me how to pass data to this function module.Better if somebody can provide code.
    Thanks.
    Sandeep.

  • Can't create a PDF using "print" from Office 2010 w/ Acrobat 9.5.1 installed

    I've been working on a lengthy Word document for the past three days, upgrading most of the inserted images and straightening out the formatting. Converting the entire 180-odd page document every time I made a few updates is a bit time-consuming. I also noticed that when I converted the entire document as a whole, the quality of some (not all) of the images in the document was significantly degraded. So I'd been using the Adobe Acrobat printer selection in Word to create single page pdf files, and then used the documents tab in Acrobat to insert the new page and delete the undesirable page.
    This was working fine for two days. Then I was attempting to print a page, and didn't notice the "Creating a PDF Document" window, nor did I see the requested filename in the target folder. I attempted to print the page a second time, but nothing happened. After closing several open pages, I found the "Creating a PDF Document" pop-up. But the progress bar was stuck at about 20% and never moved. Eventually I closed the pop-up and attempted to print again. The pop-up reappeared but stuck at 20%. Rebooted and got the same. I rebooted again and went into Program and Features and ran repair on both Office 2010 and Acrobat. No change.
    I'm operating Win 7 (64 bit) w/ SP1 on an AMD E-350 1.60Ghz processor w/ 8GB of ram. I'm using Office Professional Plus 2010 build 14.0.6112.5000 (32 bit). I've included the System Report below. The only trick I have left is to uninstall and reinstall, but hoping for a more specific solution. Any help would be appreciated.
    Available Physical Memory: 4194303 KB
    Available Virtual Memory: 1511340 KB
    BIOS Version: ALASKA - 1072009
    Default Browser: C:\Program Files (x86)\Internet Explorer\iexplore.exe
    Version: 9.00.8112.16421 (WIN7_IE9_RTM.110308-0330)
    Creation Date: 2011/06/04
    Creation Time: 17:17:11
    Default Mail: Microsoft Outlook
    mapi32.dll
    Version: 1.0.2536.0 (win7_rtm.090713-1255)
    Graphics Card: AMD Radeon HD 6300 series Graphics
    Version: 8.17.10.1077
    Check: Not Supported
    Installed Acrobat: C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\Acrobat.exe
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:37
    Installed Acrobat: C:\Program Files (x86)\Adobe\Reader 10.0\Reader\AcroRd32.exe
    Version: 10.1.3.23
    Creation Date: 2012/04/04
    Creation Time: 01:53:54
    Locale: English (United States)
    Monitor:
    Name: AMD Radeon HD 6300 series Graphics
    Resolution: 1920 x 1080 x 60
    Bits per pixel: 32
    OS Manufacturer: Microsoft Corporation
    OS Name: Microsoft Windows Vista
    OS Version: 6.1.7601 Service Pack 1
    Page File Space: 4194303 KB
    Processor: AMD64 Family 20 Model 1 Stepping 0 AuthenticAMD ~1600 Mhz
    System Name: GARYSTOASTER-PC
    Temporary Directory: C:\Users\GARYST~1\AppData\Local\Temp\
    Time Zone: Eastern Standard Time
    Total Physical Memory: 4194303 KB
    Total Virtual Memory: 2097024 KB
    User Name: Garys Toaster
    Windows Directory: C:\Windows
    Installed plug-ins:
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\Accessibility.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:48
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\AcroForm.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:47
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\Annots.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:52
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\DigSig.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:47
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\EScript.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:51
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\IA32.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:51
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\ImageConversion.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:46
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\MakeAccessible.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:50
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\map2pdf\geo.api
    Version: 5.7.0.01
    Creation Date: 2011/06/08
    Creation Time: 12:35:30
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\map2pdf\geomark.api
    Version: 5.7.0.01
    Creation Date: 2011/06/08
    Creation Time: 12:35:30
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\map2pdf\jeo.api
    Version: 6.0.0.18
    Creation Date: 2011/06/08
    Creation Time: 12:35:30
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\PDDom.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:50
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\PPKLite.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:50
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\Preflight.api
    Version: 9.2.0 (065)
    Creation Date: 2012/04/19
    Creation Time: 22:26:45
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\reflow.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:49
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\SaveAsRTF.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:49
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\Search.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:57
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\TouchUp.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:49
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\Updater.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:48
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\weblink.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:48
    C:\Program Files (x86)\Adobe\Acrobat 9.0\Acrobat\plug_ins\WebPDF.api
    Version: 9.5.1.283
    Creation Date: 2012/04/19
    Creation Time: 22:26:45

    As far as the images are concerned, that may be a result of your choice of job settings. You may want to use the Press or Print option if the image quality is important. I assume you are talking about bit images in this case.
    As to the hangup, have you checked to see if AcroTray is active on your system? It may not be running as needed. In the meantime, try checking print to file and then opening that file in Distiller to complete the conversion to PDF.
    Before you ever try a reinstall, you need to do a repair first to see if that resolves the problem. There are a lot of unknowns about your exact process for the printing and your job settings that may be part of the problem. The rest of your system setup is useful in some cases, but did not help me see your problem.

  • Can Acrobat create a PDF using the same page numbers as FrameMaker?

    I'm using FrameMaker 10 on Windows 7 and Acrobat Pro 9. I know I can set the page numbers after I create the PDF (Advanced > Document Processing > Page Numbering), but is there any way to tell Acrobat (or Distiller) to do this automatically based on the page format set up in FrameMaker? Right now, the cover and inside cover have no page numbers, but I could assign them numbers and hide them. The TOC is lower case Roman numerals, and the rest of the book uses Arabic page numbering. Someone has asked whether we can have the page numbers be reflected in the page field so that when you enter page 10, it takes you to page 10 of the book (where 10 appears in the corner of the page), not the tenth page of the PDF, which might land you in the TOC.
    We produce PDFs as part of an automated system, which is why I can't mess with it after it's been produced.

    There is a FrameMaker plug-in that can do this:
    http://www.frameexpert.com/plugins/pagelabeler/index.htm
    Or, you might consider using PDFMark to add page labels.

  • Creating new PDFs using LaTeX

    Hi everyone,
    I hope I am in the right forum now and also apologies if this question has already been posted but it kills me right now: I am using a LaTeX converter to create a PDF file. Whenever I create a PDF AND I did not close the previous file in the Adobe Acrobat before, it gives me an error saying that he can't write on the previous file.
    So the question is: How can I deactivate the write-protection in the Acrobat so that he simply creates a new file on top of the old one?
    thanks in advance!

    Sounds like you need to ask in a LaTeX forum for your release of LaTeX. MikTeX has it's own conversion utilities to PDF which is the type of thing I assume you are using. Such a question has nothing to do with Acrobat, unless I missed something in your post.

  • How to Create Tag Cloud using Flex

    Hi
    I am trying to create Tag cloud using Adobe Flex. Can you
    please give me a hint of how to proceed.
    Any hint will be a help.
    Thanks,
    Dev

    Hi
    I am trying to create Tag cloud using Adobe Flex. Can you
    please give me a hint of how to proceed.
    Any hint will be a help.
    Thanks,
    Dev

  • How to create customer By using SD_CUSTOMER_MAINTAIN_ALL function module

    Hello all,
    I want to create customer By passing( T_CUST_HIER_IP - customer no, account group, company code, distribution channel, division, name1, search team, city, country).
    using BAPI or function module I am using SD_CUSTOMER_MAINTAIN_ALL
    LOOP AT T_CUST_HIER_IP INTO W_CUST_HIER_IP.
        MOVE-CORRESPONDING W_CUST_HIER_IP TO W_KNA1.
        MOVE-CORRESPONDING W_CUST_HIER_IP TO W_KNB1.
        MOVE-CORRESPONDING W_CUST_HIER_IP TO W_KNVV.
      CALL FUNCTION 'SD_CUSTOMER_MAINTAIN_ALL'
       EXPORTING
         I_KNA1                              = W_KNA1
         I_KNB1                              = W_KNB1
         I_KNVV                              = W_KNVV.
    ENDLOOP
    But it gives error SALES_AREA_NOT_VALID.

    Hi,
       Check in TVKO and TVTA  master tables, for Sales Area (Sales OrganizationDistribution ChannelDivision) is vaild or not..
       If no entreis availble , it will raise the exception SALES_AREA_NOT_VALID.
    -somesh
    reward points if it is helpful

  • Creating html table using FLEX

    Hi
    I am new to flex,can any one help me how to create a simple
    html table using flex.
    regards
    pr@veen

    "callpraveenin1973" <[email protected]>
    wrote in message
    news:goj5qq$hgm$[email protected]..
    > Hi
    > I am new to flex,can any one help me how to create a
    simple html table
    > using flex.
    What would you use it for?

  • Need Help using Adobe PDF Converter to programmatically create custom PDF Files

    We are upgrading from Adobe 5 to Adobe 9.  In Adobe 5, we set a few parameters in the __pdf.ini file to create a document with a specific Page Size.  For Example:
    [Acrobat PDFWriter]
    PDFFileName=
    bDocInfo=0
    Orient=1
    bExecViewer=0
    cpmarginwhole=18
    cpwidepart=0
    cpwidewhole=612
    cpheightpart=0
    cpheightwhole=792
    Paper=0
    Since upgrading to Adobe 9.2, this no longer appears to work.  I have also tried adding these values to the following Registry Locations with no luck:
    HKCU\Software\Adobe\Acrobat PDFWriter
    and
    HKCU\Software\Adobe\Acrobat Distiller\PrinterJobControl
    Is it still possible to create a custom page size using this method?  Or am I going to have to do that in a different way?

    PDFWriter was removed in Acrobat 6 - so anything related to it hasn't worked for a decade now.
    The Adobe PDF Printer is (like many other drivers) a special case of the standard Windows Postscript driver, any changes you make to its settings will be found and used accordingly.  So check with standard Windows docs on custom page sizes.  You should also look at the use of a custom JobOptions file for the Adobe PDFPrinter as well.

  • Unreadable characters when creating a pdf using Adobe Acrobat 9 Pro

    I'm using an application that generates a pdf report. When the report is created the text contains unreadable chars.  Heeders look fine, only the text body is unreadable.

    The documents are confidential.
    An example would look like this:
    Customer Name: unreadable chars
    Company Name: unreadable chars

  • Create Custom Infotype using PPCI

    Hi,
    My requirement is to create an HRinfotype . I am trying to create a new custom infotype (9500) via transaction PPCI, categeory   when i select the option user should use Transaction PO10 and choosing the org unit, user should be able to choose my custom Infotype 9004 “Site type and Industry” and select Create/Edit/Delete.
    For this we follow the below given steps :-
    Step1: Create structures as mentioned in the HRI9004
    Step2: Using transaction PPCI create field infotype.
    Step3: In table T777I assign the new infotype to the standard object type Org unit and define the time constraint.
    Can any body help me or send me any document to start from step 2 . i.e Using transaction 'PPCI' .

    Hi,
    Look into the path below
    http://help.sap.com/printdocu/core/Print46c/EN/data/pdf/PAXX/PYINT_INFOTYP_PD.pdf
    Regards
    Pavan

Maybe you are looking for