cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
justvince
Level III

JMP Script to open web page

I am importing data from a web server, but it requires a secure log in before I can run my scripts to get the data from the server.  If I use the menus in JMP, for example <File> <Internet open> and then select {open as "Web Page"}, jmp will open the web page login screen and I can login, then start my scripts with calls to the server to get data.   All of my calls begin with something like Mydata_dt = open(http://severname.com);  I am omitting specific trailers for my data pulls here but...

My question is, can I have a script that actually starts with "internet open" where the open command opens a web page instead of trying to import data into a table? 

1 ACCEPTED SOLUTION

Accepted Solutions
ms
Super User (Alumni) ms
Super User (Alumni)

Re: JMP Script to open web page

The Web() function may do what you want:

Web( "http://www.jmp.com/", JMP window )

View solution in original post

2 REPLIES 2
ms
Super User (Alumni) ms
Super User (Alumni)

Re: JMP Script to open web page

The Web() function may do what you want:

Web( "http://www.jmp.com/", JMP window )

justvince
Level III

Re: JMP Script to open web page

Perfect!!  It works!  Thanks very much, this was not documented in my scripting guide book.