Link to page in middle of pdf document.

Nevermind I figured it out, I left out the equal sign before
the page number.
Should have been:
http://playgroundsmag.com/042007playgroundsall.pdf#page=12
Deisregard below.
I have a web page in dreamweaver that contains a Table of
Contentsd jpg file. I am using hotspots to link to an adobe pdf
file. I thought the folloing was the url to go to a particular
page..
http://playgroundsmag.com/042007playgroundsall.pdf#page12
but it doesn't work now. I am sure the syntax is just wrong,
but I can't seem to find the combo to pull up the right topic in
the help files. Can anyone tell me what is wrong?
TIA

http://www.communitymx.com/abstract.cfm?cid=A12EF619D9061CD2
"bcblair" <[email protected]> wrote in
message
news:evoi0i$472$[email protected]..
>I have a web page in dreamweaver that contains a Table of
Contentsd jpg
>file. I
> am using hotspots to link to an adobe pdf file. I
thought the folloing was
> the
> url to go to a particular page..
>
>
http://playgroundsmag.com/042007playgroundsall.pdf#page12
>
> but it doesn't work now. I am sure the syntax is just
wrong, but I can't
> seem
> to find the combo to pull up the right topic in the help
files. Can anyone
> tell
> me what is wrong?
>
> TIA
>

Similar Messages

  • How to format paragraph string to show content left, Right or middle of pdf document using iTextsharp ' vb

    Dear All
    how to format paragraph string to show content left, Right or middle of pdf document using iTextsharp in visual basic and absolute position on the document.
    Thanks

     Here is one more example that i have modified the GetCell function so that you can use it for adding all the cells to the document.  It takes several arguments to specify everything you need to create each cell.  It now lets
    you specify the Text, the Text Alignment, the Text Font and color, weather the cell shows the Border, the BackColor of the cell, and the Padding values for the Left, Right, Top, and Bottom.
     If you study the code you should be able to figure out how it works.  From here you can figure out the rest of what you need to do and how to use the
    GetCell function.
     With one quick google search for "iTextSharp Documentation" the first link to pop up was this link.
    iTextSharp Documentation
    Imports System.IO
    Imports Its = iTextSharp.text
    Public Class Form1
    Private dt As New DataTable
    Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
    dt.Dispose()
    End Sub
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    dt.Columns.Add("Name")
    dt.Columns.Add("Age")
    dt.Columns.Add("Birth Date")
    dt.Rows.Add(New Object() {"Johnny", "23", Now.AddYears(-23).ToString})
    dt.Rows.Add(New Object() {"Frank", "41", Now.AddYears(-41).ToString})
    dt.Rows.Add(New Object() {"Rex", "33", Now.AddYears(-33).ToString})
    dt.Rows.Add(New Object() {"Kim", "26", Now.AddYears(-26).ToString})
    End Sub
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim MyPdfFilePath As String = "C:\TestFolder\MyPdf.pdf"
    Dim pSize As New Its.Rectangle(Its.PageSize.A4)
    Dim PdfDoc As Its.Document = New Its.Document(pSize, 10, 10, 10, 10)
    Dim PdfImage As New Its.Jpeg(New Uri("C:\TestFolder\MyLogo.jpg"))
    PdfImage.Alignment = Its.Jpeg.ALIGN_CENTER
    Dim pTable As New Its.pdf.PdfPTable(1)
    pTable.AddCell(getCell("Name : " & TextBox1.Text, Its.pdf.PdfPCell.ALIGN_CENTER, Its.FontFactory.GetFont("Arial", 15, Its.BaseColor.BLACK), False, Its.BaseColor.WHITE, 10, 0, 0, 0))
    pTable.AddCell(getCell("Policy : " & TextBox2.Text, Its.pdf.PdfPCell.ALIGN_CENTER, Its.FontFactory.GetFont("Arial", 20, Its.BaseColor.RED), False, Its.BaseColor.WHITE, 10, 20, 0, 0))
    Dim cTable As New Its.pdf.PdfPTable(dt.Columns.Count)
    For Each col As DataColumn In dt.Columns
    cTable.AddCell(getCell(col.ColumnName, Its.pdf.PdfPCell.ALIGN_CENTER, Its.FontFactory.GetFont("Arial", 12, Its.BaseColor.WHITE), True, Its.BaseColor.BLUE, 3, 5, 0, 0))
    Next
    Dim tblfont As Its.Font = Its.FontFactory.GetFont("Arial", 10, Its.BaseColor.BLACK)
    For Each row As DataRow In dt.Rows
    cTable.AddCell(getCell(row.Field(Of String)("Name"), Its.pdf.PdfPCell.ALIGN_LEFT, tblfont, True, Its.BaseColor.WHITE, 3, 4, 3, 0))
    cTable.AddCell(getCell(row.Field(Of String)("Age"), Its.pdf.PdfPCell.ALIGN_CENTER, tblfont, True, Its.BaseColor.WHITE, 3, 4, 0, 0))
    cTable.AddCell(getCell(row.Field(Of String)("Birth Date"), Its.pdf.PdfPCell.ALIGN_RIGHT, tblfont, True, Its.BaseColor.WHITE, 3, 4, 0, 3))
    Next
    Using fs As New FileStream(MyPdfFilePath, FileMode.Create, FileAccess.Write, FileShare.None)
    Using pdfWrite As Its.pdf.PdfWriter = Its.pdf.PdfWriter.GetInstance(PdfDoc, fs)
    PdfDoc.Open()
    PdfDoc.Add(PdfImage)
    PdfDoc.Add(pTable)
    PdfDoc.Add(cTable)
    PdfDoc.Close()
    End Using
    End Using
    PdfDoc.Dispose()
    End Sub
    ''' <summary>Creates a new cell for the table.</summary>
    ''' <param name="text">The text string for the cell.</param>
    ''' <param name="alignment">Alighnment for the text string.</param>
    ''' <param name="textfont">The font used for the text string.</param>
    ''' <param name="border">True to show the cell border. False to hide the cell border.</param>
    ''' <param name="backcolor">The background color of the cell.</param>
    ''' <param name="padtop">The amount of padding on the top of the text string.</param>
    ''' <param name="padbottom">The amount of padding on the bottom of the text string.</param>
    ''' <param name="padleft">The amount of padding on the left of the text string.</param>
    ''' <param name="padright">The amount of padding on the right of the text string.</param>
    Public Function getCell(ByVal text As String, ByVal alignment As Integer, ByVal textfont As Its.Font, ByVal border As Boolean, ByVal backcolor As Its.BaseColor, ByVal padtop As Single, ByVal padbottom As Single, ByVal padleft As Single, ByVal padright As Single) As Its.pdf.PdfPCell
    Dim cell As New Its.pdf.PdfPCell(New Its.Phrase(text, textfont))
    cell.BackgroundColor = backcolor
    cell.PaddingLeft = padleft
    cell.PaddingRight = padright
    cell.PaddingTop = padtop
    cell.PaddingBottom = padbottom
    cell.HorizontalAlignment = alignment
    If Not border Then cell.Border = Its.pdf.PdfPCell.NO_BORDER
    Return cell
    End Function
    End Class
    If you say it can`t be done then i`ll try it

  • Scan multiple pages into a single PDF document?

    How can i scan multiple pages into a single multipage PDF file?
    I've seen similar questions posted, but I haven't found any good answers. The only advice i saw was to scan each page as a separate PDF document, then merge them into a single PDF using third-party software.
    Obviously, i don't want to have to do that.
    I can't believe that there really is no way to do it using the existing HP print/scan utilities provided with the hardware.
    My printer/scanner is the "HP Photosmart 5514 e-All-in-One Printer - B111h", and i'm running Vista (64-bit) on an HP Pavillion notebook.
    This question was solved.
    View Solution.

    Hi,
    From the HP Scan software (Start > Programs > HP > HP Photosmart 5510 Series > HP Scan) select PDF and ensure the resolution is 300 DPI or lower.
    Ensure the Show Scan Preview option is checked and click on Scan.
    Once scanning the first page completes, place the next page on the glass and click the plus button below the scan preview...
    Once you are done click on Save.
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • How to insert page numbers in a PDF document?

    How to insert page numbers in a PDF document using Adobe Acrobat X Pro 10.1.2?
    Thanks.

    OK, I found it myself:
    1. Tools - Pages - Edit Page Design - Header & Footer - Add Header & Footer.
    2. Select the font and size, etc, place the cursor on the appropriate site to insert the page number, click the "Insert Page Number" button, and click OK.
    That is!

  • Is there any way to make the page size of a PDF document smaller?  I'm at 30"x36" and want 8.5"x11"

    Is there any way to make the page size of a PDF document smaller?  I'm at 30"x36" and want 8.5"x11"

    The quickest way is to print to a new PDF and use shrink to fit. Be sure you set the paper size in the printer properties. Normally this is not recommended, but it is a quick approach. You would loss any bookmarks and other markup with the print.

  • When I try to delete page(s) from a PDF document I created, I geth the following message: "One or more pages are in use and could not be deleted." Any suggestions?

    When I try to delete page(s) from a PDF document I created, I geth the following message: "One or more pages are in use and could not be deleted." Any suggestions?

    I sent an email to TerraGo Support and they sent the following response: "This has bug has been discovered and our development team is quickly creating a patch to resolve the problem. The patch should be available within a week or two. For your reference, the bug number assigned to this case is: 3620. Check back in about two weeks and hopefully the patch will be available. Again, I apologize for the inconvenience."

  • How do i extract pages from within a pdf document?

    how do i extract pages from within a pdf document?

    Hi adobespurs,
    To extract pages from a PDF, you need to use Acrobat. If you don't have Acrobat, you can try it for free for 30 days. Please see www.adobe.com/products/acrobat.html for more information.
    Best,
    Sara

  • Is it possible to delete page(s) from a pdf document?

    37 page pdf document; I would like to take out some of the pages.  Using createpdf.

    Hi Kromowidjojo,
    With CreatePDF you would not be able to delete pages. CreatePDF is only a convertion application which is use to convert different formats to PDF and vice versa.
    You have to purchase the complete PDF solution(Adobe Acrobat) to achieve this task. Please visit the below mentioned link for more information:
    http://www.adobe.com/products/acrobat.html?promoid=JOLIR
    Regards,
    ~Pranav

  • Link to a chapter of another pdf document

    In brief:
    I want to insert links from a pdf document to a section or chapter of a different pdf document. ¿How can I do this? (The documents are done with Word and then passed to pdf)
    In detail:
    The documents are originally done with word and then passed to pdf. I have been able to insert links to a page number. I did this by putting the document in a web server and using a link similar to this (to link to page 2):
    http://domayname/doc1.pdf#page=2
    I read that to link to a named destination you could use links of the type:
    http://domayname/doc1.pdf#nameddest=destinationname
    or:
    http://domayname/doc1.pdf#destinationname
    But this does not work for me.
    Perhaps the problem is that where I am trying to link it is not even a named destination. What I have is a word document with headings for the different chapters and I want to convert them to pdf and link to those headings. I don’t know if the headings are converted to named destinations.
    I am using Word 2010 (which saves the documents as pdf) and Adobe Reader and, If possible I, would like to do this without any extra tool unless it is free.
    Kind regards

    Thank you.
    But Acrobat is necessary only to create the PDFs ore also for navigating between them?

  • How to print a specific page from a given PDF document, using command line, please?

    Hello,
    I need your advise, please. My customer requires to print a specfic page from a pdf document they receive, using command line or 3rd party solution.
    Anything you can advise, please? I have seen AcroRD32.exe options, but can only print the whole document.
    Kind Regards

    Not sure if there are any examples. The Acrobat SDK is a must, but it is best treated as documentation to study rather than examples to copy. The examples only illustrate a tiny fraction of the capabiliies.
    (One other note: the solution must involve the client owning Acrobat; Acrobat is not for server use).

  • Inserting pages into a multiple pdf documents in a few steps.

    Dear All,
    Is there a way to insert pages from what pdf into another in a few simple steps? I know how to manually insert a page into a document  (have to pdfs open and drag and drop) but if you have 500 pdf documents you need to insert into 500 pdfs, it becomes a tedious process. I was wondering if there is anyway to do that in one step? I know you can password protect multiple docs in one step so I am sure acrobat has this functionality but I just don't know about it. Thank you in advance for your help!

    Since there's only one one-page generic document to be added after each PDF file, I think you can just use the basic features of the Action Wizard without using JavaScript. I just did a quick test.
    Here are two tutorials on using the Action Wizard:
    How to work with Actions
    How to create and share Actions

  • Can I use CreatePDF to switch around the pages within a single pdf document that scanned wrong?

    I understand CreatePDF would allow me to combine documents into a single pdf file.  But, (1) can I move around (switch/correct the order of) pages within a single PDF file?  (2) Can I delete pages from a single file or a combined file?  (3) Once created, can I edit the file in any way?  If these services were available, I would likely subscribe.  I don't want to subscribe without knowing.

    Thanks for your reply.  Pardon my ignorance. Acrobat would allow me to move pages around? 
    Michele Haft Hudson, Esq.
    954-655-7020
    [email protected]
    This message was sent from my phone to expedite its delivery to you. Please excuse my brevity and any typographical errors. The content of this message is confidential and may be legally privileged. If you receive it in error, please notify me and delete it.  

  • How to combine pdf pages into a single pdf document

    I´ve done this before but I forgot. Can anyone help me?

    Hi profesora.2014.2015,
    Adobe Reader is a free trusted standard for reliably viewing, printing, and annotating PDF documents. It’s the only PDF file viewer that can open and interact with all types of PDF content, including forms and multimedia.
    In order to combine PDF pages into a single PDF file, you need to either use Adobe Acrobat (Merging and combining PDF files | Acrobat XI - Adobe India) or Adobe PDF pack (Reliably Create PDFs, Convert PDFs, & Merge PDFs Online | Adobe PDF Pack).

  • Linking to a specific page in a remote pdf document

    Hi all
    I need to know which tools, if any, will allow me to create a link that opens a remote pdf to a specific page.
    Thank you very much!
    Giordano

    Read this:
    http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_open_parameters.pdf

  • When I try to open any kind of links, the page first shows me "the document has moved" and then goes on to some advertisement page.

    When I follow any kind of links or try to open something in another window or new tab, the browser first shows the white page with text "the document has moved", and then moves to advertisement page of some sort. Usually in the small box where the page description is it says "Jump". I don't know how to disable it, it is really irritating.

    Sounds like Malware.
    Install, update, and run these programs in this order. '''''(Not all programs detect the same Malware.)''''' They are all free for personal use, but some have limited functionality in the "free mode" - but those are features you really don't need to find and remove the problem that you have.<br />
    ''Note: If your Malware infection is bad enough and you are mis-directed to URL's other than what is posted, you may have to use a different PC to download these programs and use a USB stick to transfer them to the afflicted PC.''
    Malwarebytes' Anti-Malware - [http://www.malwarebytes.org/mbam.php] <br />
    SuperAntispyware - [http://www.superantispyware.com/] <br />
    AdAware - [http://www.lavasoftusa.com/software/adaware/] <br />
    Spybot Search & Destroy - [http://www.safer-networking.org/en/index.html] <br />
    Windows Defender: Home Page - [http://www.microsoft.com/windows/products/winfamily/defender/default.mspx]
    If these don't find it or can't clear it, post in one of these forums for specialized malware removal help: <br />
    [http://www.spywarewarrior.com/index.php] <br />
    [http://forum.aumha.org/] <br />
    [http://www.spywareinfoforum.com/] <br />
    [http://bleepingcomputer.com]

Maybe you are looking for

  • HT4623 Sound and other problems with Ipad 3 after ios 6.1.3 update

    I purchased Ipad 3 last year and got problem of losing sound when I restored the Ipad throgh itunes. The sound came back automatically after I charged the device to 100%. Recently I got the same problem when the operating system was Ios 6.1.2 and the

  • How do I see action bar again in Adobe reader.

    I accidentally removed the action bar.  I do not know how to see it again.

  • Networking with LG Home Theater System

    I have an LG 47LW5600 TV and LHB976 Home Theater system. These are connected wirelessly via a Cisco Router to my Dell Laptop running Vista. I can readily access all my shared media files on the PC and display them on the TV. My problem now is that I

  • How to run eCATT in dialog mode(foreground) without user interaction(Enter)

    Hi,     As part of performance testing using eCATT we want to execute a test script in dialog mode(foreground) without user interaction like pressing enter at end of each screen. The reason behind this is we want to run a test script 1000 times in di

  • LMS 4.2 Performance Monitor

    Hi All. I have encountered an error while creating the new poller by selecting the interfacerror template. Is it the license limitation?? if license limitation how can i find out the current devices count in the performance monitor page ?? Find the a