Hello !!
I need to display a text when mouse stands over a text or object
this can be done when you make a hyperlink, but it is limited
also I am asking how can I make hyperlink to a certain page in pdf
thank you
Hello !!
I need to display a text when mouse stands over a text or object
this can be done when you make a hyperlink, but it is limited
also I am asking how can I make hyperlink to a certain page in pdf
thank you
If this can be done, methinks one would need to hook the MouseHover Event.
HTH
"Potential has a shelf life." - Margaret Atwood
can you please show a smal code example for a line shows a tip
I may be misreading your request, but linking to a page in a pdf has nothing to do with tooltips. If you can't get the a hyperlink to work, you won't be able to get a tooltip to work. Also, tooltips are not interactive. They're read-only. Hyperlinks can open more than just a webpage. They can open to a bookmark on the webpage. You need to find out if you the pdf format allows linking to a page number or bookmark. I suspect it does, because most pdf readers can open the file to the last page you were on when you last viewed the file. I know my iPhone can. Visit Adobe.com and you should be able to get the info you need to create the proper hyperlink.
Perhaps I should ask, what is "limited" about hyperlinks that you think you can accomplish with hovering? There are a few apps on Autodesk Exchange that do tooltips. Some also come with the source code.
C:> ED WORKING.... ▒
Firstly, I'd like to say that I agree with Ed's comments.
Second, only as you specifically asked for an example:
Providing information on AutoCAD objects in a tooltip using .NET
"Potential has a shelf life." - Margaret Atwood
This document gives you what you need to link to a spot in a pdf.
Samples from the linked doc:
- http://mydocs/doc.pdf#nameddest=Chapter6
- http://mydocs/doc.pdf#page=3
- http://mydocs/doc.pdf#page=3&zoom=200,250,100
- http://mydocs/doc.pdf#zoom=50
- http://mydocs/doc.pdf#page=72&view=fitH,100
- http://mydocs/doc.pdf#view=fitb&nameddest=Chapter3
- http://mydocs/doc.pdf#pagemode=none
- http://mydocs/doc.pdf#pagemode=bookmarks&page=2
- http://mydocs/doc.pdf#page=3&pagemode=thumbs
C:> ED WORKING.... ▒