{"id":2441,"date":"2012-11-02T16:09:54","date_gmt":"2012-11-02T07:09:54","guid":{"rendered":"http:\/\/www.ka-net.org\/blog\/?p=2441"},"modified":"2012-11-02T16:09:54","modified_gmt":"2012-11-02T07:09:54","slug":"office%e7%94%a8%e3%82%a2%e3%83%97%e3%83%aa%e3%81%a7%e3%81%afalert%e3%82%84confirm%e3%81%8c%e4%bd%bf%e3%81%88%e3%81%aa%e3%81%84%ef%bc%9f","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=2441","title":{"rendered":"Office\u7528\u30a2\u30d7\u30ea\u3067\u306falert\u3084confirm\u304c\u4f7f\u3048\u306a\u3044\uff1f"},"content":{"rendered":"<p>JavaScript\u3067\u30e1\u30c3\u30bb\u30fc\u30b8\u3084\u78ba\u8a8d\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u8868\u793a\u3059\u308b\u969b\u306b\u306f\u300c<strong>alert<\/strong>\u300d\u3084\u300c<strong>confirm<\/strong>\u300d\u3001\u300c<strong>prompt<\/strong>\u300d\u304c\u3088\u304f\u4f7f\u308f\u308c\u307e\u3059\u304c\u3001\u3053\u308c\u3089\u306fOffice\u7528\u30a2\u30d7\u30ea\u3067\u4f7f\u7528\u3067\u304d\u308b\u306e\u3067\u3057\u3087\u3046\u304b\uff1f<br \/>\n\u7c21\u5358\u306a\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3067\u30c6\u30b9\u30c8\u3057\u3066\u307f\u307e\u3059\u3002<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n    &lt;head&gt;\r\n        &lt;meta charset=&quot;UTF-8&quot;&gt;\r\n        &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=Edge&quot;&gt;\r\n        &lt;script src=&quot;http:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.7.2\/jquery.min.js&quot;&gt;&lt;\/script&gt;\r\n        &lt;script src=&quot;https:\/\/az88874.vo.msecnd.net\/api\/1.0\/office.js&quot;&gt;&lt;\/script&gt;\r\n        &lt;script&gt;\r\n            Office.initialize = function(reason){\r\n                $(document).ready(function(){\r\n                    Office.context.document.addHandlerAsync(Office.EventType.DocumentSelectionChanged, document_SelectionChanged);\r\n                });\r\n            }\r\n            function document_SelectionChanged(eventArgs) {\r\n                $(&quot;#result&quot;).val(eventArgs.type);\r\n                window.alert(&quot;aaa&quot;);\r\n                window.confirm(&quot;bbb&quot;);\r\n                window.prompt(&quot;ccc&quot;,&quot;ddd&quot;);\r\n            }\r\n        &lt;\/script&gt;\r\n    &lt;\/head&gt;\r\n    &lt;body&gt;\r\n        &lt;textarea id=&quot;result&quot; rows=&quot;4&quot; cols=&quot;30&quot;&gt;&lt;\/textarea&gt;\r\n    &lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n<p>\u4e0a\u8a18\u30b3\u30fc\u30c9\u306fSelectionChanged\u30a4\u30d9\u30f3\u30c8\u3092\u5229\u7528\u3057\u3066\u9078\u629e\u304c\u5909\u66f4\u3055\u308c\u305f\u3068\u304d\u306b\u51e6\u7406\u3092\u884c\u3046\u3082\u306e\u3067\u3059\u304c\u3001\u52d5\u4f5c\u3092\u78ba\u8a8d\u3057\u3066\u307f\u308b\u3068textarea\u3078\u306e\u66f8\u304d\u8fbc\u307f\u306f\u884c\u308f\u308c\u308b\u3082\u306e\u306e\u3001\u305d\u308c\u4ee5\u4e0b\u306e\u30b3\u30fc\u30c9\u306f\u5b9f\u884c\u3055\u308c\u306a\u3044\u3053\u3068\u304c\u5206\u304b\u308a\u307e\u3059\u3002<br \/>\n\u3069\u3046\u3084\u3089Office\u7528\u30a2\u30d7\u30ea\u3067\u306falert\u3084confirm\u3001prompt\u306f\u4f7f\u7528\u3067\u304d\u306a\u3044\u3088\u3046\u3067\u3059\u3002<\/p>\n<p>\u3068\u3044\u3063\u3066\u3082\u3001\u4e0b\u8a18\u30b3\u30fc\u30c9\u306e\u3088\u3046\u306bVBScript\u3092\u901a\u3057\u3066\u3057\u307e\u3048\u3070MsgBox\u3084InputBox\u3092\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u308b\u306e\u3067\u3001\u30c0\u30a4\u30a2\u30ed\u30b0\u3067\u7c21\u5358\u306b\u52d5\u4f5c\u3092\u78ba\u8a8d\u3057\u305f\u3044\u5834\u5408\u306b\u306f\u4e0b\u8a18\u306e\u3088\u3046\u306a\u65b9\u6cd5\u304c\u304a\u85a6\u3081\u3067\u3059\u3002<\/p>\n<pre class=\"brush: jscript; title: ; notranslate\" title=\"\">&lt;!DOCTYPE html&gt;\r\n&lt;html&gt;\r\n    &lt;head&gt;\r\n        &lt;meta charset=&quot;UTF-8&quot;&gt;\r\n        &lt;meta http-equiv=&quot;X-UA-Compatible&quot; content=&quot;IE=Edge&quot;&gt;\r\n        &lt;script src=&quot;http:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/1.7.2\/jquery.min.js&quot;&gt;&lt;\/script&gt;\r\n        &lt;script src=&quot;https:\/\/az88874.vo.msecnd.net\/api\/1.0\/office.js&quot;&gt;&lt;\/script&gt;\r\n        &lt;script&gt;\r\n            Office.initialize = function(reason){\r\n                $(document).ready(function(){\r\n                    Office.context.document.addHandlerAsync(Office.EventType.DocumentSelectionChanged, document_SelectionChanged);\r\n                });\r\n            }\r\n            function document_SelectionChanged(eventArgs) {\r\n                $(&quot;#result&quot;).val(eventArgs.type);\r\n                msgBoxVbs(&quot;eee&quot;, 3 + 64, &quot;fff&quot;);\r\n                inputBoxVbs(&quot;ggg&quot;, &quot;hhh&quot;, &quot;iii&quot;);\r\n            }\r\n        &lt;\/script&gt;\r\n        &lt;script language=&quot;vbscript&quot;&gt;\r\n            Function msgBoxVbs(prompt, buttons, title)\r\n                msgBoxVbs = MsgBox(prompt, buttons, title)\r\n            End Function\r\n            \r\n            Function inputBoxVbs(prompt, title, default)\r\n                inputBoxVbs = InputBox(prompt, title, default)\r\n            End Function\r\n        &lt;\/script&gt;\r\n    &lt;\/head&gt;\r\n    &lt;body&gt;\r\n        &lt;textarea id=&quot;result&quot; rows=&quot;4&quot; cols=&quot;30&quot;&gt;&lt;\/textarea&gt;\r\n    &lt;\/body&gt;\r\n&lt;\/html&gt;<\/pre>\n","protected":false},"excerpt":{"rendered":"JavaScript\u3067\u30e1\u30c3\u30bb\u30fc\u30b8\u3084\u78ba\u8a8d\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u8868\u793a\u3059\u308b\u969b\u306b\u306f\u300calert\u300d\u3084\u300cconfirm\u300d\u3001\u300cprompt\u300d\u304c\u3088\u304f\u4f7f\u308f\u308c\u307e\u3059\u304c\u3001\u3053\u308c\u3089\u306fOffice\u7528\u30a2\u30d7\u30ea\u3067\u4f7f\u7528\u3067\u304d\u308b\u306e\u3067\u3057\u3087\u3046\u304b\uff1f \u7c21\u5358\u306a\u30b5\u30f3\u30d7\u30eb\u30b3\u30fc\u30c9\u3067\u30c6\u30b9\u30c8 [&hellip;]","protected":false},"author":1,"featured_media":7119,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[130,4,79],"tags":[74,77],"class_list":["post-2441","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-apps-for-office","category-office","category-office2013","tag-office-2013","tag-apps-for-office"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"JavaScript\u3067\u30e1\u30c3\u30bb\u30fc\u30b8\u3084\u78ba\u8a8d\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u8868\u793a\u3059\u308b\u969b\u306b\u306f\u300calert\u300d\u3084\u300cconfirm\u300d\u3001\u300cprom\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"\u304d\u306c\u3042\u3055\"\/>\n\t<meta name=\"google-site-verification\" content=\"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48\" \/>\n\t<meta name=\"keywords\" content=\"office 2013,office \u7528\u30a2\u30d7\u30ea\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.ka-net.org\/blog\/?p=2441\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"ja_JP\" \/>\n\t\t<meta property=\"og:site_name\" content=\"\u521d\u5fc3\u8005\u5099\u5fd8\u9332 | Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Office\u7528\u30a2\u30d7\u30ea\u3067\u306falert\u3084confirm\u304c\u4f7f\u3048\u306a\u3044\uff1f | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta property=\"og:description\" content=\"JavaScript\u3067\u30e1\u30c3\u30bb\u30fc\u30b8\u3084\u78ba\u8a8d\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u8868\u793a\u3059\u308b\u969b\u306b\u306f\u300calert\u300d\u3084\u300cconfirm\u300d\u3001\u300cprom\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.ka-net.org\/blog\/?p=2441\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2012-11-02T07:09:54+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2012-11-02T07:09:54+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Office\u7528\u30a2\u30d7\u30ea\u3067\u306falert\u3084confirm\u304c\u4f7f\u3048\u306a\u3044\uff1f | \u521d\u5fc3\u8005\u5099\u5fd8\u9332\" \/>\n\t\t<meta name=\"twitter:description\" content=\"JavaScript\u3067\u30e1\u30c3\u30bb\u30fc\u30b8\u3084\u78ba\u8a8d\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u8868\u793a\u3059\u308b\u969b\u306b\u306f\u300calert\u300d\u3084\u300cconfirm\u300d\u3001\u300cprom\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2441#article\",\"name\":\"Office\\u7528\\u30a2\\u30d7\\u30ea\\u3067\\u306falert\\u3084confirm\\u304c\\u4f7f\\u3048\\u306a\\u3044\\uff1f | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"headline\":\"Office\\u7528\\u30a2\\u30d7\\u30ea\\u3067\\u306falert\\u3084confirm\\u304c\\u4f7f\\u3048\\u306a\\u3044\\uff1f\",\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/wp-content\\\/uploads\\\/eyecatch-OfficeAddins.png\",\"width\":790,\"height\":480},\"datePublished\":\"2012-11-02T16:09:54+09:00\",\"dateModified\":\"2012-11-02T16:09:54+09:00\",\"inLanguage\":\"ja\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2441#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2441#webpage\"},\"articleSection\":\"Office \\u30a2\\u30c9\\u30a4\\u30f3, Office\\u95a2\\u9023, Office 2013, Office 2013, Office \\u7528\\u30a2\\u30d7\\u30ea\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2441#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=4#listItem\",\"name\":\"Office\\u95a2\\u9023\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=4#listItem\",\"position\":2,\"name\":\"Office\\u95a2\\u9023\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=4\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=79#listItem\",\"name\":\"Office 2013\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=79#listItem\",\"position\":3,\"name\":\"Office 2013\",\"item\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=79\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2441#listItem\",\"name\":\"Office\\u7528\\u30a2\\u30d7\\u30ea\\u3067\\u306falert\\u3084confirm\\u304c\\u4f7f\\u3048\\u306a\\u3044\\uff1f\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=4#listItem\",\"name\":\"Office\\u95a2\\u9023\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2441#listItem\",\"position\":4,\"name\":\"Office\\u7528\\u30a2\\u30d7\\u30ea\\u3067\\u306falert\\u3084confirm\\u304c\\u4f7f\\u3048\\u306a\\u3044\\uff1f\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?cat=79#listItem\",\"name\":\"Office 2013\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\",\"name\":\"\\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Power Automate for desktop\\u3084Microsoft Office\\u958b\\u767a\\u306e\\u60c5\\u5831\\u304c\\u6e80\\u8f09\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1\",\"name\":\"\\u304d\\u306c\\u3042\\u3055\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2441#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/1c6237fc3012b3da1f36fa6435b2ccea656e2ff69a51f709c7d8352c69356dc3?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"\\u304d\\u306c\\u3042\\u3055\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2441#webpage\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2441\",\"name\":\"Office\\u7528\\u30a2\\u30d7\\u30ea\\u3067\\u306falert\\u3084confirm\\u304c\\u4f7f\\u3048\\u306a\\u3044\\uff1f | \\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"JavaScript\\u3067\\u30e1\\u30c3\\u30bb\\u30fc\\u30b8\\u3084\\u78ba\\u8a8d\\u30c0\\u30a4\\u30a2\\u30ed\\u30b0\\u3092\\u8868\\u793a\\u3059\\u308b\\u969b\\u306b\\u306f\\u300calert\\u300d\\u3084\\u300cconfirm\\u300d\\u3001\\u300cprom\",\"inLanguage\":\"ja\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2441#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/wp-content\\\/uploads\\\/eyecatch-OfficeAddins.png\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2441\\\/#mainImage\",\"width\":790,\"height\":480},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/?p=2441#mainImage\"},\"datePublished\":\"2012-11-02T16:09:54+09:00\",\"dateModified\":\"2012-11-02T16:09:54+09:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/\",\"name\":\"\\u521d\\u5fc3\\u8005\\u5099\\u5fd8\\u9332\",\"description\":\"Power Automate for desktop\\u3084Microsoft Office\\u958b\\u767a\\u306e\\u60c5\\u5831\\u304c\\u6e80\\u8f09\",\"inLanguage\":\"ja\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.ka-net.org\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Office\u7528\u30a2\u30d7\u30ea\u3067\u306falert\u3084confirm\u304c\u4f7f\u3048\u306a\u3044\uff1f | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"JavaScript\u3067\u30e1\u30c3\u30bb\u30fc\u30b8\u3084\u78ba\u8a8d\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u8868\u793a\u3059\u308b\u969b\u306b\u306f\u300calert\u300d\u3084\u300cconfirm\u300d\u3001\u300cprom","canonical_url":"https:\/\/www.ka-net.org\/blog\/?p=2441","robots":"max-image-preview:large","keywords":"office 2013,office \u7528\u30a2\u30d7\u30ea","webmasterTools":{"google-site-verification":"xy7uchdGM1SE5sADlVsdekXridA1vSaVWceffSwnE48","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ka-net.org\/blog\/?p=2441#article","name":"Office\u7528\u30a2\u30d7\u30ea\u3067\u306falert\u3084confirm\u304c\u4f7f\u3048\u306a\u3044\uff1f | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","headline":"Office\u7528\u30a2\u30d7\u30ea\u3067\u306falert\u3084confirm\u304c\u4f7f\u3048\u306a\u3044\uff1f","author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-OfficeAddins.png","width":790,"height":480},"datePublished":"2012-11-02T16:09:54+09:00","dateModified":"2012-11-02T16:09:54+09:00","inLanguage":"ja","mainEntityOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=2441#webpage"},"isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=2441#webpage"},"articleSection":"Office \u30a2\u30c9\u30a4\u30f3, Office\u95a2\u9023, Office 2013, Office 2013, Office \u7528\u30a2\u30d7\u30ea"},{"@type":"BreadcrumbList","@id":"https:\/\/www.ka-net.org\/blog\/?p=2441#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.ka-net.org\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=4#listItem","name":"Office\u95a2\u9023"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=4#listItem","position":2,"name":"Office\u95a2\u9023","item":"https:\/\/www.ka-net.org\/blog\/?cat=4","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=79#listItem","name":"Office 2013"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=79#listItem","position":3,"name":"Office 2013","item":"https:\/\/www.ka-net.org\/blog\/?cat=79","nextItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=2441#listItem","name":"Office\u7528\u30a2\u30d7\u30ea\u3067\u306falert\u3084confirm\u304c\u4f7f\u3048\u306a\u3044\uff1f"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=4#listItem","name":"Office\u95a2\u9023"}},{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?p=2441#listItem","position":4,"name":"Office\u7528\u30a2\u30d7\u30ea\u3067\u306falert\u3084confirm\u304c\u4f7f\u3048\u306a\u3044\uff1f","previousItem":{"@type":"ListItem","@id":"https:\/\/www.ka-net.org\/blog\/?cat=79#listItem","name":"Office 2013"}}]},{"@type":"Organization","@id":"https:\/\/www.ka-net.org\/blog\/#organization","name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","url":"https:\/\/www.ka-net.org\/blog\/"},{"@type":"Person","@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author","url":"https:\/\/www.ka-net.org\/blog\/?author=1","name":"\u304d\u306c\u3042\u3055","image":{"@type":"ImageObject","@id":"https:\/\/www.ka-net.org\/blog\/?p=2441#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/1c6237fc3012b3da1f36fa6435b2ccea656e2ff69a51f709c7d8352c69356dc3?s=96&d=mm&r=g","width":96,"height":96,"caption":"\u304d\u306c\u3042\u3055"}},{"@type":"WebPage","@id":"https:\/\/www.ka-net.org\/blog\/?p=2441#webpage","url":"https:\/\/www.ka-net.org\/blog\/?p=2441","name":"Office\u7528\u30a2\u30d7\u30ea\u3067\u306falert\u3084confirm\u304c\u4f7f\u3048\u306a\u3044\uff1f | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"JavaScript\u3067\u30e1\u30c3\u30bb\u30fc\u30b8\u3084\u78ba\u8a8d\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u8868\u793a\u3059\u308b\u969b\u306b\u306f\u300calert\u300d\u3084\u300cconfirm\u300d\u3001\u300cprom","inLanguage":"ja","isPartOf":{"@id":"https:\/\/www.ka-net.org\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=2441#breadcrumblist"},"author":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"creator":{"@id":"https:\/\/www.ka-net.org\/blog\/?author=1#author"},"image":{"@type":"ImageObject","url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-OfficeAddins.png","@id":"https:\/\/www.ka-net.org\/blog\/?p=2441\/#mainImage","width":790,"height":480},"primaryImageOfPage":{"@id":"https:\/\/www.ka-net.org\/blog\/?p=2441#mainImage"},"datePublished":"2012-11-02T16:09:54+09:00","dateModified":"2012-11-02T16:09:54+09:00"},{"@type":"WebSite","@id":"https:\/\/www.ka-net.org\/blog\/#website","url":"https:\/\/www.ka-net.org\/blog\/","name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332","description":"Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","inLanguage":"ja","publisher":{"@id":"https:\/\/www.ka-net.org\/blog\/#organization"}}]},"og:locale":"ja_JP","og:site_name":"\u521d\u5fc3\u8005\u5099\u5fd8\u9332 | Power Automate for desktop\u3084Microsoft Office\u958b\u767a\u306e\u60c5\u5831\u304c\u6e80\u8f09","og:type":"article","og:title":"Office\u7528\u30a2\u30d7\u30ea\u3067\u306falert\u3084confirm\u304c\u4f7f\u3048\u306a\u3044\uff1f | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","og:description":"JavaScript\u3067\u30e1\u30c3\u30bb\u30fc\u30b8\u3084\u78ba\u8a8d\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u8868\u793a\u3059\u308b\u969b\u306b\u306f\u300calert\u300d\u3084\u300cconfirm\u300d\u3001\u300cprom","og:url":"https:\/\/www.ka-net.org\/blog\/?p=2441","article:published_time":"2012-11-02T07:09:54+00:00","article:modified_time":"2012-11-02T07:09:54+00:00","twitter:card":"summary","twitter:title":"Office\u7528\u30a2\u30d7\u30ea\u3067\u306falert\u3084confirm\u304c\u4f7f\u3048\u306a\u3044\uff1f | \u521d\u5fc3\u8005\u5099\u5fd8\u9332","twitter:description":"JavaScript\u3067\u30e1\u30c3\u30bb\u30fc\u30b8\u3084\u78ba\u8a8d\u30c0\u30a4\u30a2\u30ed\u30b0\u3092\u8868\u793a\u3059\u308b\u969b\u306b\u306f\u300calert\u300d\u3084\u300cconfirm\u300d\u3001\u300cprom"},"aioseo_meta_data":{"post_id":"2441","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-24 07:04:55","updated":"2022-09-14 02:46:18","seo_analyzer_scan_date":null},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-OfficeAddins.png","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-Dn","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2441","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2441"}],"version-history":[{"count":3,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2441\/revisions"}],"predecessor-version":[{"id":2444,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/2441\/revisions\/2444"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/media\/7119"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2441"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2441"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2441"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}