You might be able to use a FA_Note_PostOpenDoc event and automatically change a document's position after it opens. You set it up something like this:
Notification (Constants.FA_Note_PostOpenDoc, true);
function Notify (note, object, sparam, iparam) {
var doc;
// Handle the event triggered after a document is opened.
switch (note) {
case Constants.FA_Note_PostOpenDoc:
doc = object;
// Do something with the document here.
break;
}
}
-Rick