{"id":733,"date":"2015-09-22T22:23:55","date_gmt":"2015-09-23T03:23:55","guid":{"rendered":"http:\/\/monkeylogic.us\/blog\/?p=733"},"modified":"2016-08-09T15:48:36","modified_gmt":"2016-08-09T20:48:36","slug":"conditional-pausing-in-captivate","status":"publish","type":"post","link":"http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/","title":{"rendered":"Conditional pausing in Captivate"},"content":{"rendered":"<p>The video &#8220;Making the Glossary interaction available throughout the course in Adobe Captivate 6,&#8221; which you can <a href=\"https:\/\/www.youtube.com\/watch?v=wTEF-56V1Z4\" target=\"_blank\">view here<\/a>, explains how to show the glossary widget on any page of a project and pause the slide at the same time. Pausing allows the user to focus on the glossary without missing any of the slide\u2019s content. When you click the close button, the glossary is hidden, the slide unpauses, and then resumes playback. Unfortunately, using this method to show\/hide the glossary can be a problem if the slide is already paused because you need the user to do something first. Because pressing the button to hide the glossary unpauses the slide, the user won\u2019t be able to complete what you needed them to do when the pause was implemented. This article explains how to conditionally show\/hide the glossary which eliminates this problem.<\/p>\n<p><!--more. . . Continue reading--><\/p>\n<p>I\u2019ve implemented the show\/hide glossary method in a lot of online trainings. I\u2019ll implement the method for help systems, resources, and activities where I need elements to appear on multiple slides, but slides resuming when I need the slide to stay paused is the biggest downfall. My most common instance of a slide being paused and waiting for a user to do something is a button placed at the end of the slide waiting for the user to click it to move to the next slide. If a user shows\/hides the glossary at the end of a slide they\u2019re generally confused about why they advanced to the next slide since they didn\u2019t press the Next button. Fortunately the solution is relatively simple.<\/p>\n<p>You can download the Captivate 9 project file <a href=\"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/Captivate\/ConditionalPausing\/ConditionalPausing.zip\" target=\"_blank\">here<\/a>.<\/p>\n<p><strong>BUILDING THE SLIDE<\/strong><\/p>\n<p>Starting with a new project we\u2019ll just have a single slide. We\u2019ll add a single smart shape that covers a good majority of the slide and set the timing of it to Rest of Project and check the box for Place Object on Top.<\/p>\n<div id=\"attachment_749\" style=\"width: 510px\" class=\"wp-caption alignnone\"><a name=\"imageclose-734\"><div class=\"lb-album\"><a href=\"#image-734\"><img src=\"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2015\/09\/01-Timing-500x321.png\" alt=\"01 Timing\" class=\"wp-image-749 size-post-images\"><span><\/span><\/a><\/div>              \r\n<a href=\"#imageclose-734\" class=\"css3lightbox-close\">\r\n\t\t\t\t   <div class=\"lb-overlay\" id=\"image-734\">\r\n                   <img src=\"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2015\/09\/01-Timing.png\" alt=\"image-734\">\r\n                   <\/div><\/a><p id=\"caption-attachment-749\" class=\"wp-caption-text\">The main image (click to see larger image)<\/p><\/div>\n<p>Then we\u2019ll create another smaller smart object and use the same timing settings. For the first object I\u2019m just using a gradient fill and the second object I\u2019m filling with red and adding an \u201cX\u201d to indicate that it\u2019s the close button. Then group the objects together, name them \u201cAllProject,\u201d and set the visibility to hidden.<\/p>\n<div id=\"attachment_743\" style=\"width: 510px\" class=\"wp-caption alignnone\"><a name=\"imageclose-735\"><div class=\"lb-album\"><a href=\"#image-735\"><img src=\"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2015\/09\/02-AllProject-500x323.png\" alt=\"02 AllProject\" class=\"wp-image-743 size-post-images\"><span><\/span><\/a><\/div>              \r\n<a href=\"#imageclose-735\" class=\"css3lightbox-close\">\r\n\t\t\t\t   <div class=\"lb-overlay\" id=\"image-735\">\r\n                   <img src=\"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2015\/09\/02-AllProject.png\" alt=\"image-735\">\r\n                   <\/div><\/a><p id=\"caption-attachment-743\" class=\"wp-caption-text\">Close button setup (click to see larger image)<\/p><\/div>\n<p>Now we\u2019ll add a button to the slide, name it \u201cPaused,\u201d position it so it pauses at 10 seconds, turn on the \u201cStop Slide Audio\u201d option, and change the option to \u201cWhen Paused.\u201d<\/p>\n<div id=\"attachment_744\" style=\"width: 482px\" class=\"wp-caption alignnone\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-744\" class=\"wp-image-744 size-full\" src=\"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2015\/09\/03-Pause-Button.png\" alt=\"03 Pause Button\" width=\"472\" height=\"227\" \/><p id=\"caption-attachment-744\" class=\"wp-caption-text\">Pause button settings<\/p><\/div>\n<p><strong>VARIABLE AND ACTIONS<\/strong><\/p>\n<p>The default method outlined in the YouTube video only uses two standard advanced actions. For this process we need to use two conditional advanced actions and a variable. First we\u2019ll create a variable that will only change when the project isn\u2019t already paused.<\/p>\n<p>Create a new variable named \u201cv_ProjectPause\u201d and set the value to 0.<\/p>\n<p>Now for the two conditional advanced actions. The first action is used to pause the project only if it isn\u2019t already paused but shows the AllProject group regardless. Create a conditional advanced action named \u201cItemShow,\u201d name the first decision \u201cCheckPause,\u201d and use the following settings:<\/p>\n<div class=\"cssCodeBlock\">\n<p><strong>IF<\/strong><br \/>\n[variable] cpCmndPause is equal to [literal] 0<\/p>\n<p><strong>ACTIONS<\/strong><br \/>\nAssign v_ProjectPause with 1<br \/>\nAssign cpCmndPause with 1<\/p>\n<\/div>\n<p>Name the second decision \u201cShow\u201d and use the following settings:<\/p>\n<div class=\"cssCodeBlock\">\n<p><strong>IF<\/strong><br \/>\n[literal] 1 is equal to [literal] 1<\/p>\n<p><strong>ACTIONS<\/strong><br \/>\nShow AllProject<\/p>\n<\/div>\n<div id=\"attachment_745\" style=\"width: 232px\" class=\"wp-caption alignnone\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-745\" class=\"wp-image-745 size-full\" src=\"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2015\/09\/04-Item-show.png\" alt=\"04 Item show\" width=\"222\" height=\"155\" \/><p id=\"caption-attachment-745\" class=\"wp-caption-text\">Preview of the Item Show action<\/p><\/div>\n<p>The second conditional object will only unpause the project if the v_ProjectPause variable is equal to 1 and will hide the AllProject group regardless. Create a second advanced action named \u201cItemHide,\u201d name the first decision \u201cCheckUserPause,\u201d and use the following settings:<\/p>\n<div class=\"cssCodeBlock\">\n<p><strong>IF<\/strong><br \/>\n[variable] v_ProjectPause is equal to 1<\/p>\n<p><strong>ACTIONS<\/strong><br \/>\nAssign v_ProjectPause with 0<br \/>\nAssign cpCmndResume with 1<\/p>\n<\/div>\n<p>Then name the second decision to \u201chide\u201d and use the following settings:<\/p>\n<div class=\"cssCodeBlock\">\n<p><strong>IF<\/strong><br \/>\n[literal] 1 is equal to [literal] 1<\/p>\n<p><strong>ACTIONS<\/strong><br \/>\nHide AllProject<\/p>\n<\/div>\n<div id=\"attachment_746\" style=\"width: 234px\" class=\"wp-caption alignnone\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-746\" class=\"wp-image-746 size-full\" src=\"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2015\/09\/05-Item-hide.png\" alt=\"05 Item hide\" width=\"224\" height=\"154\" \/><p id=\"caption-attachment-746\" class=\"wp-caption-text\">Preview of the Item Hide action<\/p><\/div>\n<p><strong>SHOW\/HIDE BUTTONS<\/strong><\/p>\n<p>The last part is creating a button to show the AllProject group and assigning the ItemHide action to the close button.<\/p>\n<p>Click on the smart shape with the X, click the \u201cUse as Button\u201d option, set the On Success action to \u201cExecute Advanced Actions\u201d and select \u201cItemHide\u201d from the list of actions.<\/p>\n<div id=\"attachment_747\" style=\"width: 396px\" class=\"wp-caption alignnone\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-747\" class=\"wp-image-747 size-full\" src=\"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2015\/09\/06-Close-button.png\" alt=\"06 Close button\" width=\"386\" height=\"179\" \/><p id=\"caption-attachment-747\" class=\"wp-caption-text\">Setting the hide button action<\/p><\/div>\n<p>Lastly, create a button on the slide that appears at 0 seconds, set the text to \u201cShow\u201d and set it to Execute Advanced Action and the action \u201cItemShow.\u201d<\/p>\n<div id=\"attachment_748\" style=\"width: 422px\" class=\"wp-caption alignnone\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-748\" class=\"wp-image-748 size-full\" src=\"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2015\/09\/07-Show.png\" alt=\"07 Show\" width=\"412\" height=\"116\" \/><p id=\"caption-attachment-748\" class=\"wp-caption-text\">Setting the show button action<\/p><\/div>\n<p>Now you can preview the project. When you click the Show button prior to the 10 second pause button the slide will pause and the AllProject group will show. When you click the hide button the slide resumes and the AllProject group will be hidden. When you reach the button that pauses the slide, clicking the show button still shows the AllProject group but closing the group won\u2019t unpause the slide.<\/p>\n<p><strong>HOW IT WORKS<\/strong><\/p>\n<p>You can check out the published file <a href=\"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/Captivate\/ConditionalPausing\/\" target=\"_blank\">here<\/a>.<\/p>\n<p>When a button is set to pause a slide, it changes the cpCmndPause value to 1. So the first decision of the Show button\u2019s advanced action checks to see if the cpCmndPause value is equal to 1 meaning the slide is already paused. If it\u2019s not equal to 1, because the slide is playing, it assigns the v_ProjectPause variable to 1 and the cpCmndPause variable to 1 which then does pause the slide. The second decision of the action then shows the AllProject group.<\/p>\n<p>When the close button is pressed, the second decision of the advanced action hides the AllProject group. The first decision looks to see if the v_ProjectPause is equal to 1. If it is equal to 1, v_ProjectPause is assigned a value of 0, which is what resets it for the next time the show button will be used, and it assigns cpCmndResume with a value of 1 which is what unpauses the slide.<\/p>\n<p><strong>WHY THE SECOND DECISION?<\/strong><\/p>\n<p>For something as simple as showing or hiding a single group you don\u2019t <em>really<\/em> need to put the Show or Hide action in a second decision. You could put it in the ACTIONS and ELSE sections of each Advanced Action, but this means you have to enter it twice, one for each section, instead of only once in a single decision.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>See how to conditionally pause a Captivate file to prevent a \u201cRest of Project\u201d object from bypassing a user activity.<\/p>\n","protected":false},"author":1,"featured_media":755,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,18],"tags":[],"class_list":["post-733","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-adobe","category-captivate"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Conditional pausing in Captivate - monkeylogic blog<\/title>\n<meta name=\"description\" content=\"See how to conditionally pause a Captivate file to prevent a \u201cRest of Project\u201d object from bypassing a user activity.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Conditional pausing in Captivate - monkeylogic blog\" \/>\n<meta property=\"og:description\" content=\"See how to conditionally pause a Captivate file to prevent a \u201cRest of Project\u201d object from bypassing a user activity.\" \/>\n<meta property=\"og:url\" content=\"http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/\" \/>\n<meta property=\"og:site_name\" content=\"monkeylogic blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/MonkeylogicDesign\" \/>\n<meta property=\"article:published_time\" content=\"2015-09-23T03:23:55+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2016-08-09T20:48:36+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2015\/09\/headerConditionalPausing.png\" \/>\n\t<meta property=\"og:image:width\" content=\"570\" \/>\n\t<meta property=\"og:image:height\" content=\"200\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Michael (the head monkey)\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael (the head monkey)\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/conditional-pausing-in-captivate\\\/#article\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/conditional-pausing-in-captivate\\\/\"},\"author\":{\"name\":\"Michael (the head monkey)\",\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/#\\\/schema\\\/person\\\/4d39347fa8dbfebec314b0a130b26aa1\"},\"headline\":\"Conditional pausing in Captivate\",\"datePublished\":\"2015-09-23T03:23:55+00:00\",\"dateModified\":\"2016-08-09T20:48:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/conditional-pausing-in-captivate\\\/\"},\"wordCount\":1117,\"commentCount\":2,\"image\":{\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/conditional-pausing-in-captivate\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/09\\\/headerConditionalPausing.png\",\"articleSection\":[\"Adobe\",\"Captivate\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/conditional-pausing-in-captivate\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/conditional-pausing-in-captivate\\\/\",\"url\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/conditional-pausing-in-captivate\\\/\",\"name\":\"Conditional pausing in Captivate - monkeylogic blog\",\"isPartOf\":{\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/conditional-pausing-in-captivate\\\/#primaryimage\"},\"image\":{\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/conditional-pausing-in-captivate\\\/#primaryimage\"},\"thumbnailUrl\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/09\\\/headerConditionalPausing.png\",\"datePublished\":\"2015-09-23T03:23:55+00:00\",\"dateModified\":\"2016-08-09T20:48:36+00:00\",\"author\":{\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/#\\\/schema\\\/person\\\/4d39347fa8dbfebec314b0a130b26aa1\"},\"description\":\"See how to conditionally pause a Captivate file to prevent a \u201cRest of Project\u201d object from bypassing a user activity.\",\"breadcrumb\":{\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/conditional-pausing-in-captivate\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/conditional-pausing-in-captivate\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/conditional-pausing-in-captivate\\\/#primaryimage\",\"url\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/09\\\/headerConditionalPausing.png\",\"contentUrl\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/wp-content\\\/uploads\\\/2015\\\/09\\\/headerConditionalPausing.png\",\"width\":570,\"height\":200},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/conditional-pausing-in-captivate\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Conditional pausing in Captivate\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/#website\",\"url\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/\",\"name\":\"monkeylogic blog\",\"description\":\"Out of Register\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/#\\\/schema\\\/person\\\/4d39347fa8dbfebec314b0a130b26aa1\",\"name\":\"Michael (the head monkey)\",\"sameAs\":[\"http:\\\/\\\/www.monkeylogic.us\"],\"url\":\"http:\\\/\\\/monkeylogic.us\\\/blog\\\/author\\\/head-monkey\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Conditional pausing in Captivate - monkeylogic blog","description":"See how to conditionally pause a Captivate file to prevent a \u201cRest of Project\u201d object from bypassing a user activity.","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":"http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/","og_locale":"en_US","og_type":"article","og_title":"Conditional pausing in Captivate - monkeylogic blog","og_description":"See how to conditionally pause a Captivate file to prevent a \u201cRest of Project\u201d object from bypassing a user activity.","og_url":"http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/","og_site_name":"monkeylogic blog","article_publisher":"https:\/\/www.facebook.com\/MonkeylogicDesign","article_published_time":"2015-09-23T03:23:55+00:00","article_modified_time":"2016-08-09T20:48:36+00:00","og_image":[{"width":570,"height":200,"url":"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2015\/09\/headerConditionalPausing.png","type":"image\/png"}],"author":"Michael (the head monkey)","twitter_misc":{"Written by":"Michael (the head monkey)","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/#article","isPartOf":{"@id":"http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/"},"author":{"name":"Michael (the head monkey)","@id":"http:\/\/monkeylogic.us\/blog\/#\/schema\/person\/4d39347fa8dbfebec314b0a130b26aa1"},"headline":"Conditional pausing in Captivate","datePublished":"2015-09-23T03:23:55+00:00","dateModified":"2016-08-09T20:48:36+00:00","mainEntityOfPage":{"@id":"http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/"},"wordCount":1117,"commentCount":2,"image":{"@id":"http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/#primaryimage"},"thumbnailUrl":"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2015\/09\/headerConditionalPausing.png","articleSection":["Adobe","Captivate"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/#respond"]}]},{"@type":"WebPage","@id":"http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/","url":"http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/","name":"Conditional pausing in Captivate - monkeylogic blog","isPartOf":{"@id":"http:\/\/monkeylogic.us\/blog\/#website"},"primaryImageOfPage":{"@id":"http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/#primaryimage"},"image":{"@id":"http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/#primaryimage"},"thumbnailUrl":"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2015\/09\/headerConditionalPausing.png","datePublished":"2015-09-23T03:23:55+00:00","dateModified":"2016-08-09T20:48:36+00:00","author":{"@id":"http:\/\/monkeylogic.us\/blog\/#\/schema\/person\/4d39347fa8dbfebec314b0a130b26aa1"},"description":"See how to conditionally pause a Captivate file to prevent a \u201cRest of Project\u201d object from bypassing a user activity.","breadcrumb":{"@id":"http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/#primaryimage","url":"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2015\/09\/headerConditionalPausing.png","contentUrl":"http:\/\/monkeylogic.us\/blog\/wp-content\/uploads\/2015\/09\/headerConditionalPausing.png","width":570,"height":200},{"@type":"BreadcrumbList","@id":"http:\/\/monkeylogic.us\/blog\/conditional-pausing-in-captivate\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/monkeylogic.us\/blog\/"},{"@type":"ListItem","position":2,"name":"Conditional pausing in Captivate"}]},{"@type":"WebSite","@id":"http:\/\/monkeylogic.us\/blog\/#website","url":"http:\/\/monkeylogic.us\/blog\/","name":"monkeylogic blog","description":"Out of Register","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/monkeylogic.us\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"http:\/\/monkeylogic.us\/blog\/#\/schema\/person\/4d39347fa8dbfebec314b0a130b26aa1","name":"Michael (the head monkey)","sameAs":["http:\/\/www.monkeylogic.us"],"url":"http:\/\/monkeylogic.us\/blog\/author\/head-monkey\/"}]}},"_links":{"self":[{"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/posts\/733","targetHints":{"allow":["GET"]}}],"collection":[{"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/comments?post=733"}],"version-history":[{"count":21,"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/posts\/733\/revisions"}],"predecessor-version":[{"id":900,"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/posts\/733\/revisions\/900"}],"wp:featuredmedia":[{"embeddable":true,"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/media\/755"}],"wp:attachment":[{"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/media?parent=733"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/categories?post=733"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/monkeylogic.us\/blog\/wp-json\/wp\/v2\/tags?post=733"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}