How can I open about 5 different url's on their own new-window using the system's browser in matlab?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I can do it using the web(url, -new) function, but I want to do this using the system's web browser (windows explorer).
When I call the web function over and over again, it merely creates a new tab in the existing window. But I want new windows created every time I call it.
How can I do this? Is there any other function (besides 'web') to do this?
Please let me know!!
Thank you.
0 Kommentare
Antworten (2)
Ryan Livingston
am 17 Jan. 2013
web(url, '-browser')
opens the page in the system browser. You can also run arbitrary DOS commands using the DOS function:
dos('explorer http://www.google.com/')
dos(['explorer ' url])
Check here:
for more info.
0 Kommentare
Jan
am 17 Jan. 2013
It will depend on the browser. E.g.:
system('firefox.exe -new-window www.mozilla.com')
system('firefox.exe -new-window www.google.com')
system('firefox.exe -new-window www.mathworks.com')
I'm not sure, if the Internet Explorer's "-noframemerging" does what you want.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!