Skip to content

Pixso Plugin Issue Feedback

When you encounter an issue, you can provide reproducible code as described below to help with quick troubleshooting.


Run in Browser Console

Open the Pixso design page → press F12 → switch to Console → paste the entire code below and press Enter to run. Write only the logic that reproduces the issue inside main. When submitting feedback, include both the full code and console error output.

javascript
main = async () => {
  try {
    // Write your reproducible code below
    node = pixso.currentPage.selection[0];
    console.log(node);
  } catch (error) {
    console.log(error);
  }
};

code = `const main = ${main.toString()}; main();`;
_FicAppObj.runTestPlugin({ editorType: ["dev", "pixso"] }, code);

Feedback Template (copy and fill)

markdown
**Environment**: Pixso version / OS / Browser

**Issue**: (Brief description of the behavior)

**Steps to reproduce**: 1. … 2. … 3. …

**Expected**: … **Actual**: … (You may paste console errors)

**Reproducible code**: (Paste the full code based on the template above)

Submit via the project’s designated channel. Thank you for your feedback.