{"id":6658,"date":"2025-05-20T00:00:00","date_gmt":"2025-05-19T22:00:00","guid":{"rendered":"https:\/\/seriousfactory.com\/blog\/?p=6658"},"modified":"2025-08-20T16:36:16","modified_gmt":"2025-08-20T14:36:16","slug":"switch-block-simplify-your-e-learning-paths-with-logical-branching","status":"publish","type":"post","link":"https:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/","title":{"rendered":"Switch Block: Simplify Your E-Learning Paths with Logical Branching"},"content":{"rendered":"<h2>Switch E-Learning Block: Simplify Your Learning Paths with Logical Branching<\/h2>\n<p>You manage a training catalog and need to adapt content based on user profiles, levels, and results\u2014without turning your flowchart into spaghetti. The <strong>Switch E-Learning Block<\/strong> in VTS Editor is the perfect routing tool: it replaces a cascade of conditions with a central decision node, enabling clear, easy-to-maintain, and truly adaptive learning paths while remaining SCORM-compatible and LMS trackable. To discover the authoring tool, visit the <a href=\"https:\/\/seriousfactory.com\/en\/authoring-software-vts-editor\/\">VTS Editor<\/a> page.<\/p>\n<h3>Why Use the Switch E-Learning Block in VTS Editor?<\/h3>\n<ul>\n<li><strong>Readability<\/strong>: a single routing node replaces a chain of Condition blocks.<\/li>\n<li><strong>Maintenance<\/strong>: adjust one expression and a number of exits\u2014not dozens of links.<\/li>\n<li><strong>Fewer Errors<\/strong>: the default output serves as a safeguard directing to help or a hub.<\/li>\n<li><strong>Performance<\/strong>: fewer blocks and verifications, better reuse.<\/li>\n<\/ul>\n<p>Clearer learning paths also help reduce learners\u2019 cognitive load, which can improve comprehension and retention. See the summary on <a href=\"https:\/\/link.springer.com\/article\/10.1007\/s10648-010-9128-5\" rel=\"noopener\" target=\"_blank\">Cognitive Load Theory<\/a>.<\/p>\n<h3>How the E-Learning Switch Works<\/h3>\n<p>The Switch reads an expression that returns an integer. If the expression evaluates to 1, output 1 is triggered; if it\u2019s 2, output 2; and so on up to <em>N<\/em>. If the value is out of bounds (<em>&lt; 1<\/em> or <em>&gt; N<\/em>), the final output serves as the default exit. In practice, normalize your logic (score, choice, profile) to a value between 1 and <em>N<\/em>, and let the block handle the routing.<\/p>\n<h3>Quick Example<\/h3>\n<p>Let\u2019s say difficulty level is calculated from a score out of 100:<\/p>\n<ul>\n<li><code>band = floor(globalScore\/20)<\/code> returns 0 to 5<\/li>\n<li><code>level = clamp(band, 0, 2) + 1<\/code> returns 1 to 3<\/li>\n<li><strong>Max Value<\/strong>: 3<\/li>\n<\/ul>\n<p>If <code>level<\/code> equals 1: output 1 (Beginner); 2: output 2 (Intermediate); 3: output 3 (Advanced). If by mistake the variable is 7, the default output takes over.<\/p>\n<h3>Key Configuration and Best Practices<\/h3>\n<ul>\n<li>Two key fields: the <em>Expression for Output Number<\/em> (must return an integer) and the <em>Maximum Value<\/em>.<\/li>\n<li>Clarify intent in the block note (<em>routeIndex = floor(globalScore\/20)+1; max=3<\/em>).<\/li>\n<li>Test edge cases: 0, 1, <em>N<\/em>, <em>N+1<\/em>.<\/li>\n<li>Clearly rename target blocks (<em>Chapter_1_Beginner<\/em>, <em>Chapter_2_Intermediate<\/em>).<\/li>\n<li>Centralize the index computation (Variable block or reusable Function).<\/li>\n<\/ul>\n<h3>Switch vs Conditions, Random, Sequence<\/h3>\n<ul>\n<li><strong>Conditions<\/strong>: useful for complex comparisons (>, &lt;, AND\/OR). If you&rsquo;re chaining <em>n == 1, n == 2\u2026<\/em>, Switch is better.<\/li>\n<li><strong>Random<\/strong>: serves randomness; combined with Switch, you draw a number and route it cleanly.<\/li>\n<li><strong>Sequence<\/strong>: for fixed order (1, 2, 3\u2026 then back to 1). If the order depends on a calculated state, use Switch.<\/li>\n<\/ul>\n<h3>Variables and Data Sources<\/h3>\n<p>Switch relies on a variable expression (included in the Integral subscription). Common sources: Score\/Check Score, Flags, Menu\/Choice\/Quiz, language, URL parameters, countdown. Tip: normalize values to 1..N and centralize calculation via <em>Function Call<\/em>. To improve your skills with variables, check out the training <a href=\"https:\/\/seriousfactory.com\/en\/trainings\/vtseditor-training-introduction-variables-odl-inter-enterprise\/\">VTS Editor \u2013 Introduction to Variables<\/a>.<\/p>\n<h3>Default Output: Real Remediation<\/h3>\n<p>The default output isn\u2019t a \u201ctrash bin.\u201d Turn it into a support strategy: redirect to a hub, display a clear message, open a key resource, or launch a mini-quiz. Log the event with <em>Recap<\/em> (<em>Fallback Switch \u2013 unexpected value = {routeIndex}<\/em>) to understand what went wrong.<\/p>\n<h2>Real-World Use Cases for E-Learning Branching<\/h2>\n<h3>Routing by Score or Skills<\/h3>\n<p>At the end of a quiz, compute a band (1..3) and let Switch route to the right sequence:<\/p>\n<ul>\n<li><strong>Beginner<\/strong>: reminders and guided role play.<\/li>\n<li><strong>Intermediate<\/strong>: semi-open client case with feedback.<\/li>\n<li><strong>Advanced<\/strong>: simulation with tough objections.<\/li>\n<\/ul>\n<p>Add <em>Progress<\/em> for SCORM reporting and <em>Badges<\/em> to reward each level. Gamification boosts engagement\u2014see the meta-analysis by Sailer &#038; Homner (2020) <a href=\"https:\/\/link.springer.com\/article\/10.1007\/s10648-019-09498-w\" rel=\"noopener\" target=\"_blank\">The Effects of Gamification on Learning<\/a>. Get inspired by real-world examples from our <a href=\"https:\/\/seriousfactory.com\/en\/case-studies\/thales\/\">client cases<\/a>.<\/p>\n<h3>Modular Navigation and Dynamic Chaptering<\/h3>\n<p>Give managers the freedom to choose a chapter without a star-shaped flow: capture the selection via <em>Menu<\/em>, store <code>chapterIndex<\/code>, and route using Switch to Chapter 1\/2\/3. Advantage: readability and easy to add a chapter (just add one output). To build this type of content, check out our <a href=\"https:\/\/seriousfactory.com\/en\/elearning-solutions\/gamified-elearning-modules\/\">gamified e-learning modules<\/a>.<\/p>\n<h3>Controlled Randomization and Replayability<\/h3>\n<p>For case studies, use <em>Random<\/em> to draw a number between 1..N (option \u201cone output only once\u201d), then route with Switch. You confine randomness to the selection, maintain a clean architecture, and log the case drawn for your stats.<\/p>\n<h3>Customization by Profile, Language, or Device<\/h3>\n<p>Combine language, profile flags (manager\/sales\/technical), and URL parameters (<em>level=2<\/em>) to generate a unique index. Switch directs to the right content with appropriate media and difficulty. Speed up production with <em>Variable Media<\/em>. For seamless deployment and detailed tracking, discover our LMS <a href=\"https:\/\/seriousfactory.com\/en\/vts-perform\/\">VTS Perform<\/a>. To learn more about adaptive learning, see EDUCAUSE\u2019s overview: <a href=\"https:\/\/er.educause.edu\/articles\/2016\/1\/7-things-you-should-know-about-adaptive-learning\" rel=\"noopener\" target=\"_blank\">Adaptive Learning<\/a>.<\/p>\n<h3>Remediation and Support Paths<\/h3>\n<p>After several failed attempts (via <em>Counter<\/em>), switch <code>routeIndex<\/code> to a \u201cSupport\u201d branch that launches a slideshow, accesses a key resource, and features a mini-quiz. Adjust <em>Score<\/em> and <em>Progress<\/em> to maintain clean reporting in your LMS. For compliance, see the SCORM standard (ADL): <a href=\"https:\/\/adlnet.gov\/projects\/scorm\/\" rel=\"noopener\" target=\"_blank\">SCORM \u2013 ADL<\/a>.<\/p>\n<h2>Step-by-Step Implementation in VTS Editor<\/h2>\n<h3>Prepare the Routing Expression<\/h3>\n<ul>\n<li>Clearly name your variable (<em>routeIndex<\/em>, <em>level<\/em>, <em>chapterIndex<\/em>) and note its origin (score, choice, profile, language, random).<\/li>\n<li>Normalize values to 1..N with <code>clamp()<\/code> to avoid overflows.<\/li>\n<li>Initialize early in the scenario (using the <em>Variable<\/em> block) and use the <em>Tests<\/em> window to quickly simulate cases.<\/li>\n<\/ul>\n<h3>Map Outputs and Build the Paths<\/h3>\n<ul>\n<li>Assign each output a clear objective, dedicated media, and a consistent entry point.<\/li>\n<li>Prepare a useful \u00ab\u00a0fallback\u00a0\u00bb\u2014not a dead end.<\/li>\n<li>Create reusable templates per level (Beginner\/Intermediate\/Advanced) to save time.<\/li>\n<\/ul>\n<h3>Winning Combinations with Other Blocks<\/h3>\n<ul>\n<li><strong>Switch + Counter<\/strong>: progressive help (hint, demo, full support).<\/li>\n<li><strong>Switch + Random<\/strong>: controlled drawing of case studies, tidy architecture.<\/li>\n<li><strong>Switch + Check Flags<\/strong>: enforce prerequisites (e.g., tutorial viewed) before continuing.<\/li>\n<li><strong>Switch + Progress<\/strong>: accurately set progress, completion, and success.<\/li>\n<li><strong>Switch + Function Call<\/strong>: factorize briefings, instructions, debriefs, feedback.<\/li>\n<\/ul>\n<h3>Testing, Debugging, and Robustness<\/h3>\n<ul>\n<li>Always test 0, 1, <em>N<\/em>, <em>N+1<\/em> to validate the default exit.<\/li>\n<li>Monitor variables in real time (Variable Status window).<\/li>\n<li>Trace routes with <em>Recap<\/em> (\u201cSwitch -> output 2 \u2013 Intermediate\u201d).<\/li>\n<li>In case of unexpected branching, display a clear message and offer return to hub.<\/li>\n<\/ul>\n<h3>Performance, Readability, and Governance<\/h3>\n<ul>\n<li>Replace chains of Conditions with a central Switch to reduce blocks.<\/li>\n<li>Structure the graph with named groups, a stable naming plan, and descriptive notes.<\/li>\n<li>Leave room to add future outputs.<\/li>\n<li>Document your expressions and centralize calculations in Functions to speed updates.<\/li>\n<\/ul>\n<h2>Key Questions from Training and HR Managers<\/h2>\n<h3>Scalability and Update Time<\/h3>\n<ul>\n<li>The <strong>Switch E-Learning Block<\/strong> helps you roll out the same learning structure across multiple profiles\/regions without rewriting logic.<\/li>\n<li>Updating an expression or adding an output takes a few minutes\u2014not hours.<\/li>\n<\/ul>\n<h3>Instructional Quality and LMS Reporting<\/h3>\n<ul>\n<li>The default output prevents learner dead ends and offers guidance.<\/li>\n<li><em>Progress<\/em>\/<em>Score<\/em> data feeds reliable LMS reporting.<\/li>\n<\/ul>\n<h3>Total Cost of Ownership<\/h3>\n<ul>\n<li>Fewer blocks and more reuse (Functions, Variable Media) = less technical debt.<\/li>\n<li>For large-scale deployment, rely on <a href=\"https:\/\/seriousfactory.com\/en\/vts-perform\/\">VTS Perform<\/a>.<\/li>\n<\/ul>\n<h2>Take Action<\/h2>\n<p>Remember the essentials: <strong>e-learning routing<\/strong> through the Switch Block brings clarity, robustness, and easy evolution to your learning paths. Start with a three-output Switch plus one default exit; normalize your variables into the 1..N range; centralize your calculations; factor in shared elements; test your boundaries; refine your remediation.<\/p>\n<p>Need help structuring your branching scenarios at scale? Our teams can support you:<\/p>\n<ul>\n<li>Explore the tool: <a href=\"https:\/\/seriousfactory.com\/en\/authoring-software-vts-editor\/\">VTS Editor<\/a><\/li>\n<li>Get trained: <a href=\"https:\/\/seriousfactory.com\/en\/trainings\/vtseditor-training-introduction-variables-odl-inter-enterprise\/\">Introduction to Variables<\/a> and <a href=\"https:\/\/seriousfactory.com\/en\/trainings\/vtseditor-training-advanced-gamification-intra-enterprise\/\">Advanced Gamification<\/a><\/li>\n<li>Deploy at scale: <a href=\"https:\/\/seriousfactory.com\/en\/vts-perform\/\">VTS Perform LMS Platform<\/a><\/li>\n<li>See real results: <a href=\"https:\/\/seriousfactory.com\/en\/case-studies\/thales\/\">Thales Client Case<\/a><\/li>\n<\/ul>\n<p>Ready to simplify your learning paths with the <strong>Switch E-Learning Block<\/strong>? <a href=\"https:\/\/seriousfactory.com\/en\/request-a-demonstration-of-vts-editor\/\">Request a demo<\/a> or <a href=\"https:\/\/seriousfactory.com\/en\/try-virtual-training-suite\/\">try the VTS suite free<\/a> for 30 days.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Switch E-Learning Block: Simplify Your Learning Paths with Logical Branching You manage a training catalog and need to adapt content based on user profiles, levels, and results\u2014without turning your flowchart into spaghetti. The Switch E-Learning Block in VTS Editor is the perfect routing tool: it replaces a cascade of conditions with a central decision node, enabling clear, easy-to-maintain, and truly&#8230;<\/p>\n","protected":false},"author":12,"featured_media":6659,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1035],"tags":[963],"class_list":["post-6658","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-vts-editor-en","tag-vts-editor-blocks"],"_elementor_source_image_hash":null,"_wp_attachment_image_alt":null,"_thumbnail_id":"6659","_yoast_wpseo_twitter-description":null,"_yoast_wpseo_twitter-title":null,"_yoast_wpseo_twitter-image":null,"_product_image_gallery":null,"_yoast_wpseo_focuskw":"Switch e-learning block","_yoast_wpseo_title":"Bloc Switch e-learning: create adaptive pathways","_yoast_wpseo_metadesc":"Simplify your e-learning journeys with the Switch block: clear, scalable, and personalized routing based on score, profile, or language in VTS Editor.","yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Bloc Switch e-learning: create adaptive pathways<\/title>\n<meta name=\"description\" content=\"Simplify your e-learning journeys with the Switch block: clear, scalable, and personalized routing based on score, profile, or language in VTS Editor.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/\" \/>\n<meta property=\"og:locale\" content=\"fr_FR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Bloc Switch e-learning: create adaptive pathways\" \/>\n<meta property=\"og:description\" content=\"Simplify your e-learning journeys with the Switch block: clear, scalable, and personalized routing based on score, profile, or language in VTS Editor.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/\" \/>\n<meta property=\"og:site_name\" content=\"Serious Factory\u2019s latest news\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-19T22:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-20T14:36:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/seriousfactory.com\/blog\/wp-content\/uploads\/2025\/08\/Switch-Block-Simplify-Your-E-Learning-Paths-with-Logical-Branching-1024x683.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"683\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"William PERES\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@Serious_Factory\" \/>\n<meta name=\"twitter:site\" content=\"@Serious_Factory\" \/>\n<meta name=\"twitter:label1\" content=\"\u00c9crit par\" \/>\n\t<meta name=\"twitter:data1\" content=\"William PERES\" \/>\n\t<meta name=\"twitter:label2\" content=\"Dur\u00e9e de lecture estim\u00e9e\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/en\\\/switch-block-simplify-your-e-learning-paths-with-logical-branching\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/en\\\/switch-block-simplify-your-e-learning-paths-with-logical-branching\\\/\"},\"author\":{\"name\":\"William PERES\",\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/#\\\/schema\\\/person\\\/ff78c4739fe0285ca74f732e8b46bd09\"},\"headline\":\"Switch Block: Simplify Your E-Learning Paths with Logical Branching\",\"datePublished\":\"2025-05-19T22:00:00+00:00\",\"dateModified\":\"2025-08-20T14:36:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/en\\\/switch-block-simplify-your-e-learning-paths-with-logical-branching\\\/\"},\"wordCount\":1193,\"publisher\":{\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/en\\\/switch-block-simplify-your-e-learning-paths-with-logical-branching\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/Switch-Block-Simplify-Your-E-Learning-Paths-with-Logical-Branching.png\",\"keywords\":[\"VTS Editor blocks\"],\"articleSection\":[\"VTS Editor\"],\"inLanguage\":\"fr-FR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/en\\\/switch-block-simplify-your-e-learning-paths-with-logical-branching\\\/\",\"url\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/en\\\/switch-block-simplify-your-e-learning-paths-with-logical-branching\\\/\",\"name\":\"Bloc Switch e-learning: create adaptive pathways\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/en\\\/switch-block-simplify-your-e-learning-paths-with-logical-branching\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/en\\\/switch-block-simplify-your-e-learning-paths-with-logical-branching\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/Switch-Block-Simplify-Your-E-Learning-Paths-with-Logical-Branching.png\",\"datePublished\":\"2025-05-19T22:00:00+00:00\",\"dateModified\":\"2025-08-20T14:36:16+00:00\",\"description\":\"Simplify your e-learning journeys with the Switch block: clear, scalable, and personalized routing based on score, profile, or language in VTS Editor.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/en\\\/switch-block-simplify-your-e-learning-paths-with-logical-branching\\\/#breadcrumb\"},\"inLanguage\":\"fr-FR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/en\\\/switch-block-simplify-your-e-learning-paths-with-logical-branching\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/en\\\/switch-block-simplify-your-e-learning-paths-with-logical-branching\\\/#primaryimage\",\"url\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/Switch-Block-Simplify-Your-E-Learning-Paths-with-Logical-Branching.png\",\"contentUrl\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/08\\\/Switch-Block-Simplify-Your-E-Learning-Paths-with-Logical-Branching.png\",\"width\":1536,\"height\":1024,\"caption\":\"Switch e-learning block\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/en\\\/switch-block-simplify-your-e-learning-paths-with-logical-branching\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Switch Block: Simplify Your E-Learning Paths with Logical Branching\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/\",\"name\":\"Serious Factory - Blog\",\"description\":\"Bienvenue sur le blog de Serious Factory, votre page d&#039;accueil pour les ressources p\u00e9dagogiques, les derni\u00e8res actualit\u00e9s de Serious Factory et plus encore \",\"publisher\":{\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"fr-FR\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/#organization\",\"name\":\"Serious Factory\",\"url\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/cropped-LOGO_SF_HORIZONTAL_FOND_BLANC.png\",\"contentUrl\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/12\\\/cropped-LOGO_SF_HORIZONTAL_FOND_BLANC.png\",\"width\":756,\"height\":296,\"caption\":\"Serious Factory\"},\"image\":{\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/Serious_Factory\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/serious-factory\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCphbp65IJZIspwX3R_dEY3w\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/#\\\/schema\\\/person\\\/ff78c4739fe0285ca74f732e8b46bd09\",\"name\":\"William PERES\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"fr-FR\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c684d6135ed099ab9b9389fe4ef0021e26cfe180f949a1c3f4433ac9d0000d06?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c684d6135ed099ab9b9389fe4ef0021e26cfe180f949a1c3f4433ac9d0000d06?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c684d6135ed099ab9b9389fe4ef0021e26cfe180f949a1c3f4433ac9d0000d06?s=96&d=mm&r=g\",\"caption\":\"William PERES\"},\"url\":\"https:\\\/\\\/seriousfactory.com\\\/blog\\\/author\\\/wperesseriousfactory-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Bloc Switch e-learning: create adaptive pathways","description":"Simplify your e-learning journeys with the Switch block: clear, scalable, and personalized routing based on score, profile, or language in VTS Editor.","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:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/","og_locale":"fr_FR","og_type":"article","og_title":"Bloc Switch e-learning: create adaptive pathways","og_description":"Simplify your e-learning journeys with the Switch block: clear, scalable, and personalized routing based on score, profile, or language in VTS Editor.","og_url":"https:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/","og_site_name":"Serious Factory\u2019s latest news","article_published_time":"2025-05-19T22:00:00+00:00","article_modified_time":"2025-08-20T14:36:16+00:00","og_image":[{"width":1024,"height":683,"url":"https:\/\/seriousfactory.com\/blog\/wp-content\/uploads\/2025\/08\/Switch-Block-Simplify-Your-E-Learning-Paths-with-Logical-Branching-1024x683.png","type":"image\/png"}],"author":"William PERES","twitter_card":"summary_large_image","twitter_creator":"@Serious_Factory","twitter_site":"@Serious_Factory","twitter_misc":{"\u00c9crit par":"William PERES","Dur\u00e9e de lecture estim\u00e9e":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/#article","isPartOf":{"@id":"https:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/"},"author":{"name":"William PERES","@id":"https:\/\/seriousfactory.com\/blog\/#\/schema\/person\/ff78c4739fe0285ca74f732e8b46bd09"},"headline":"Switch Block: Simplify Your E-Learning Paths with Logical Branching","datePublished":"2025-05-19T22:00:00+00:00","dateModified":"2025-08-20T14:36:16+00:00","mainEntityOfPage":{"@id":"https:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/"},"wordCount":1193,"publisher":{"@id":"https:\/\/seriousfactory.com\/blog\/#organization"},"image":{"@id":"https:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/#primaryimage"},"thumbnailUrl":"https:\/\/seriousfactory.com\/blog\/wp-content\/uploads\/2025\/08\/Switch-Block-Simplify-Your-E-Learning-Paths-with-Logical-Branching.png","keywords":["VTS Editor blocks"],"articleSection":["VTS Editor"],"inLanguage":"fr-FR"},{"@type":"WebPage","@id":"https:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/","url":"https:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/","name":"Bloc Switch e-learning: create adaptive pathways","isPartOf":{"@id":"https:\/\/seriousfactory.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/#primaryimage"},"image":{"@id":"https:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/#primaryimage"},"thumbnailUrl":"https:\/\/seriousfactory.com\/blog\/wp-content\/uploads\/2025\/08\/Switch-Block-Simplify-Your-E-Learning-Paths-with-Logical-Branching.png","datePublished":"2025-05-19T22:00:00+00:00","dateModified":"2025-08-20T14:36:16+00:00","description":"Simplify your e-learning journeys with the Switch block: clear, scalable, and personalized routing based on score, profile, or language in VTS Editor.","breadcrumb":{"@id":"https:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/#breadcrumb"},"inLanguage":"fr-FR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/"]}]},{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/#primaryimage","url":"https:\/\/seriousfactory.com\/blog\/wp-content\/uploads\/2025\/08\/Switch-Block-Simplify-Your-E-Learning-Paths-with-Logical-Branching.png","contentUrl":"https:\/\/seriousfactory.com\/blog\/wp-content\/uploads\/2025\/08\/Switch-Block-Simplify-Your-E-Learning-Paths-with-Logical-Branching.png","width":1536,"height":1024,"caption":"Switch e-learning block"},{"@type":"BreadcrumbList","@id":"https:\/\/seriousfactory.com\/blog\/en\/switch-block-simplify-your-e-learning-paths-with-logical-branching\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/seriousfactory.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Switch Block: Simplify Your E-Learning Paths with Logical Branching"}]},{"@type":"WebSite","@id":"https:\/\/seriousfactory.com\/blog\/#website","url":"https:\/\/seriousfactory.com\/blog\/","name":"Serious Factory - Blog","description":"Bienvenue sur le blog de Serious Factory, votre page d&#039;accueil pour les ressources p\u00e9dagogiques, les derni\u00e8res actualit\u00e9s de Serious Factory et plus encore ","publisher":{"@id":"https:\/\/seriousfactory.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/seriousfactory.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"fr-FR"},{"@type":"Organization","@id":"https:\/\/seriousfactory.com\/blog\/#organization","name":"Serious Factory","url":"https:\/\/seriousfactory.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/seriousfactory.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/seriousfactory.com\/blog\/wp-content\/uploads\/2023\/12\/cropped-LOGO_SF_HORIZONTAL_FOND_BLANC.png","contentUrl":"https:\/\/seriousfactory.com\/blog\/wp-content\/uploads\/2023\/12\/cropped-LOGO_SF_HORIZONTAL_FOND_BLANC.png","width":756,"height":296,"caption":"Serious Factory"},"image":{"@id":"https:\/\/seriousfactory.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/Serious_Factory","https:\/\/www.linkedin.com\/company\/serious-factory\/","https:\/\/www.youtube.com\/channel\/UCphbp65IJZIspwX3R_dEY3w"]},{"@type":"Person","@id":"https:\/\/seriousfactory.com\/blog\/#\/schema\/person\/ff78c4739fe0285ca74f732e8b46bd09","name":"William PERES","image":{"@type":"ImageObject","inLanguage":"fr-FR","@id":"https:\/\/secure.gravatar.com\/avatar\/c684d6135ed099ab9b9389fe4ef0021e26cfe180f949a1c3f4433ac9d0000d06?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c684d6135ed099ab9b9389fe4ef0021e26cfe180f949a1c3f4433ac9d0000d06?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c684d6135ed099ab9b9389fe4ef0021e26cfe180f949a1c3f4433ac9d0000d06?s=96&d=mm&r=g","caption":"William PERES"},"url":"https:\/\/seriousfactory.com\/blog\/author\/wperesseriousfactory-com\/"}]}},"_links":{"self":[{"href":"https:\/\/seriousfactory.com\/blog\/wp-json\/wp\/v2\/posts\/6658","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/seriousfactory.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/seriousfactory.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/seriousfactory.com\/blog\/wp-json\/wp\/v2\/users\/12"}],"replies":[{"embeddable":true,"href":"https:\/\/seriousfactory.com\/blog\/wp-json\/wp\/v2\/comments?post=6658"}],"version-history":[{"count":2,"href":"https:\/\/seriousfactory.com\/blog\/wp-json\/wp\/v2\/posts\/6658\/revisions"}],"predecessor-version":[{"id":6733,"href":"https:\/\/seriousfactory.com\/blog\/wp-json\/wp\/v2\/posts\/6658\/revisions\/6733"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/seriousfactory.com\/blog\/wp-json\/wp\/v2\/media\/6659"}],"wp:attachment":[{"href":"https:\/\/seriousfactory.com\/blog\/wp-json\/wp\/v2\/media?parent=6658"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/seriousfactory.com\/blog\/wp-json\/wp\/v2\/categories?post=6658"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/seriousfactory.com\/blog\/wp-json\/wp\/v2\/tags?post=6658"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}