|
如题
想把下面这个脚本中ld_path的值
# LiveUpdate登入
static ld_path = "D:\\Program Files\\Mercury Interactive\\新建文件夹\登入\liveupdate登入\LiveUpdate.GUI";
call "D:\\Program Files\\Mercury Interactive\\新建文件夹\\登入\\loadGUI"();
win_wait_info("LiveUpdate","enabled",1,30);
set_window ("LiveUpdate", 1);
button_press ("开始");
GUI_unload(ld_path);
传到被它所CALL的"D:\\Program Files\\Mercury Interactive\\新建文件夹\\登入\\loadGUI"(); 这个脚本中
public function report_load_gui(ld)
{
auto i,file[],n;
GUI_unload_all();
GUI_load(ld);
GUI_list_map_buffers(file,n);
for(i in file)
{
i=i;
}
if(file != ld || file == "")
{
report_msg("Cannot load GUI.");
texit;
}
else
{
report_msg("load GUI OK.");
}
}
report_load_gui(ld_path);#调用函数report_load_gui
应该在代码中补充什么呢?
请高手指点迷津!
[ 本帖最后由 lyu林 于 2007-4-5 18:14 编辑 ] |
|