Hi,
I am sorry that we don’t support folder in range notation so far, but I provide a function to get the short name via the long name and folder name.
function string GetShortName(string strFolder, string strLongName){
pe_cd /%(strFolder$);
string strShortName$;
doc -ef W{
if(strLongName$ == page.longname$)
strShortName$ = %H;
}
return strShortName$;
}
With this function, for example, you can get the short name like:
string strName$ = GetShortName("Folder1", "MyBook")$;
strName$=;
Regards, Yuki