jacksboy 发表于 2009-1-2 16:28:15

JAVA脚本里怎么调用INIT()方法里的变量

如果要在ACTION()方法里调用INIT()方法里的变量,怎么写?
比如:
Action()方法中:
Actions.init().i这样写么

yetties2005 发表于 2009-1-2 22:01:06

没有这样写过。不过你可以在LR里调用自己写的DLL。
在DLL里可以写自己想要实现的东东。

qunce.liu 发表于 2009-1-4 22:18:49

在 class Action里面定义一个类的内部变量,
然后在init()方法中赋值
然后在action()方法中调用即可
如下:
public class Actions
{
        String s;
        public int init() throws Throwable {
                    s="test1";
                return 0;
        }//end of init


        public int action() throws Throwable {
                    lrapi.lr.output_message(s);
                return 0;
        }//end of action


        public int end() throws Throwable {
                return 0;
        }//end of end
}
页: [1]
查看完整版本: JAVA脚本里怎么调用INIT()方法里的变量