-
Apologize in advance if this has been answered elsewhere, I wasn't able to find an answer to my question. I'd like to know how to present the user with a form window that dynamically loads an extra text input field depending on the users input to a previous input field. So for example, if the users response to input_field_1 is "Other", the second input field is generated within the existing form window allowing the user to provide text input which can then be handled accordingly. Is there an easy way to do this via the binaryninja API, or would this require JS? Any ideas or thoughts help. For context, I'm writing a Python plugin and am currently using the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
So this is much more complicated than Binary Ninja's Core's simple "interaction" API allows. You would need to write some QT code and use the binaryninjaui API. There are some examples of using this in the examples directory. |
Beta Was this translation helpful? Give feedback.
So this is much more complicated than Binary Ninja's Core's simple "interaction" API allows. You would need to write some QT code and use the binaryninjaui API. There are some examples of using this in the examples directory.