我尝试使用 HyperLink 打印 PDF,但没有成功
我有一个带有数据的锁定字段“etat”
数据格式如下:
代码 TAB Nom TAB 地址 TAB Ville 56 Eric rue caboteur ST NAZAIRE 87 Franc rue Midin ST brevin 等
第 3 项“地址”的 textStyle 设置为“链接和链接文本设置为“ http://maps.google.fr/maps?f=q&hl=fr&q=theadresse ”
当我单击“etat”字段中的超链接项目时,它工作正常
现在我希望在 PDF 中打印此字段后得到相同的结果
我使用此代码进行打印
on mouseUp
local theResult,thepDF
ask file "" with type "PDF file|pdf|PDF "
if it = "" then
exit mouseUp
end if
put it into thePDF
put the htmltext of fld "etat" into theResult
--set the fileType to "revoPDF "
open printing to pdf thePDF
revPrintField the name of field "etat"
--revPrintText theResult,"<%pageNumber%> of <%numPages%>","<%pageNumber%> of <%numPages%>",the long id of field "etat" of stack "CDH"
close printing
end mouseUp
我有一个带有点击字词的漂亮 PDF,但点击不会启动谷歌地图
字典说命令“打印链接”
“打印字段时,任何将其 linkText 属性与链接 textStyle 一起设置的文本都被视为已执行打印链接命令,该属性的内容为链接,文本的 formattedRect 为矩形。”
但是没有工作....我很头疼
感谢您帮助实现这一目标
埃里克