是不是要把“TestStopStand.pdf”参数化?怎么参数化?作者: zhenhaiou 时间: 2005-9-30 14:45
data->xx driver wizard作者: johngan 时间: 2005-9-30 15:03
是数据驱动吧~,我要把每个文件的名字写上去才行~,如果文件数量很大,自动地打开指定的盘或是目录下的所有PDF文件该如何做?作者: zhenhaiou 时间: 2005-9-30 15:08
list_select_item ("查找范围(I):_1", "TestStopStand.pdf");
那这个函数的参数不用文件名,用数字,list_select_item可以选取列表中第n个选项作者: johngan 时间: 2005-9-30 15:27
如何用数字?作者: zhenhaiou 时间: 2005-9-30 15:36
list_select_item ("查找范围(I):_1", 1);
直接该成数字就好了,好像是这样,记不清了,你看下帮助吧作者: johngan 时间: 2005-9-30 15:51
The list_select_item function selects (single-clicks) an item from a list. The item can be denoted by its name or numeric index. The index is specified as a string preceded by the character #. The first item in a list is numbered 0. For instance, the third item in a list is represented as "#2".
是#+数字吗?
Error: Operation currently not valid for the object.”
怎么回事?作者: zhenhaiou 时间: 2005-9-30 16:19
list_select_item ("查找范围(I):_1", #0);
这个函数是从0开始计数的,第一条记作#0,第二条#1,依此类推
使用这个的时候,要保证有足够多的可选项
[ Last edited by zhenhaiou on 2005-9-30 at 16:21 ]作者: johngan 时间: 2005-9-30 16:28
我是那做的啊,数字应该没有错。是有足够多的可选项的~
for(i=5;i<8;i++)
{
# Foxit Reader Pro 1.3 Beta
set_window ("Foxit Reader Pro 1.3 Beta", 2);
menu_select_item ("File;Open... Ctrl+O");