Skip to content

Instantly share code, notes, and snippets.

View zlovatt's full-sized avatar

Zack Lovatt zlovatt

View GitHub Profile
@zlovatt
zlovatt / aeq-listbox.js
Created October 13, 2020 19:06
Example script for creating a listbox via aequery
(function () {
// Set path below to your aeq.js path
//@include "path/to/aequery.js"
function createPanel() {
var win = aeq.ui.createWindow("Listbox Test");
var pnl = win.addPanel("List");
pnl.set({
orientation: "row",
@zlovatt
zlovatt / CEP Debugging in vscode.md
Last active February 23, 2023 07:54
CEP Debugging in vscode

Setup

  • in .vscode folder in your project root, create a file launch.json
{
  "version": "0.1.0",
  "configurations": [
    {
      "name": "[Your Tool] Debugger",
 "type": "chrome",