#5907
owilsky
Participant

Also you can write a macro that triggers when opening a file like this:

var r, re;
re = /foldername/i; //Create regular expression pattern
r = document.FullName.match(re); //Attempt match on search string.
if(r != null) document.ConfigName = “HTML”;