You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+29Lines changed: 29 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -416,6 +416,35 @@ This boilerplate is flavored for a single JSX object attached to helper object `
416
416
417
417
---
418
418
419
+
## Invisible Panels
420
+
421
+
To make one or more of your panels an invisible panel, aka hidden from the Extensions menu, make sure to leave the panelDisplayName as an empty string in `cep.config.ts`
422
+
423
+
```js
424
+
panels: [
425
+
{
426
+
mainPath:"./main/index.html",
427
+
name:"Invisible Bolt CEP",
428
+
panelDisplayName:"",
429
+
...
430
+
}
431
+
]
432
+
```
433
+
434
+
You'll want to ensure your panel can be launched from another panel with `csi.requestOpenExtension()` or with an auto-start event in `startOnEvents` in `cep.config.ts` event depending on the app:
435
+
436
+
```js
437
+
startOnEvents: [
438
+
"com.adobe.csxs.events.ApplicationActivate",
439
+
"com.adobe.csxs.events.ApplicationInitialized",
440
+
"applicationActivate",
441
+
],
442
+
```
443
+
444
+
Reference the [Adobe CEP Cookbook](https://github.com/Adobe-CEP/CEP-Resources/blob/master/CEP_11.x/Documentation/CEP%2011.1%20HTML%20Extension%20Cookbook.md) for more info on [invisible panels](https://github.com/Adobe-CEP/CEP-Resources/blob/master/CEP_11.x/Documentation/CEP%2011.1%20HTML%20Extension%20Cookbook.md#invisible-html-extensions) and [CEP events](https://github.com/Adobe-CEP/CEP-Resources/blob/master/CEP_11.x/Documentation/CEP%2011.1%20HTML%20Extension%20Cookbook.md#invisible-html-extensions)
445
+
446
+
---
447
+
419
448
## Troubleshooting Modules
420
449
421
450
Node.js Built-in modules can be imported from the `src/js/lib/node.ts` file.
0 commit comments