Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #targetengine "pinnacleProofTool"
- var win = new Window("palette", "Pinnacle Proof Tool v0.1", undefined, {resizeable: true});
- win.orientation = "column";
- win.alignChildren = "fill";
- // Example UI Elements
- var btn = win.add("button", undefined, "Click Me");
- btn.onClick = function () {
- alert("Button Clicked!");
- };
- // Show the window
- win.show();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement