SetForbiddenFrame
Force a frame to not be forbidden, allowing lua interactiosn on it
SetForbiddenFrame(frame): boolean
Example
Allow lua click on a frame like the mailbox to send gold
```lua if SecureTransferDialog.Button1 and SecureTransferDialog.Button1:IsShown() and SecureTransferDialog.Button1:IsVisible() then SetForbiddenFrame(SecureTransferDialog.Button1, false) SetForbiddenFrame(SecureTransferButton.Button1[0], false)
Eval("SecureTransferButton.Button1:Click()", "eval") end ```