Not sure what type of button you want but if it’s like the Portal games then I think there’s a way to do it.
One way to do it would have the button and wires emit an object, which I’ll call energy, in four directions.
When the energy is created it’ll collide with the wire, when it does that the wire will also create energy in four directions to create a chain.
To prevent an infinite loop wires that have been powered will have a switch that’ll turn off after being powered on once.
When the button is no longer being pressed it’ll emit another object, which I’ll call anti-energy, in four directions.
Anti-energy will turn the switches back on allowing the buttons to be pressed again, to stop an infinite loop from happening you have a switch that turns off when it first collides with anti-energy and turn on when energy is passed through it.
For the door, when energy passes through it it’ll open and when anti-energy passes through it it’ll close.
If you just want it to only open once then just cut out the part that includes anti-energy.
Of course, this is just in theory so no guarantee it’ll work.