我的livecode项目中需要一个airprint按钮。(为ipad ios 7开发)。 请帮帮我
答案 0 :(得分:1)
我刚刚使用随SDK提供的示例代码测试了rreHardCopy外部,并且打印弹出窗口按预期显示 -
on mouseUp
local tPDFFile
put specialFolderPath("Documents") & slash & "test.pdf" into tPDFFile
delete file tPDFFile
open printing to pdf tPDFFile
print this card
close printing
rreHardcopyPrintPDF tPDFFile, "Test PDF Print"
answer "PrintPDF returned" && the result
end mouseUp
在模拟器和物理设备上都进行了测试。
可以在此处找到指向外部构建的链接 -
http://techsupport.on-rev.com/sostacks/rrehardcopy%20DEVICE.zip
http://techsupport.on-rev.com/sostacks/rrehardcopy%20SIMULATOR.zip
答案 1 :(得分:0)
如果您已编译外部并将其包含在项目中,这应该可以使用:
on mouseUp
rreHardcopyPrintPDF
end mouseUp
如果您在编译或包含外部问题时遇到问题,请明确说明您到目前为止所做的工作。