{"id":10862,"date":"2018-09-10T12:00:09","date_gmt":"2018-09-10T03:00:09","guid":{"rendered":"https:\/\/www.ka-net.org\/blog\/?p=10862"},"modified":"2018-09-10T15:02:25","modified_gmt":"2018-09-10T06:02:25","slug":"%e4%bb%a3%e6%9b%bf%e3%83%86%e3%82%ad%e3%82%b9%e3%83%88%e3%82%92%e5%89%8a%e9%99%a4%e3%81%99%e3%82%8bpowerpoint%e3%83%9e%e3%82%af%e3%83%ad","status":"publish","type":"post","link":"https:\/\/www.ka-net.org\/blog\/?p=10862","title":{"rendered":"\u4ee3\u66ff\u30c6\u30ad\u30b9\u30c8\u3092\u524a\u9664\u3059\u308bPowerPoint\u30de\u30af\u30ed"},"content":{"rendered":"<p>PowerPoint\u306e\u56f3\u3084SmartArt\u3001\u30b0\u30eb\u30fc\u30d7\u3084\u30b0\u30e9\u30d5\u3068\u3044\u3063\u305f\u8996\u899a\u7684\u306a\u30b3\u30f3\u30c6\u30f3\u30c4\u306b\u306f\u3001\u753b\u9762\u3092\u898b\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u30e6\u30fc\u30b6\u30fc\u5411\u3051\u306b\u3001\u305d\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u4f55\u306a\u306e\u304b\u3092\u793a\u3059\u300c<span style=\"color: #ff0000; font-weight: bold;\">\u4ee3\u66ff\u30c6\u30ad\u30b9\u30c8<\/span>\u300d(AlternativeText, alt text)\u3092\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/p>\n<p>PDF\u306b\u5909\u63db\u3059\u308b\u3068\u304d\u7b49\u3001\u3053\u306e\u4ee3\u66ff\u30c6\u30ad\u30b9\u30c8\u3092\u6b8b\u3057\u3066\u304a\u304d\u305f\u304f\u306a\u3044\u5834\u5408\u3082\u3042\u308b\u306e\u3067\u3001\u4e00\u62ec\u524a\u9664\u3059\u308b\u30de\u30af\u30ed\u3092\u66f8\u3044\u3066\u307f\u307e\u3057\u305f\u3002<\/p>\n<p><a href=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/DelAllAltText_01.jpg\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/DelAllAltText_01.jpg\" alt=\"\" width=\"577\" height=\"497\" class=\"alignnone size-full wp-image-10863\" srcset=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/DelAllAltText_01.jpg 577w, https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/DelAllAltText_01-300x258.jpg 300w\" sizes=\"auto, (max-width: 577px) 100vw, 577px\" \/><\/a><\/p>\n<pre class=\"brush: vb; title: ; notranslate\" title=\"\">Option Explicit\r\n\r\nPublic Sub DelAllAltText()\r\n'\u4ee3\u66ff\u30c6\u30ad\u30b9\u30c8\u3092\u4e00\u62ec\u524a\u9664\r\n  Dim prs As PowerPoint.Presentation\r\n  Dim sld As PowerPoint.Slide\r\n  Dim shp As PowerPoint.Shape\r\n  Dim tmp As PowerPoint.PpViewType\r\n  \r\n  Set prs = ActivePresentation\r\n  \r\n  '\u8868\u793a\u30e2\u30fc\u30c9\u3092\u300c\u6a19\u6e96\u300d\u306b\u3057\u3066\u51e6\u7406\u5b9f\u884c\r\n  If SlideShowWindows.Count &gt; 0 Then _\r\n    prs.SlideShowWindow.View.Exit '\u30b9\u30e9\u30a4\u30c9\u30b7\u30e7\u30fc\u8868\u793a\u306b\u306a\u3063\u3066\u3044\u305f\u3089\u89e3\u9664\r\n  With ActiveWindow\r\n    tmp = .ViewType '\u30a6\u30a3\u30f3\u30c9\u30a6\u306e\u8868\u793a\u30e2\u30fc\u30c9\u8a18\u61b6\r\n    .ViewType = ppViewNormal\r\n  End With\r\n  \r\n  For Each sld In prs.Slides\r\n    For Each shp In sld.Shapes\r\n      DelAltText shp\r\n    Next\r\n  Next\r\n  \r\n  ActiveWindow.ViewType = tmp '\u30a6\u30a3\u30f3\u30c9\u30a6\u306e\u8868\u793a\u30e2\u30fc\u30c9\u3092\u5143\u306b\u623b\u3059\r\n  MsgBox &quot;\u51e6\u7406\u304c\u7d42\u4e86\u3057\u307e\u3057\u305f\u3002&quot;, vbInformation + vbSystemModal\r\nEnd Sub\r\n\r\nPrivate Sub DelAltText(ByVal TargetShape As PowerPoint.Shape)\r\n'\u4ee3\u66ff\u30c6\u30ad\u30b9\u30c8\u306e\u524a\u9664\r\n  Dim grpShps As PowerPoint.GroupShapes\r\n  Dim shp As PowerPoint.Shape\r\n  \r\n  On Error Resume Next\r\n  Set grpShps = TargetShape.GroupItems\r\n  On Error GoTo 0\r\n  If grpShps Is Nothing Then\r\n    If Len(Trim(TargetShape.AlternativeText)) &gt; 0 Then\r\n      TargetShape.AlternativeText = &quot;&quot;\r\n    End If\r\n    If Len(Trim(TargetShape.Title)) &gt; 0 Then\r\n      TargetShape.Title = &quot;&quot;\r\n    End If\r\n  Else\r\n    For Each shp In grpShps\r\n      DelAltText shp\r\n    Next\r\n  End If\r\nEnd Sub<\/pre>\n<p>\u4e0a\u8a18\u30de\u30af\u30ed\u3092\u5b9f\u884c\u3059\u308b\u3068\u3001\u3059\u3079\u3066\u306e\u30b9\u30e9\u30a4\u30c9\u4e0a\u306b\u3042\u308b\u56f3\u3001SmartArt\u3001\u30b0\u30eb\u30fc\u30d7\u3001\u30b0\u30e9\u30d5\u3001\u57cb\u3081\u8fbc\u307f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u3001\u30d3\u30c7\u30aa\u3068\u3044\u3063\u305f\u30b3\u30f3\u30c6\u30f3\u30c4\u304b\u3089\u3001\u4ee3\u66ff\u30c6\u30ad\u30b9\u30c8\u3092\u524a\u9664\u3057\u307e\u3059\u3002<\/p>\n<p><a href=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/DelAllAltText_02.gif\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/DelAllAltText_02.gif\" alt=\"\" width=\"738\" height=\"388\" class=\"alignnone size-full wp-image-10864\" \/><\/a><\/p>\n<p>\u540c\u69d8\u306e\u30de\u30af\u30ed\u306f\u4e0b\u8a18\u30b5\u30a4\u30c8\u3067\u3082\u3059\u3067\u306b\u53d6\u308a\u4e0a\u3052\u3089\u308c\u3066\u3044\u307e\u3059\u3002<\/p>\n<div class=\"linkcard\"><div class=\"lkc-external-wrap\"><div class=\"lkc-unlink\"><div class=\"lkc-card\"><div class=\"lkc-info\"><div class=\"lkc-favicon\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.google.com\/s2\/favicons?domain=www.relief.jp\" alt=\"\" width=\"16\" height=\"16\" \/><\/div><div class=\"lkc-domain\">www.relief.jp<\/div><\/div><div class=\"lkc-content\"><figure class=\"lkc-thumbnail\"><img decoding=\"async\" class=\"lkc-thumbnail-img\" src=\"https:\/\/s.wordpress.com\/mshots\/v1\/https%3A%2F%2Fwww.relief.jp%2Fdocs%2Fpowerpoint-macro-remove-alternative-text.html?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">https:\/\/www.relief.jp\/docs\/powerpoint-macro-remove-alternative-text.html<\/div><div class=\"lkc-url\" title=\"https:\/\/www.relief.jp\/docs\/powerpoint-macro-remove-alternative-text.html\"><strike>https:\/\/www.relief.jp\/docs\/powerpoint-macro-remove-alternative-text.html<\/strike><\/div><\/div><div class=\"clear\"><\/div><\/div><\/div><\/div><\/div>\n<div class=\"linkcard\"><div class=\"lkc-external-wrap\"><a class=\"lkc-link no_icon\" href=\"http:\/\/tsubolog.c-brains.jp\/15\/05\/14-100000.php\" target=\"_blank\" rel=\"external nofollow noopener\"><div class=\"lkc-card\"><div class=\"lkc-info\"><div class=\"lkc-favicon\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.google.com\/s2\/favicons?domain=tsubolog.c-brains.jp\" alt=\"\" width=\"16\" height=\"16\" \/><\/div><div class=\"lkc-domain\">\u3064\u307c\u30ed\u30b0\u3002 | \u6a2a\u6d5c\u3067\u7ffb\u8a33\u696d\u52d9\u3092\u884c\u3046\u30b7\u30fc\u30d6\u30ec\u30a4\u30f3\u30b9\u30bf\u30c3\u30d5\u306b\u3088\u308b\u6280\u8853\u60c5\u5831\u30d6\u30ed\u30b0<\/div><\/div><div class=\"lkc-content\"><figure class=\"lkc-thumbnail\"><img decoding=\"async\" class=\"lkc-thumbnail-img\" src=\"https:\/\/s.wordpress.com\/mshots\/v1\/http%3A%2F%2Ftsubolog.c-brains.jp%2F15%2F05%2F14-100000.php?w=100\" width=\"100px\" height=\"108px\" alt=\"\" \/><\/figure><div class=\"lkc-title\">\u753b\u50cf\u306e\u4ee3\u66ff\u30c6\u30ad\u30b9\u30c8\u3092\u4e00\u62ec\u3067\u524a\u9664\u3059\u308bPowerPoint\u30de\u30af\u30ed | \u3064\u307c\u30ed\u30b0\u3002 | \u6a2a\u6d5c\u3067\u7ffb\u8a33...<\/div><div class=\"lkc-url\" title=\"http:\/\/tsubolog.c-brains.jp\/15\/05\/14-100000.php\">http:\/\/tsubolog.c-brains.jp\/15\/05\/14-100000.php<\/div><div class=\"lkc-excerpt\">\u753b\u50cf\u306e\u4ee3\u66ff\u30c6\u30ad\u30b9\u30c8\u3092\u4e00\u62ec\u3067\u524a\u9664\u3059\u308bPowerPoint\u30de\u30af\u30ed\u306e\u3054\u7d39\u4ecb\u3067\u3059\u3002<\/div><\/div><div class=\"clear\"><\/div><\/div><\/a><\/div><\/div>\n<div id=\"single_banner_area2\" class=\"clearfix one_banner\">\n<div class=\"single_banner single_banner_left\">\n<script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js\"><\/script>\r\n<!-- \u8a18\u4e8b\u4e2d(\u30c7\u30a3\u30b9\u30d7\u30ec\u30a4\u5e83\u544a\u30e6\u30cb\u30c3\u30c8) -->\r\n<ins class=\"adsbygoogle\"\r\n     style=\"display:block\"\r\n     data-ad-client=\"ca-pub-7306936664602087\"\r\n     data-ad-slot=\"5429724765\"\r\n     data-ad-format=\"auto\"\r\n     data-full-width-responsive=\"true\"><\/ins>\r\n<script>\r\n     (adsbygoogle = window.adsbygoogle || []).push({});\r\n<\/script>\n<\/div>\n<div class=\"single_banner single_banner_right\">\n<a href=\"\" target=\"_blank\"><img decoding=\"async\" src=\"\" alt=\"\" title=\"\" \/><\/a>\n<\/div>\n<\/div>\n\n","protected":false},"excerpt":{"rendered":"PowerPoint\u306e\u56f3\u3084SmartArt\u3001\u30b0\u30eb\u30fc\u30d7\u3084\u30b0\u30e9\u30d5\u3068\u3044\u3063\u305f\u8996\u899a\u7684\u306a\u30b3\u30f3\u30c6\u30f3\u30c4\u306b\u306f\u3001\u753b\u9762\u3092\u898b\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u30e6\u30fc\u30b6\u30fc\u5411\u3051\u306b\u3001\u305d\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u304c\u4f55\u306a\u306e\u304b\u3092\u793a\u3059\u300c\u4ee3\u66ff\u30c6\u30ad\u30b9\u30c8\u300d(AlternativeText, alt [&hellip;]","protected":false},"author":1,"featured_media":7126,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"[\u4ee3\u66ff\u30c6\u30ad\u30b9\u30c8\u3092\u524a\u9664\u3059\u308bPowerPoint\u30de\u30af\u30ed]","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[4,58],"tags":[],"class_list":["post-10862","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-office","category-powerpoint"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/www.ka-net.org\/blog\/wp-content\/uploads\/eyecatch-PowerPointVBA.png","jetpack_shortlink":"https:\/\/wp.me\/p4UZZr-2Pc","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/10862","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=10862"}],"version-history":[{"count":1,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/10862\/revisions"}],"predecessor-version":[{"id":10865,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/posts\/10862\/revisions\/10865"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=\/wp\/v2\/media\/7126"}],"wp:attachment":[{"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=10862"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=10862"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ka-net.org\/blog\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=10862"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}