Hello, I'm a user who enjoys using Directory Opus 13. I'm writing to report some bugs I've encountered and to suggest a new feature.
1. Bug Report: Core Scripting Objects/Methods are Inaccessible
While creating a JScript Add-in, I discovered that several core scripting functionalities are not working.
The Problem: When calling the following functions within a script, it fails with the error "Object doesn't support this property or method (0x800a01b6)" or "'undefined' is null or not an object (0x800a138f)".
- Dialogs:
scriptCmdData.func.Dlg.GetString()
orGetMultiChoice()
- File System Access:
DOpus.FSUtil()
- Clipboard Control:
DOpus.SetClip()
This makes it impossible to create most useful scripts that require any form of UI interaction or file access.
Additional Bug: Furthermore, there seems to be a specific issue with the SetAttr
command, even when used as a simple User Command.
SetAttr META "comment:test"
-> Works correctly.SetAttr META "keywords:+test"
-> Fails with a "Meta parsing error."- However, editing keywords manually via the GUI in the metadata pane works perfectly fine.
This suggests a specific bug in how the SetAttr
command handles the keywords
field.
2. Feature Request: Lightroom-style Tag (Keyword) Editor
I'd like to suggest an improvement to the current keyword editing workflow, inspired by Adobe Lightroom's convenient tagging system.
Desired Functionality:
- Keyword Suggestions & Autocomplete: When I start typing in the 'Keywords' field of the metadata pane, a dropdown list should appear, suggesting keywords that match my input. This list would be populated from a predefined list or from existing keywords.
- Click to Add: I could then simply click on a keyword from the suggestion list to add it to the file.
- External List File Integration: It would be incredibly useful if this keyword suggestion list could be sourced from an external
.txt
file (e.g.,D:\MyTags.txt
). This would allow users to easily manage their master keyword list without having to edit a script.
Implementing these features would be a massive help for organizing photos and files. Thank you for your time and for this great software.
Or is there a similar feature or a manual that I can refer to as a manual? I coded with Ai, but I surrendered both Chet GPT and Gemini. So I'm very sad. If you have a script or manual that does a similar function, please let me know. Thank you.