Good pdf viewer with different functionalitites

Hello folks,
I am looking for a good pdf viewer (would be nice if it could support pdf editiing) to view same pdf document at the same time. Document viewer is good enough but when I want to view the same pdf file which is already open with Document viewer, I can not open the file with Document viewer again. Therefore I am looking for a good pdf viewer. I have installed pdfedit, but it seems like over kill for pdf viewing purpose. Which tools do you use?
thanks!

I think the PDF viewer built in to Mendeley supports highlighting, and it has a Linux native client (mendeleydesktop in AUR), though last I tried it, I wasn't very impressed.
Archie_Enthusiasm wrote:
is there any okular for gnome ?
isn't it? Maybe I should be go with evince or epdfview or mupdf.... I think they should be fine for viewing purpose. any other pdf editing tools other than pdfedit but for linux OSs?
What kind of editing do you need to do? There are a lot of apps for combing PDFs, adding pages, cropping them, etc. (PDFsam, PDFshuffler, PDFmod, jPDFtweak, PDFjam, pdftk with various GUIs, etc.) But if you mean actually editing the text (in which case it's far better generally to go back to the source file, if available), then there's not much beyond what has already been mentioned.
There are some webapps though you could use with Linux, like PDFescape, PDFHammer, TouchPDF, etc. I don't have a lot of experience with them.
In general, I think there are more and at least as good PDF tools for Linux than there are for Windows. The thing is, however, that they follow the Unix philosophy and hence focus on doing only one thing (and doing it well), so you need different programs for doing different things. I use mupdf or evince for viewing PDFs, pdflatex for creating PDFs, pdfsam or pdftk for splitting and combining them, jPDFtweak for changing metadata or bookmarks, BRISS for cropping them, ghostscript or calibre for converting them, etc. No one tool does it all, but all together, I'm perfectly content.
Last edited by frabjous (2011-02-06 01:07:41)

Similar Messages

  • ANN: 1/2-hr webinar (free), June 5 -- Enable and encourage user input in PDFs (viewed with Adobe Rea

    Enable and encourage user input in PDFs (viewed with Adobe Reader)
    with FrameMaker-to-Acrobat TimeSavers + Form Assistant
    Half-hour webinar (free; no fluff, no hype, no nonsense)
    Wednesday, June 5, starting 9am PDT
    Register at: https://www3.gotomeeting.com/register/157658438
    Enabling PDFs for various types of user input can strengthen the interaction between users and the content, and improve satisfaction due to greater user involvement/control. In addition, designated avenues for user input can contribute to documentation quality and provide outlet for frustration, for example by sending inputs regarding the documentation or the product directly from within the PDF.
    Techniques demonstrated in this webinar include features that are all embedded in PDFs that are viewed with the free Adobe Reader:
    • text fields where users can record data values and options
    • checkboxes to track progress
    • page marks and notes (optionally e-mailed)
    • embedded grading/feedback forms
    • storing of useful search queries within the PDF for future use
    Shlomo Perets
    MicroType, http://www.microtype.com
    FrameMaker/Acrobat/Captivate training & consulting • FM-to-Acrobat TimeSavers/Assistants

    https://crash-stats.mozilla.com/report/index/bp-0a0b872f-5127-4ee1-a355-ca3cb2120721
    https://crash-stats.mozilla.com/report/index/bp-9cd87dd7-205f-4844-9e6d-3ce262120721
    https://crash-stats.mozilla.com/report/index/bp-8c07c846-b2ed-4535-8db4-4ee072120720
    https://crash-stats.mozilla.com/report/index/bp-f29a89ed-f8b1-4a62-ba3e-983e22120720
    https://crash-stats.mozilla.com/report/index/bp-e16d2b91-0f7d-4e5a-9e25-255852120718
    https://crash-stats.mozilla.com/report/index/bp-1226c709-5f87-41c6-95d3-4310d2120718
    https://crash-stats.mozilla.com/report/index/bp-4de2a0da-dd36-4ec8-8e53-c42742120714
    https://crash-stats.mozilla.com/report/index/bp-e16d2b91-0f7d-4e5a-9e25-255852120718
    https://crash-stats.mozilla.com/report/index/bp-4de2a0da-dd36-4ec8-8e53-c42742120714
    https://crash-stats.mozilla.com/report/index/bp-eac1c5a5-2dce-4415-b645-07a1f2120714
    https://crash-stats.mozilla.com/report/index/bp-1ede5bd3-8c72-4362-8d79-4f29c2120714
    https://crash-stats.mozilla.com/report/index/bp-d4fd5dae-dacd-45f8-9549-2c3702120722
    https://crash-stats.mozilla.com/report/index/bp-ca510991-de29-44b3-be02-0255a2120722
    https://crash-stats.mozilla.com/report/index/bp-8600c221-3fd3-4eaa-a5af-a602b2120722
    With Hardware Accelaration in Flash turned off. Still crashing.

  • PDF viewer with selection support?

    I need to copy and paste some text strings from PDF document.
    To my suprise - PDF viewers generaly don't support selecting text.
    For example in epdfview and in gv I can't find way to select text with mouse.
    In xpdf it is possible, but it isn't very natural (try it yourself).
    Are there any other good PDF viewers with selection support?
    Or do you know how to enable it in epdfview?

    when you create a PDF you can deny copy, printing and other stuff. maybe the pdf document has copy text deny and you cannot select any text

  • Starting PDF Viewer with file

    Hi, I want use the PDF Viewer (CL_GUI_PDFVIEWER) to display a pdf file without having to open it manually.
    The demo program SAP_PDF_VIEWER_DEMO works well. It opens the PDF Viewer in place, you can zoom and print the file. And you can disable buttons (we don't want the files to be saved and we don't want the user to display different files).
    The problem is you have to select the file manually. If I user 'open_document' at the end of PBO to transmit the file while starting the program, the command is being ignored.
    My question: Does anyone has a tip for me?
    Thanks in advance yours Johannes

    Hi
    If you look with se24 in the class cl_gui_pdf_viewer and you look for method constructor. You will see this code:
    method CONSTRUCTOR.
      data: clsid(80) type c.
    --- if it is Win32 ... ---
      if activex = 'X'.
        clsid = 'PDF.PdfCtrl.1'.
    - if it is PlatinGUI ...-
      elseif javabean = 'X'.
        exit.
    --- if it WebGUI ---
      elseif www_active = 'X'.
        exit.
    --- unknown GUI type
      else.
        exit.
      endif.
    --- call the super-constructor ---
      call method super->constructor
        exporting
          clsid             = clsid
          shellstyle        = shellstyle
          parent            = parent
    Put your self a break point and change the value of
        clsid = 'PDF.PdfCtrl.1'.
    to
        clsid = 'PDF.PdfCtrl.5'.
    if your are lucky it will work afterwards.
    perhaps you also can try
        clsid = 'PDF.PdfCtrl.6'.
    but I am not sure if this will help you. With 5 it was working on my PC this activeX control was existing. If version 6 ever existed, I dont know.
    If the debugging works then make a copy and change it for real.
    Regards

  • C# WINDOWS APP:  EMBED PDF VIEWER WITH FULL LIBRARY

    Here are my requirements:
    1) A PDF viewer that is embedded in a window in my windows app.
    2) I must be able to reference button_click events in the PDF from my windows app. (i.e. if i click a button in the PDF, the event occurs in my windows app.
    Pertaining to the above requirements:
    Here is what I've noticed so far. The Adobe Reader ActiveX works great at simply viewing PDF's and the buttons are shown too. However, I haven't found anything in the Reader library that allows me to reference the buttons in the PDF. This leaves the following questions.
    Possible Solutions: (need your help/recommendations)
    1) Can I use the Acrobat SDK to reference the document that is open inside my Adobe Reader ActiveX control? (If I can, then i can get a hold of my buttons and events). If I can do this, does anyone have any clue about the proper syntax? All of the the samples I've seen actually reference a document that acrobat opens, not the reader....
    2) Can I embed the Adobe Acrobat (not the reader) in my windows app in order to view the files? I haven't seen this done yet. Every example I've seen opens the acrobat in it's own window!!!
    3) Is there other software out there that offers both functionalities: 1) Embedded viewing window with 2) Full access to PDF library?
    Any help in this matter would be greatly appreciated, as I have searched High, Low, and In Between for a solution.
    Thanks,
    jpc

    Patrick Leckey and Walker81,
    So, according to both of you, it is possible.  I have messed around with the buttons a little bit in acrobat enough to know that you can make a button that on click will run a javascript.  The problem is that I do not know any javascript, which is why i was trying to access it only with C#.  However, I am now receptive of the idea of learning at least a little java to get around in adobe (it seems unavoidable).  Any examples or pointers as to how to do this would be greatly appreciated.
    So for clarification:  Is the following statement correct?  If I have an Adobe Reader Active X control which opens the PDF, it is impossible for me to also reference that opened PDF as an acrobat object, thereby getting access to all of it's objects.
    From what I understand:
    -  I can put in the button field of my "template button" to call a certian javascript that is stored in the PDF, and this javascript can send information to my C# windows application.
    - I can embed acrobat (not reader) into my C# application with the MenuItem that Walker81 mentioned. (btw, i'm not concerned about the extra cost.  I really just need something that works)
    This brings about a question though:  If I can embed acrobat in my Windows App, then what keeps me from accessing the button fields through that avenue?  (I think the adobe SDK has an example of fields being accessed - things like text boxes being filled in and junk).  So would it be possible to create a buttonclick_event of all of the buttons in the PDF at runtime through adobe's library by looping through all of the fields and declaring a buttonclick event???  I'll look into it, because being able to access a field and being able to make an event from one can be two different animals I guess...
    Thanks for the responses, and I will look up and mess around with the methods you described and try to make them work from my limited knowledge.  If anyone has any example code they'd like to share to get me started on this, it would be helpful.  I understand there's something called a document level function or something like that in adobe.  I'm assuming you're saying that the button would call this function, and that this function would reference my windows app.  I will look at this some more and try to follow up on here.  I can't imagine that i'm the only person trying to do this..

  • Issues with setting "Maked Reader the default PDF viewer" with Adobe Customization Wizard XI

    I am using the Adobe Customization Wizard XI. I have set the following options in the Adobe Customization Wizard.
    Personalization Options
    Enabled the checkbox for Suppress display of End User License Agreement (EULA)
    Installation Options
    Selected the radio button for Make Reader the default PDF viewer
    Run Installation: selected radio button Silently(No Interface)
    Security
    Enhanced Security Settings - Clicked drop down and set value to Disable
    Online Services and Features
    Checked Disable product updates
    Checkd In Adobe Reader, disable Help > Purchase Adobe Acrobat
    Checked Disable Product Improvement Program
    Checked Disable Viewing of PDF with Ads for Adobe PDF
    Checked Disable all Adobe online services based workflows and entry points.
    I have tried to deploy the MSI with MST via GPO and Command Line with no luck.  Every time i deploy via below methods, the same result occurs, all of the options are set correctly except the "Make Reader the default PDF viewer".  I know how to manually set this option via Windows or Adobe interfaces but i am looking to roll this out to the masses and would not want a bunch of service desk calls because a user clicks on an Adobe PDF file and it is not opening in Adobe Reader.
    GPO
    Create New Package Use AcroRead.msi
    Choose Advanced
    Deployment Options - Click Uninstall this application when it falls out of the scope of management.
    Modifications - Select Transform file located in the folder of MSI
    Command Line.
    Tried these options to try and apply "Make Reader the default PDF viewer"
    msiexec /i  "<path>\AcroRead.msi" TRANSFORMS="<path>\TransformFile.mst"
    msiexec /i  "<path>\AcroRead.msi" TRANSFORMS="<path>\TransformFile.mst" /qn
    msiexec /i "<path>\AcroRead.msi" IW_DEFAULT_VERB=Read
    msiexec /i  "<path>\AcroRead.msi" TRANSFORMS="<path>\TransformFile.mst" IW_DEFAULT_VERB=Read /qn
    Anyone know how to make this setting work with the Transform file, i sure would appreciate assistance on this issue.

    Instead of saving as a PDF thru Work do a Print ➙ PDF ➙ Save as PDF and it will be saved the first time with the Preview icon.

  • How to set up a pdf embeded with different code so that people can get different excess code after they paid on-line?

    For example, I want to set up a pdf embeded with code, and send it on-line. People who want it should pay for it first and get the access code. I need to set different access code in order to avoid people A give the access to people B.

    Unless you use a very expensive DRM protection measure, I don't see how it's possible. How can you prevent someone from sending a file with the password to someone else?

  • Query rewrites with Nested materialized views with different aggregations

    Platform used : Oracle 11g.
    Here is a simple fact table (with measures m1,m2) and dimensions (a) Location (b) Calendar and (c) Product. The business problem is that aggregation operator for measure m1,m2 are different along location dimension and Calendar dimension. The intention is to preaggregate the measures for a product along the calendar dimension and Location dimension and store it as materialized views.
    The direct option is to define a materialized view with Inline queries (Because of the different aggrergation operator, it is not possible to write a query without Inline query). http://download-uk.oracle.com/docs/cd/B28359_01/server.111/b28313/qradv.htm#BABEAJBF documents the limitations that it works only for 'Text match' and 'Equivalent queries' and that is too limiting.
    So decided to have nested materialized view, with first view having just joins(my_dim_mvw_joins), the second view having aggregations along Calendar dimension (my_dim_mvw_calendar) and third view having aggregations along the Location dimension(my_dim_mvw_location). Obviously I do not want the query I fire to know about materialized views and I fire it against the fact table. I see that for the fired query (Which needs aggregations along both Calendar and Location), is rewritten with just second materialized view but not the third. (Had set QUERY_REWRITE_INTEGRITY as TRUSTED) .
    Wanted to know whether there are limitations on Query Writes with nested materialized views? Thanks
    (Have given a simple testable example below. Pls ignore the values given in 'CALENDAR_IDs', 'PRODUCT_IDs' etc as they are the same for all the queries)
    -- Calendar hierarchy table
    CREATE TABLE CALENDAR_HIERARCHY_TREE
    (     "CALENDAR_ID" NUMBER(5,0) NOT NULL ENABLE,
    "HIERARCHY1_ID" NUMBER(5,0),
    "HIERARCHY2_ID" NUMBER(5,0),
    "HIERARCHY3_ID" NUMBER(5,0),
    "HIERARCHY4_ID" NUMBER(5,0),
    CONSTRAINT "CALENDAR_HIERARCHY_TREE_PK" PRIMARY KEY ("CALENDAR_ID")
    -- Location hierarchy table
    CREATE TABLE LOCATION_HIERARCHY_TREE
    (     "LOCATION_ID" NUMBER(3,0) NOT NULL ENABLE,
    "HIERARCHY1_ID" NUMBER(3,0),
    "HIERARCHY2_ID" NUMBER(3,0),
    "HIERARCHY3_ID" NUMBER(3,0),
    "HIERARCHY4_ID" NUMBER(3,0),
    CONSTRAINT "LOCATION_HIERARCHY_TREE_PK" PRIMARY KEY ("LOCATION_ID")
    -- Product hierarchy table
    CREATE TABLE PRODUCT_HIERARCHY_TREE
    (     "PRODUCT_ID" NUMBER(3,0) NOT NULL ENABLE,
         "HIERARCHY1_ID" NUMBER(3,0),
         "HIERARCHY2_ID" NUMBER(3,0),
         "HIERARCHY3_ID" NUMBER(3,0),
         "HIERARCHY4_ID" NUMBER(3,0),
         "HIERARCHY5_ID" NUMBER(3,0),
         "HIERARCHY6_ID" NUMBER(3,0),
         CONSTRAINT "PRODUCT_HIERARCHY_TREE_PK" PRIMARY KEY ("PRODUCT_ID")
    -- Fact table
    CREATE TABLE RETAILER_SALES_TBL
    (     "PRODUCT_ID" NUMBER,
    "PRODUCT_KEY" VARCHAR2(50 BYTE),
    "PLAN_ID" NUMBER,
    "PLAN_PERIOD_ID" NUMBER,
    "PERIOD_ID" NUMBER(5,0),
    "M1" NUMBER,
    "M2" NUMBER,
    "M3" NUMBER,
    "M4" NUMBER,
    "M5" NUMBER,
    "M6" NUMBER,
    "M7" NUMBER,
    "M8" NUMBER,
    "LOCATION_ID" NUMBER(3,0),
    "M9" NUMBER,
    CONSTRAINT "RETAILER_SALES_TBL_LOCATI_FK1" FOREIGN KEY ("LOCATION_ID")
    REFERENCES LOCATION_HIERARCHY_TREE ("LOCATION_ID") ENABLE,
    CONSTRAINT "RETAILER_SALES_TBL_PRODUC_FK1" FOREIGN KEY ("PRODUCT_ID")
    REFERENCES PRODUCT_HIERARCHY_TREE ("PRODUCT_ID") ENABLE,
    CONSTRAINT "RETAILER_SALES_TBL_CALEND_FK1" FOREIGN KEY ("PERIOD_ID")
    REFERENCES CALENDAR_HIERARCHY_TREE ("CALENDAR_ID") ENABLE
    -- Location dimension definition to promote query rewrite
    create DIMENSION LOCATION_DIM
    LEVEL CHAIN IS LOCATION_HIERARCHY_TREE.HIERARCHY1_ID
    LEVEL CONSUMER_SEGMENT IS LOCATION_HIERARCHY_TREE.HIERARCHY3_ID
    LEVEL STORE IS LOCATION_HIERARCHY_TREE.LOCATION_ID
    LEVEL TRADING_AREA IS LOCATION_HIERARCHY_TREE.HIERARCHY2_ID
    HIERARCHY PROD_ROLLUP (
    STORE CHILD OF
    CONSUMER_SEGMENT CHILD OF
    TRADING_AREA CHILD OF
    CHAIN
    -- Calendar dimension definition
    create DIMENSION CALENDAR_DIM
    LEVEL MONTH IS CALENDAR_HIERARCHY_TREE.HIERARCHY3_ID
    LEVEL QUARTER IS CALENDAR_HIERARCHY_TREE.HIERARCHY2_ID
    LEVEL WEEK IS CALENDAR_HIERARCHY_TREE.CALENDAR_ID
    LEVEL YEAR IS CALENDAR_HIERARCHY_TREE.HIERARCHY1_ID
    HIERARCHY CALENDAR_ROLLUP (
    WEEK CHILD OF
    MONTH CHILD OF
    QUARTER CHILD OF
    YEAR
    -- Materialized view with just joins needed for other views
    CREATE MATERIALIZED VIEW my_dim_mvw_joins build immediate refresh complete enable query rewrite as
    select product_id, lht.HIERARCHY1_ID, lht.HIERARCHY2_ID, lht.HIERARCHY3_ID, lht.location_id, cht.HIERARCHY1_ID year,
    cht.HIERARCHY2_ID quarter, cht.HIERARCHY3_ID month, cht.calendar_id week, m1, m3, m7, m9
    from retailer_sales_tbl RS, calendar_hierarchy_tree cht, location_hierarchy_tree lht
    WHERE RS.period_id = cht.CALENDAR_ID
    and RS.location_id = lht.location_id
    and cht.CALENDAR_ID in (10,236,237,238,239,608,609,610,611,612,613,614,615,616,617,618,619,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477)
    AND product_id IN (5, 6, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20)
    AND lht.location_id IN (2, 3, 11, 12, 13, 14, 15, 4, 16, 17, 18, 19, 20)
    -- Materialized view which aggregate along calendar dimension
    CREATE MATERIALIZED VIEW my_dim_mvw_calendar build immediate refresh complete enable query rewrite as
    select product_id, HIERARCHY1_ID , HIERARCHY2_ID , HIERARCHY3_ID ,location_id, year, quarter, month, week,
    sum(m1) m1_total, sum(m3) m3_total, sum(m7) m7_total, sum(m9) m9_total,
    GROUPING_ID(product_id, location_id, year, quarter, month, week) dim_mvw_gid
    from my_dim_mvw_joins
    GROUP BY product_id, HIERARCHY1_ID , HIERARCHY2_ID , HIERARCHY3_ID , location_id,
    rollup (year, quarter, month, week);
    -- Materialized view which aggregate along Location dimension
    CREATE MATERIALIZED VIEW my_dim_mvw_location build immediate refresh complete enable query rewrite as
    select product_id, year, quarter, month, week, HIERARCHY1_ID, HIERARCHY2_ID, HIERARCHY3_ID, location_id,
    sum(m1_total) m1_total_1, sum(m3_total) m3_total_1, sum(m7_total) m7_total_1, sum(m9_total) m9_total_1,
    GROUPING_ID(product_id, HIERARCHY1_ID, HIERARCHY2_ID, HIERARCHY3_ID, location_id, year, quarter, month, week) dim_mvw_gid
    from my_dim_mvw_calendar
    GROUP BY product_id, year, quarter, month, week,
    rollup (HIERARCHY1_ID, HIERARCHY2_ID, HIERARCHY3_ID, location_id)
    -- SQL Query Fired (for simplicity have used SUM as aggregation operator for both, but they will be different)
    select product_id, year, HIERARCHY1_ID, HIERARCHY2_ID,
    sum(m1_total) m1_total_1, sum(m3_total) m3_total_1, sum(m7_total) m7_total_1, sum(m9_total) m9_total_1
    from
    select product_id, HIERARCHY1_ID , HIERARCHY2_ID , year,
    sum(m1) m1_total, sum(m3) m3_total, sum(m7) m7_total, sum(m9) m9_total
    from
    select product_id, lht.HIERARCHY1_ID , lht.HIERARCHY2_ID , lht.HIERARCHY3_ID ,lht.location_id, cht.HIERARCHY1_ID year, cht.HIERARCHY2_ID quarter, cht.HIERARCHY3_ID month, cht.calendar_id week,m1,m3,m7,m9
    from
    retailer_sales_tbl RS, calendar_hierarchy_tree cht, location_hierarchy_tree lht
    WHERE RS.period_id = cht.CALENDAR_ID
    and RS.location_id = lht.location_id
    and cht.CALENDAR_ID in (10,236,237,238,239,608,609,610,611,612,613,614,615,616,617,618,619,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477)
    AND product_id IN (5, 6, 7, 8, 11, 12, 13, 14, 17, 18, 19, 20)
    AND lht.location_id IN (2, 3, 11, 12, 13, 14, 15, 4, 16, 17, 18, 19, 20)
    GROUP BY product_id, HIERARCHY1_ID , HIERARCHY2_ID , HIERARCHY3_ID , location_id, year
    ) sales_time
    GROUP BY product_id, year,HIERARCHY1_ID, HIERARCHY2_ID
    This Query rewrites only with my_dim_mvw_calendar. (as saw in Query Plan and EXPLAIN_MVIEW). But we would like it to use my_dim_mvw_location as that has aggregations for both dimensions.

    blackhole001 wrote:
    Hi all,
    I'm trying to make my programmer's life easier by creating a database view for them to query the data, so they don't have to worry about joining tables. This sounds like a pretty horrible idea. I say this because you will eventually end up with programmers that know nothing about your data model and how to properly interact with it.
    Additionally, what you will get is a developer that takes one of your views and see's that of the 20 columns in it, it has 4 that he needs. If all those 4 columns comes from a simple 2 table join, but the view has 8 tables, you're wasting a tonne of resources by using the view (and heaven forbid they have to join that view to another view to get 4 of the 20 columns from that other view as well).
    Ideally you'd write stored routines that satisfy exactly what is required (if you are the database resource and these other programmers are java, .net, etc... based) and the front end developers would call those routines customized for an exact purpose.
    Creating views is not bad, but it's by no means a proper solution to having developers not learn or understand SQL and/or the data model.

  • Google Chrome PDF viewer displays different fonts

    When I design a document in either Indesign, Illustrator, or Photoshop I use many custom fonts. I export my PDF's as optimized as possible for web viewing from the layout program itself.
    I don't stop there. I open my exported PDF in Acrobat and optimize the file further using the Optimize PDF tool. I flatten everything out, but I keep my fonts embedded. When I drag and drop the file in Google Chrome or Firefox the fonts change. I get some cheap looking serif font instead of my slab serif. I've tried unembedding the font as well and I get the same result.
    What gives?
    I just want to make sure this isn't something I'm doing wrong. What's weird is it happens in Firefox/Chrome, but it doesn't happen in Safari.
    Firefox/Chrome PDF viewer:
    Safari PDF viewer:

    Interesting.
    However, as what each of these browsers does to render a PDF is dictated by the respective coding discussions of that would have to take place each browsers "developer space".
    Nothing there is controlled by Adobe eh.
    Be well...

  • Union in CDS View with different columns

    Hello,
    I have two entities E1 {a: Integer; b: Integer} and E2 {a: Integer; c: Integer} and I want to build a CDS view which does a union on both like:
    SELECT a, b, null as c FROM E1
    UNION SELECT a, null as b, c  FROM E2
    I have written the following:
    view UnionView as select from E1 {a, b, null as c} union select from E2 {a, null as b, c}
    Now I get the error message: Feature is not supported
    Has anybody an idea, how to model this with a CDS view? With a graphical calculation view, this is possible, but I want to build it as a CDS view.
    Regards,
    Michael

    What revision is your system on?  I show that UNION was new syntax in SPS 09.
    http://help.sap.com/hana/SAP_HANA_Core_Data_Services_CDS_Reference_en.pdf
    I tried the following in my system and it worked just fine:
    namespace playground;
    @Schema: 'PLAYGROUND'
    context unionDemo {
        entity E1 {
      key a : Integer;
      b : String(20);
      c : LocalDate;
    entity E2 {
      key x : String(20);
      y : LocalDate;
      z : Integer;
    view V as
      select from E1 { a, b, c}
      union
      select from E2 { z, x, y};

  • Having Multiple Adobe PDF printers with different output settings

    Hello,
    My company is using Adobe Acrobat X and XI on Win 7 Pro, and we would like to create 2 separate Adobe PDF printers that have 2 different output settings. So I installed a second Adobe PDF printer using the same Adobe Converter Driver as was used to install the first one. Then, I went into Devices and Printers and I edited the printing preferences of one Adobe PDF printer, but what I found was when I changed the preferences of one printer, it automatically changes the other one as well. Is there a way around this?

    Thanks for pointing me to the iTunes Folder Watch program. It looks like this will solve my immediate needs. It's a little clunky in spots, but does handle adding new files very well. And it only cost about $10 to get the fully functioning version with the automatic monitoring in the background.
    I copied the iTunes library files to each account, setup a watch folder that points to the location of the iTunes library content and all the music syncs up perfectly without duplicates. I have yet to test the applications, but music, movies, TV Shows, audiobooks, and podcasts all work fine.
    If anyone else is considering this product, just make sure you double check your file location in the iTune settings to make sure each account is pointing to the same location and is organizing the content in the same way or else the individual account libraries will fight against each other to organize all the content where it is configured to put it. Copying the library files isn't enough since some of these settings are in the Windows Registry.
    I made this mistake at first. I had all the accounts pointing to the same folder, but one of them (the original) had the "Upgrade to iTunes Media Organization" turned on which categorizes all content into folders based on type such as music, movies, podcasts, etc. Since the others were organizing just based on artist and album this caused the accounts to try to reorganize the files when Folder Watcher would tell it there were new files to manage.
    All in all, this solves most of my concerns, but I'm still surprised Apple hasen't added this natively into the iTunes product. Especially when this guy figured out how to write the software to do it and is only charging about 10 bucks to do it. Well I hope this guy makes a million bucks off his little product bacause he surely deserves it!

  • Cannot create 'download' page for inline PDF viewing with IE

    Description of Problem:
    Typically, when you want to transfer a file to the client via code (cuz the
    file is in a db, for example), you create a page that will change the
    response headers and then spit out the file for them to download.
    This works, however something with the response headers make it so IE does
    not display a PDF if the 'Display PDF in browser' is turned on in the
    Acrobat Reader. The page loads, but is blank.
    code:
    response.setContentType("application/pdf"); //this works well
    response.setHeader("Content-disposition","inline; filename=" +"report.pdf" );
    response.setContentType("application/pdf;charset=GB2312"); // can't work
    response.setHeader("Content-disposition","inline; filename=" +"report.pdf" );
    when response header containt national char
    must set "useResponseCTForHeaders = true" in sun-web.xml and must use setContentType charset =XXX
    Actual Results:
    A blank page is shown
    Expected Results:
    The PDF is shown in the browser using the acrobat reader plugin.
    How often does this happen?
    Every time

    hi kglad
    thanks for the help im almost there but still not getting it
    so currently my code is set up for an action over a button
    using
    on (release) {
    getURL("www.mysite.com/my.mp3","_blank");
    so do I keep the on(release and then add in the on (release)
    then add in which part of the filereference class??
    import flash.net.FileReference;
    var listener:Object = new Object();
    listener.onSelect = function(file:FileReference):Void {
    trace("onSelect: " + file.name);
    listener.onCancel = function(file:FileReference):Void {
    trace("onCancel");
    listener.onOpen = function(file:FileReference):Void {
    trace("onOpen: " + file.name);
    listener.onProgress = function(file:FileReference,
    bytesLoaded:Number, bytesTotal:Number):Void {
    trace("onProgress with bytesLoaded: " + bytesLoaded + "
    bytesTotal: " + bytesTotal);
    listener.onComplete = function(file:FileReference):Void {
    trace("onComplete: " + file.name);
    listener.onIOError = function(file:FileReference):Void {
    trace("onIOError: " + file.name);
    thanks a lot for your help!
    var fileRef:FileReference = new FileReference();
    fileRef.addListener(listener);
    var url:String = "
    http://www.macromedia.com/platform/whitepapers/platform_overview.pdf";
    if(!fileRef.download(url, "FlashPlatform.pdf")) {
    trace("dialog box failed to open.");
    }

  • Save FrameMaker Book as PDF - Files with different page sizes

    I've created a book with 2 files - the pages in the first file are 8.5 x 11, the pages in the second file are 8.5 x 14.
    How can I save the book as a PDF but keep both page sizes? Right now if I change the page size in the PDF settings dialog, it changes all pages.
    Thanks.

    Something's not right. Try this route then:
    1. Use the Print Book option and have the AdobePDF printer instance selected, turn off the the Print to File, enable the "Generate Acrobat Data" option.
    2. Click the PDF Setup button to ensure that the Page size is set to the largest (as in the previous message),
    3. Then click the Setup... button to configure the printer for the largest size required.
    4. Then click the OK button to get back to the Print Book and finally click Print.
    5. You should be prompted where to place the file (unless you left the default configuration which may place it on your desktop).
    This should have all the pages correctly cropped as in the following sample with Letter, Legal and Tabloid all in one book:

  • Java Cache Viewer shows duplicate URL with different versions

    In doing some testing lately we have come across a couple of situations where the same URL is showing in the JAVA cache viewer with different versions to them.  In the case of a 1.7 JRE this is not causing any adverse effects however when utilizing a 1.6 JRE we are getting messages about mixed mode for the JAR files.
    The jar file is signed as below:
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.8.2
    Application-Library-Allowable-Codebase: *
    Application-Name: named_applet
    Built-By: relbuild
    Permissions: all-permissions
    Created-By: 1.6.0_17-b04 (Sun Microsystems Inc.)
    Caller-Allowable-Codebase: *
    Codebase: *
    understanding the need to change the wildcard's to domains as we move forward.  I am wondering why the jar file is being listed and called twice and why it is being recognized as signed one time and not the next.
    The URL is identical in the cache viewer and the java console says it is not found in the cache when it is used the second time, even though previously in the session is finds it with the correct version.
    Any advice would be helpful

    that i even know, but the problem is that i do not have that version of java re installed, but i found distribution 07 of the same java version, i'll try it out with that.
    but when it still doesn't work, then i still would like to find the link where i can download java version 1.4.2_06.

  • The best of java pdf Viewer ?

    What is the best of java pdf Viewer with free license?
    Thanks

    About the only decent java PDF viewer is Multivalent. It's a bit quirky, but does a fairly good job. Unfortunately, it doesn't currently support printing.
    Adobe's java viewer is ancient, not worth wasting your time with.

Maybe you are looking for

  • In 6.0.2 Nightmare - Crashes, Lock-Ups

    I updated to 6.0.2 and I have a full length doc that I'm editing. It was shot using the Canon H1 24f. All the footage (roughly 125 hours) has been logged to two LaCie Biggest FW800 drives. I bought a FW800 card to hopefully make things faster. Anyway

  • Help needed with delay timer in my program

    In my program i want to delay the program for a certain time and then carry on. Below is what i have done. long instant; for(int i=0;i<length;i++){ instant=testarray; On(); startTime = System.currentTimeMillis(); do{ endTime = System.currentTimeMilli

  • IN MIGO SCREEN F4 OPTION NEDD TO BE CHANGED TO DROPDOWN LIST

    Hi Guys, In MIGO screen Capture and post option can be select by F4 function and it show only technical name after selecting. I want this to convert in to dropdown and both technical name as well as description should display. Can some one suggest ho

  • How do I stop Mail from automatically logging onto my email provider

    Prior to Mtn Lion, anytime Mail started it would prompt me for the password to log onto my email provider.  If I didn't want to check for new email I would cancel out.  That's no longer the case.  If I log onto a wi-fi connection, Mail automatically

  • Multi-Tier

    Dear OTN Members; Can you explain me what the multi-tier application concept is? I need a general information. And Which oracle tools can be used for this aim? Thanks... Fatih Sami KARAKAS null