cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Submit your abstract to the call for content for Discovery Summit Americas by April 23. Selected abstracts will be presented at Discovery Summit, Oct. 21- 24.
Discovery is online this week, April 16 and 18. Join us for these exciting interactive sessions.
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.