geturl.mac

来自「MATLAB中读写、处理科学数据文件格式NETCDF的程序」· MAC 代码 · 共 26 行

MAC
26
字号
--	geturl Get and store a URL for Matlab
--	geturl theURL theFilename

--	Version of long ago.
--	Updated    12-Oct-1999 22:30:05.

--	The following does not work:

--	set theApplication to "alba:WWW:Internet:Netscape:Netscape"
--	tell application theApplication

--	So, use the full path to Netscape explicitly.

tell application "alba:WWW:Internet:Netscape:Netscape"
	if theFilename is "" then
		activate
		GetURL theURL
		--		OpenURL theURL flags 1
	else
		GetURL theURL to file theFilename
		--		OpenURL theURL to file theFilename
		--		OpenURL theURL to file theFilename flags 1
		close window 1
	end if
end tell

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?