0

文章http://runrev.com/newsletter/june/issue135/newsletter4.php展示了如何在文本字段中显示表格。是否也可以显示内嵌图像?

4

2 回答 2

1

您必须弄乱该字段的 htmltext 才能插入在线图像,但可以这样做。将字段的htmltext放入一个变量中,然后插入一行html,如

put "<img src=" & quote & "http://www.site.com/image.png" & quote & ">" after line x of tHtmlText

然后将字段的htmltext设置回tHtmlText

于 2013-04-19T23:33:21.730 回答
0

如果图像在您的堆栈中,您可以使用

put "%" into fld 1
set the imageSource of char 1 of fld 1 to 1014

其中 % 是任意字符,1014 是任意图像的图像 ID。您可以设置字段中任何字符的 imageSource。

于 2013-04-20T08:33:05.433 回答