「Gz:inethelp」の版間の差分
編集の要約なし |
編集の要約なし |
||
6行目: | 6行目: | ||
; 機能 | ; 機能 | ||
: | : domain で指定した ウェブサイト中にある、path の URLを OS の標準ブラウザで開く | ||
41行目: | 41行目: | ||
関連事項 | 関連事項 | ||
* [[help]] | * [[help]] | ||
* [[gz:hhelp]] | |||
* [[gz:inethelp]] | * [[gz:inethelp]] | ||
[[Category:GZ-LIB|ヘルプ]] | [[Category:GZ-LIB|ヘルプ]] | ||
[[Category:AutoLISP]] | [[Category:AutoLISP]] |
2021年8月7日 (土) 08:19時点における最新版
- 構文
- (gz:inethelp domain' path)
- 機能
- domain で指定した ウェブサイト中にある、path の URLを OS の標準ブラウザで開く
- 引数
-
- domain:ヘルプサイトのドメイン(末尾の / は不要)
- path :ヘルプサイト中にあるドメイン以降の URL を指定(先頭の / は不要)
- 戻り値
- nil
- memo
インターネットに接続できる環境になっている前提の機能です。 path 引数の拡張子の補完はありません。
- サンプル
; "https://gztools.zendesk.com/hc/ja/articles/360029031492" の URL を開く場合 (gz:inethelp "https://gztools.zendesk.com" "hc/ja/articles/360029031492") ; 言語ごとに表示ページを変えたりとか。 (setq lang "/hc/ja" section "/article/") ; 日本語用のページを表示 (setq lang "/hc/en-us" section "/article/") ; 英語用のページを表示 (gz:inethelp "https://gztools.zendesk.com" (strcat lang section "360029031492")) ; Google 検索したりとか (gz:inethelp "https://www.google.com/search?q=" "ギズモツール"))
関連事項