cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to use Accelerated Life Testing (ALT) to evaluate reliability. Register for June 5 webinar, 2pm US Eastern Time.
Updating a released JSL script from the web
gf-tg
Level I

I needed a way to deploy a script to some coworkers without read permissions on any of the network drives I can write to. It turns out, the only common place I could find was a web server, but I couldn't find a JMP way of doing that -- so I wrote it.

 

Syntax:

updated_code=CheckForScriptUpdates("http://www.example.net:80/CodeUpdate.txt");
Eval(Parse(updated_code));

Recommended Articles