Write to tag through an input label and button

Hi,

I am trying to write to a tag. First I created a popup in a parent project . The popup consists of an input textfield and a button. what I want is to write a number in the input field and press the button to write to the tag. That popup will show up in the main project when I press an icon . How do I do it? I do the tag binding by property binding

You should be passing the tag path (as a string) to the tag into the popup into a param on the View.

Bidirectionally bind a custom prop on the view, let's say view.custom.tagValue_RW, using an indirect tag binding to your tag path.

In your accept button, write a script that simply sets the value of your view.custom.tagValue_RW to the value in your numeric entry field.

Note: I would suggest that you also create a view.custom.newValue and bidirectionally bind the numeric entry field value to this. This means that you can move the numeric field around into groups etc and not have it affect the button script. Then in your script, get the value of the numeric field from the view.custom.newValue.