Disable overlay-opt-out option for all objects in a perspective view

You need to Shift+Right click on the View and then you can Paste Json. That’s how you should copy it as well.
I’ve marked the overlay opt out in a very basic flex View with a single Label and binding, below:

{
	"custom": {},
	"params": {},
	"props": {},
	"root": {
		"children": [
			{
				"meta": {
					"name": "Label"
				},
				"position": {
					"basis": "32px"
				},
				"propConfig": {
					"position.grow": {
						"binding": {
							"config": {
								"fallbackDelay": 2.5,
								"mode": "direct",
								"tagPath": "[default]Tag/Path"
							},
							"overlayOptOut": true,   <==== OVERLAY OPT OUT
							"type": "tag"
						}
					}
				},
				"props": {
					"text": "Label"
				},
				"type": "ia.display.label"
			}
		],
		"meta": {
			"name": "root"
		},
		"props": {
			"direction": "column"
		},
		"type": "ia.container.flex"
	}
}
1 Like