display pdf in tooltip
#1
Posted 09 February 2012 - 11:16 AM
when I hover over an area, in the tooltip, the path of a pdf file is displayed
can I display the actual first page of that pdf in the tooltip?
thanks!
#2
Posted 09 February 2012 - 11:37 AM
hello!
when I hover over an area, in the tooltip, the path of a pdf file is displayed
can I display the actual first page of that pdf in the tooltip?
thanks!
To keep it simple : no.
#3
Guests
Posted 09 February 2012 - 12:00 PM
Now before you ask "how" or "any hints": I have no clue how to make such a thing.
#4
Posted 09 February 2012 - 12:06 PM
It means : extract the text from the PDF...
#5
Guests
Posted 09 February 2012 - 12:29 PM
#6
Guests
Posted 09 February 2012 - 12:30 PM
#7
Posted 09 February 2012 - 12:39 PM
#8
Posted 09 February 2012 - 01:38 PM
All of that to use PDF...
#9
Posted 09 February 2012 - 02:15 PM
And he asks in a "ToolTip"...
It means : extract the text from the PDF...
no, I mean to show the first page of the pdf when I hover over that area
#10
Posted 11 February 2012 - 10:49 PM
an old script to see pdf -files
<!-- m -->http://de.autohotkey... ... 8e47#65201<!-- m -->
thanks garry
how this script displays pdf files? it should use a pdf rendering library, right?
from a little research I did, MuPDF seems to be the fastest rendering app, so maybe using this to achieve this, will be faster?
#11
Posted 12 February 2012 - 08:39 AM
( small modifications to read also other extensions )
usually I use FoxitReader
TMR =c:\M_DOCTXT ;-- your path , here are files pdf / xps
EXT1 =pdf,xps
;......................
LV_Delete()
Loop, %tmr%\*.*, 0, 1
{
SplitPath,A_LoopFileFullPath, name, dir, ext, name_no_ext, drive
If Ext In %ext1%
LV_Add("",A_LoopFileName,A_LoopFileFullPath)
}
;......................
( I use FoxitReader )
<!-- m -->http://de.autohotkey... ... 8e47#65201<!-- m -->
#12
Posted 12 February 2012 - 04:48 PM
the pdf or xps files are in a folder , needs lbbrowse3.dll ( ahk_script downloads if not exist )
( small modifications to read also other extensions )
usually I use FoxitReaderTMR =c:\M_DOCTXT ;-- your path , here are files pdf / xps EXT1 =pdf,xps ;...................... LV_Delete() Loop, %tmr%\*.*, 0, 1 { SplitPath,A_LoopFileFullPath, name, dir, ext, name_no_ext, drive If Ext In %ext1% LV_Add("",A_LoopFileName,A_LoopFileFullPath) } ;......................
I cant find which part of the code exactly reads the pdf document
anyway, I am planning to use MuPDF, as the supposed fastest pdf rendering app, but to complete my project I need to:
1) identify whats under the cursor to trigger appropriately the MuPDF
2) load that specific pdf file to MuPDF
which commands do I need for each?
thanks!
#13
Posted 13 February 2012 - 08:27 PM
also isnt there a way to use on-hover events as triggers?
#14
Posted 02 June 2012 - 09:20 PM
is it possible?
#15
Guests
Posted 02 June 2012 - 10:19 PM
<!-- m -->http://www.autohotke... ... ctingfiles<!-- m -->




