Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@spcsp/scripts-plus
Advanced tools
Enhance the scripting capabilities of S+ with a rich module library.
Enhance the scripting capabilities of S+ with a rich module library.
Inspired by the simplicity of jQuery, there are 40+ modules that extend and enhance the scripting capabilities within action scripts.
Many common sp.xxxx
methods are wrapped to simplify their use and some wrapped together to create new tools.
Open the S+ console and in the script
tab & paste this command
SPPM.Install("@spcsp/scripts-plus");
and click ▶ Execute
Open the main interface of StrokesPlus
Global Actions
Load/Unload
tabvar $ = ScriptsPlus();
$.xxx
methods are available in any script context// wraps `sp.MessageBox()`
$.alert("Hello World!");
// wraps `new DisplayTextInfo()`
$.toast("Hello World!");
// wraps `sp.sp.ShowBalloonTip()`
$.balloon("Hello World!");
function getUserInput() {
var modal = $.dialog.create("Text Input Demo");
modal.show(input => $.alert(input, "Input"));
}
getUserInput();
var { addToMenu, addToSubMenu, menuItem, show } = $.popup;
var popup = $.popup.create();
var addToMainMenu = $.popup.addToMenu(popup);
var mastercam = menuItem("Mastercam");
var addToDemo = $.popup.addToSubMenu(mastercam);
addToDemo(menuItem("Hello World", `$.alert('Hello World')`));
addToDemo(menuItem("Taco Bell", `$.alert('Taco Bell')`));
addToDemo(menuItem("Is Good", `$.alert('Is Good')`));
addToMainMenu(mastercam);
addToMainMenu($.popup.spacer);
addToMainMenu($.popup.cancel);
show(popup);
FAQs
Enhance the scripting capabilities of S+ with a rich module library.
We found that @spcsp/scripts-plus demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.