有人知道在BIRT报告设计器中是否有快捷键来运行/查看报告?
答案 0 :(得分:1)
ALT R R 然后按 Enter 在默认的Web查看器中运行。您也可以使用箭头键选择输出格式。
要查看其他快捷方式列表: CTRL + Shift + L 。
答案 1 :(得分:0)
按Alt,R,R,然后按Enter键即可。
这是一个自动热键代码片段,可使F5进行相同的操作:
#IfWinActive, ahk_exe eclipse.exe ;BIRT
;BIRT F5 to Run Web Viewer
F5::
Send {Alt}
Send r
Send r
Send {enter}
Return
#IfWinActive