Code: Select all
"Tag && Rename|C:\Program Files (x86)\tag-ren\TagRename.exe"
openwith "C:\Program Files (x86)\tag-ren\TagRename.exe";Thanks a lot for your testing.
Code: Select all
"Tag && Rename|C:\Program Files (x86)\tag-ren\TagRename.exe"
openwith "C:\Program Files (x86)\tag-ren\TagRename.exe";for open, <focitem> should be also removed from the line. thanks.admin wrote:Idea: try open instead of openwith.
Code: Select all
If (the item is tree case) {
}
else (the item is list case){
}
else { //category item
}paul0 wrote:![]()
Now it would work only for list item but not tree item. It requires the parameter <focitem> for the tree item.
I need to define the choice cases.
But I don't know how to specify the statement for "the item is tree case".Code: Select all
If (the item is tree case) { } else (the item is list case){ } else { //category item }
get("FocusedControl");
"A" for AddressBar, "T" for Tree, "C" for Catalog, "L" for List, "X" for other.
if (get("FocusedControl") == "T") { msg "Tree has the focus";}
Code: Select all
if (expression) {
statement;
}
elseif (expression) {
statement;
}
else {
statement;
}