{"id":5185,"date":"2016-10-24T13:19:50","date_gmt":"2016-10-24T13:19:50","guid":{"rendered":"http:\/\/evolphin.com\/help\/?p=5185"},"modified":"2016-10-24T13:19:50","modified_gmt":"2016-10-24T13:19:50","slug":"executing-scripts-from-asset-browser","status":"publish","type":"post","link":"https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/","title":{"rendered":"Executing Scripts From Asset Browser"},"content":{"rendered":"<p>From <span class=\"keyword\">Zoom 6.0<\/span> and above, right-click context menu in Asset Browser can be customized to invoke the pre-configured scripts.<\/p>\n<h2><span style=\"font-size: 18pt;\">Brief:<\/span><\/h2>\n<p><span style=\"font-weight: 400;\">Automation is beneficial for Zoom users by allowing them to take mundane tasks and automate them using scripts. Currently, in Zoom, we have support for automation scripts using the Workflow functionality on the Zoom Server. However, there may be instances where we may have to accomplish tasks that require\u00a0a combination of information from Zoom repository, as well as the locally installed software (like Adobe tools etc.) or access to physical files located on the client machine. For these requirements, executing scripts on the server alone may not suffice.\u00a0\u00a0<\/span><\/p>\n<p><strong><span style=\"font-weight: 400;\">To help alleviate this issue, Zoom has put together a framework from within which users can invoke and run pre-configured scripts on their local client machines. This\u00a0feature lends itself nicely to enhance the already rich repertoire of tasks that Zoom provides, by providing custom actions\u00a0that can be executed on Zoom assets much the same as any other operation from the context menu in the Asset Browser.\u00a0<\/span><\/strong><\/p>\n<p>Through the configurable options, users can add items in the context menu. On right click after selecting any assets in Asset Browser, users will see these &#8220;action items&#8221; in the context menu and on click to any of these menu options, the corresponding configured script gets launched. The script will receive the asset ID and the name of the selected asset as the argument to the script.<\/p>\n<p><span style=\"font-size: 18pt;\">Steps To Add Scripts In Context Menu :<\/span><\/p>\n<ul>\n\t<li><span class=\"command\">Create<\/span> <span class=\"keyword\">ScriptExecutorSpec.xml<\/span> in $HOME\/.zm\n<div class=\"example\">\/Users\/joe\/.zm\/ScriptExecutorSpec.xml<\/div>\n<\/li>\n\t<li><span class=\"command\">Put<\/span> the below XML content in the <span class=\"keyword\">ScriptExecutorSpec.xml<\/span><\/li>\n<\/ul>\n<div style=\"padding-left: 40px;\">\n<pre>   &lt;?xml version=\"1.0\" encoding=\"utf-8\"?&gt;\n     &lt;automatorspec&gt;\n      &lt;filetypes id=\"common\"&gt;\n       &lt;ext&gt;jpg&lt;\/ext&gt;\n       &lt;ext&gt;png&lt;\/ext&gt;\n      &lt;\/filetypes&gt;\n      &lt;filetypes id=\"animating\"&gt;\n       &lt;ext&gt;gif&lt;\/ext&gt;\n      &lt;\/filetypes&gt;\n     &lt;filetypes id=\"raw\"&gt;\n      &lt;ext&gt;cr2&lt;\/ext&gt;\n      &lt;ext&gt;nef&lt;\/ext&gt;\n      &lt;ext&gt;crw&lt;\/ext&gt;\n     &lt;\/filetypes&gt;\n     &lt;filetypes id=\"adobe\"&gt;\n      &lt;ext&gt;psd&lt;\/ext&gt;\n      &lt;ext&gt;c4d&lt;\/ext&gt;\n      &lt;ext&gt;indd&lt;\/ext&gt;\n     &lt;\/filetypes&gt;\n    &lt;script name=\"DateInfo\" path=\"\/Users\/pawan\/scripts\/print_date.sh\" scope=\"CP\" filetype=\"common\"&gt;\n    &lt;\/script&gt;\n    &lt;script name=\"ExtractMetadata\" path=\"\/Users\/pawan\/scripts\/SysInfo.sh\" scope=\"CP\" filetype=\"common\"&gt;\n    &lt;\/script&gt;\n    &lt;script name=\"Notification\" path=\"\/Users\/pawan\/scripts\/send-notification.sh\" scope=\"CP\"  filetype=\"common\"&gt;\n    &lt;\/script&gt;\n    &lt;script name=\"Transcoding\" path=\"\/Users\/pawan\/scripts\/transcoding.sh\" scope=\"CP\" filetype=\"common\"&gt;\n    &lt;\/script&gt;\n    &lt;script name=\"Archive\" path=\"\/Users\/pawan\/scripts\/archive.sh\" scope=\"CP\" filetype=\"common\"&gt;\n    &lt;\/script&gt;\n    &lt;script name=\"Automation2\" path=\"\/Users\/pawan\/scripts\/SysInfo.sh\" scope=\"CP\" filetype=\"animating\"&gt;\n    &lt;\/script&gt;\n    &lt;script name=\"Automation3\" path=\"\/Users\/pawan\/scripts\/MyTaskDetails.sh\" scope=\"CP\" filetype=\"adobe\"&gt;\n    &lt;\/script&gt;\n    &lt;script name=\"Automation4\" path=\"\/Users\/pawan\/scripts\/CreateJobs.sh\" scope=\"CP\" filetype=\"raw\"&gt;\n    &lt;\/script&gt;\n    &lt;script name=\"Automation5\" path=\"\/Users\/pawan\/scripts\/PublishAssets.sh\" scope=\"CP\" filetype=\"adobe\"&gt;\n    &lt;\/script&gt;\n &lt;\/automatorspec&gt;<\/pre>\n<\/div>\n<p>\u00a0 \u00a0 \u00a0 \u00a0\u00a0<a href=\"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2016\/10\/Script_Automator.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-large wp-image-5194\" src=\"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2016\/10\/Script_Automator-1024x713.png\" alt=\"Script_Automator\" width=\"835\" height=\"581\" \/><\/a><\/p>\n<p>In the above example, we have added 5 new items in the\u00a0context menu for <span class=\"keyword\">PNG file type<\/span> which are executing different scripts.<\/p>\n<p><span style=\"font-size: 18pt;\">Understanding the Tags in Detail :<\/span><\/p>\n<div>\n<pre>automatorspec --&gt; This is the main header tag of script. All tags should come under this.\n  filetypes --&gt; Use to create a single tag for the group of file\n  types which need to execute a common script.\n    Attributes:\n      id -&gt; Use to give id to the defined file type tag.\n    Sub-Tags:\n      ext -&gt; file extension to put under filetypes tag\n  script --&gt; Tag to specify script info\n    Attributes:\n      name -&gt; \u00a0Name of the context menu visible in Visual Asset\n      Browser\n      path \u00a0-&gt; Script location on the disk\n      scope -&gt; Scope where the script would be executed, will default\n      to CP (clientproxy)\n      filetype -&gt; Specify the filetype tag id to which script need to\n      be bind. So in Asset Browser it will be visible for all the\n      types present under filetype tag of specified id.<\/pre>\n<\/div>\n<div>\u00a0<\/div>\n<div><span style=\"font-size: 18pt;\">Sample Script with an Output file<\/span>\n<pre> Script say test.sh:\n      #! \/bin\/sh\n       echo \"Script Execution time is: $(date)\"  &gt;&gt;$HOME\/Desktop\/args.txt\n        for arg in \"$@\"\n        do\n          echo \"$arg\" &gt;&gt; $HOME\/Desktop\/args.txt\n        done\n  OutFile $HOME\/Desktop\/args.txt:\n     Script Execution time is: Mon Nov  7 09:16:19 IST 2016\n      name\n      Holiday.png\n      fuid\n      1941\n<\/pre>\n<\/div>\n\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>From Zoom 6.0 and above, right-click context menu in Asset Browser can be customized to invoke the pre-configured scripts. Brief: Automation is beneficial for Zoom users by allowing them to take mundane tasks and automate them using scripts. Currently, in Zoom, we have support for automation scripts using the Workflow functionality on the Zoom Server. [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[23],"tags":[142,12],"class_list":["post-5185","post","type-post","status-publish","format-standard","hentry","category-vab","tag-scripts","tag-zoom-6"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Executing Scripts From Asset Browser - Evolphin Documentation<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Executing Scripts From Asset Browser - Evolphin Documentation\" \/>\n<meta property=\"og:description\" content=\"From Zoom 6.0 and above, right-click context menu in Asset Browser can be customized to invoke the pre-configured scripts. Brief: Automation is beneficial for Zoom users by allowing them to take mundane tasks and automate them using scripts. Currently, in Zoom, we have support for automation scripts using the Workflow functionality on the Zoom Server. [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/\" \/>\n<meta property=\"og:site_name\" content=\"Evolphin Documentation\" \/>\n<meta property=\"article:published_time\" content=\"2016-10-24T13:19:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2016\/10\/Script_Automator-1024x713.png\" \/>\n<meta name=\"author\" content=\"Rahul Bhargava\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rahul Bhargava\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/using-zoom\\\/vab\\\/executing-scripts-from-asset-browser\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/using-zoom\\\/vab\\\/executing-scripts-from-asset-browser\\\/\"},\"author\":{\"name\":\"Rahul Bhargava\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#\\\/schema\\\/person\\\/e5f3dc53ac5f026ed258e224e75447f7\"},\"headline\":\"Executing Scripts From Asset Browser\",\"datePublished\":\"2016-10-24T13:19:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/using-zoom\\\/vab\\\/executing-scripts-from-asset-browser\\\/\"},\"wordCount\":309,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/using-zoom\\\/vab\\\/executing-scripts-from-asset-browser\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/evolphin.com\\\/help\\\/wp-content\\\/uploads\\\/2016\\\/10\\\/Script_Automator-1024x713.png\",\"keywords\":[\"scripts\",\"zoom 6\"],\"articleSection\":[\"Asset Browser\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/evolphin.com\\\/help\\\/using-zoom\\\/vab\\\/executing-scripts-from-asset-browser\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/using-zoom\\\/vab\\\/executing-scripts-from-asset-browser\\\/\",\"url\":\"https:\\\/\\\/evolphin.com\\\/help\\\/using-zoom\\\/vab\\\/executing-scripts-from-asset-browser\\\/\",\"name\":\"Executing Scripts From Asset Browser - Evolphin Documentation\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/using-zoom\\\/vab\\\/executing-scripts-from-asset-browser\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/using-zoom\\\/vab\\\/executing-scripts-from-asset-browser\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/evolphin.com\\\/help\\\/wp-content\\\/uploads\\\/2016\\\/10\\\/Script_Automator-1024x713.png\",\"datePublished\":\"2016-10-24T13:19:50+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/using-zoom\\\/vab\\\/executing-scripts-from-asset-browser\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/evolphin.com\\\/help\\\/using-zoom\\\/vab\\\/executing-scripts-from-asset-browser\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/using-zoom\\\/vab\\\/executing-scripts-from-asset-browser\\\/#primaryimage\",\"url\":\"https:\\\/\\\/evolphin.com\\\/help\\\/wp-content\\\/uploads\\\/2016\\\/10\\\/Script_Automator-1024x713.png\",\"contentUrl\":\"https:\\\/\\\/evolphin.com\\\/help\\\/wp-content\\\/uploads\\\/2016\\\/10\\\/Script_Automator-1024x713.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/using-zoom\\\/vab\\\/executing-scripts-from-asset-browser\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/evolphin.com\\\/help\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Executing Scripts From Asset Browser\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#website\",\"url\":\"https:\\\/\\\/evolphin.com\\\/help\\\/\",\"name\":\"Evolphin Documentation\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/evolphin.com\\\/help\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#organization\",\"name\":\"Evolphin Documentation\",\"url\":\"https:\\\/\\\/evolphin.com\\\/help\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/evolphin.com\\\/help\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/cropped-evolphin-logo-dolphin_sm.png\",\"contentUrl\":\"https:\\\/\\\/evolphin.com\\\/help\\\/wp-content\\\/uploads\\\/2020\\\/04\\\/cropped-evolphin-logo-dolphin_sm.png\",\"width\":200,\"height\":200,\"caption\":\"Evolphin Documentation\"},\"image\":{\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/evolphin.com\\\/help\\\/#\\\/schema\\\/person\\\/e5f3dc53ac5f026ed258e224e75447f7\",\"name\":\"Rahul Bhargava\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g\",\"caption\":\"Rahul Bhargava\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Executing Scripts From Asset Browser - Evolphin Documentation","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/","og_locale":"en_US","og_type":"article","og_title":"Executing Scripts From Asset Browser - Evolphin Documentation","og_description":"From Zoom 6.0 and above, right-click context menu in Asset Browser can be customized to invoke the pre-configured scripts. Brief: Automation is beneficial for Zoom users by allowing them to take mundane tasks and automate them using scripts. Currently, in Zoom, we have support for automation scripts using the Workflow functionality on the Zoom Server. [&hellip;]","og_url":"https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/","og_site_name":"Evolphin Documentation","article_published_time":"2016-10-24T13:19:50+00:00","og_image":[{"url":"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2016\/10\/Script_Automator-1024x713.png","type":"","width":"","height":""}],"author":"Rahul Bhargava","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Rahul Bhargava","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/#article","isPartOf":{"@id":"https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/"},"author":{"name":"Rahul Bhargava","@id":"https:\/\/evolphin.com\/help\/#\/schema\/person\/e5f3dc53ac5f026ed258e224e75447f7"},"headline":"Executing Scripts From Asset Browser","datePublished":"2016-10-24T13:19:50+00:00","mainEntityOfPage":{"@id":"https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/"},"wordCount":309,"commentCount":0,"publisher":{"@id":"https:\/\/evolphin.com\/help\/#organization"},"image":{"@id":"https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/#primaryimage"},"thumbnailUrl":"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2016\/10\/Script_Automator-1024x713.png","keywords":["scripts","zoom 6"],"articleSection":["Asset Browser"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/","url":"https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/","name":"Executing Scripts From Asset Browser - Evolphin Documentation","isPartOf":{"@id":"https:\/\/evolphin.com\/help\/#website"},"primaryImageOfPage":{"@id":"https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/#primaryimage"},"image":{"@id":"https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/#primaryimage"},"thumbnailUrl":"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2016\/10\/Script_Automator-1024x713.png","datePublished":"2016-10-24T13:19:50+00:00","breadcrumb":{"@id":"https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/#primaryimage","url":"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2016\/10\/Script_Automator-1024x713.png","contentUrl":"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2016\/10\/Script_Automator-1024x713.png"},{"@type":"BreadcrumbList","@id":"https:\/\/evolphin.com\/help\/using-zoom\/vab\/executing-scripts-from-asset-browser\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/evolphin.com\/help\/"},{"@type":"ListItem","position":2,"name":"Executing Scripts From Asset Browser"}]},{"@type":"WebSite","@id":"https:\/\/evolphin.com\/help\/#website","url":"https:\/\/evolphin.com\/help\/","name":"Evolphin Documentation","description":"","publisher":{"@id":"https:\/\/evolphin.com\/help\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/evolphin.com\/help\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/evolphin.com\/help\/#organization","name":"Evolphin Documentation","url":"https:\/\/evolphin.com\/help\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/evolphin.com\/help\/#\/schema\/logo\/image\/","url":"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2020\/04\/cropped-evolphin-logo-dolphin_sm.png","contentUrl":"https:\/\/evolphin.com\/help\/wp-content\/uploads\/2020\/04\/cropped-evolphin-logo-dolphin_sm.png","width":200,"height":200,"caption":"Evolphin Documentation"},"image":{"@id":"https:\/\/evolphin.com\/help\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/evolphin.com\/help\/#\/schema\/person\/e5f3dc53ac5f026ed258e224e75447f7","name":"Rahul Bhargava","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/952acf4ec94a228ca32ed9b65cee4cc97a33509ea04500e768b71da346e58971?s=96&d=mm&r=g","caption":"Rahul Bhargava"}}]}},"_links":{"self":[{"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/posts\/5185","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/comments?post=5185"}],"version-history":[{"count":0,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/posts\/5185\/revisions"}],"wp:attachment":[{"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/media?parent=5185"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/categories?post=5185"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/evolphin.com\/help\/wp-json\/wp\/v2\/tags?post=5185"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}