{"id":578,"date":"2026-06-03T14:17:47","date_gmt":"2026-06-03T14:17:47","guid":{"rendered":"https:\/\/navifut.com\/?p=578"},"modified":"2026-06-20T10:18:18","modified_gmt":"2026-06-20T10:18:18","slug":"foot-mouse-scroll-mode-autohotkey-windows","status":"publish","type":"post","link":"https:\/\/navifut.com\/it\/foot-mouse-scroll-mode-autohotkey-windows\/","title":{"rendered":"How to Scroll Up\/Down Left\/Right with Your NaviFut Foot Mouse (Windows)"},"content":{"rendered":"<p class=\"\">The xStep works as a standard plug-and-play mouse out of the box. But with a free tool called AutoHotkey, you can unlock an extra feature: a scroll mode that lets you scroll any page or document just by moving your foot \u2014 no hands needed.<\/p>\n\n\n\n<p class=\"\">This guide walks you through the full setup on Windows.<\/p>\n\n\n\n<p class=\"\"><strong>What You&#8217;ll Need<\/strong><\/p>\n\n\n\n<p class=\"\">A Windows PC and about 5 minutes.<\/p>\n\n\n\n<p class=\"\"><strong>Step 1 \u2014 Download AutoHotkey<\/strong><\/p>\n\n\n\n<p class=\"\">Go to <a href=\"https:\/\/www.autohotkey.com\/download\/1.1\/\" target=\"_blank\" rel=\"noreferrer noopener\">https:\/\/www.autohotkey.com\/download\/1.1\/<\/a> and click Download. Make sure you download version 1.1. Do not download version 2, the script will not work with it.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1823\" height=\"1125\" loading=\"lazy\" src=\"https:\/\/i0.wp.com\/navifut.com\/wp-content\/uploads\/2026\/06\/image.png?fit=1024%2C632&amp;ssl=1\" alt=\"\" class=\"wp-image-579\" srcset=\"https:\/\/i0.wp.com\/navifut.com\/wp-content\/uploads\/2026\/06\/image.png?w=1823&amp;ssl=1 1823w, https:\/\/i0.wp.com\/navifut.com\/wp-content\/uploads\/2026\/06\/image.png?resize=300%2C185&amp;ssl=1 300w, https:\/\/i0.wp.com\/navifut.com\/wp-content\/uploads\/2026\/06\/image.png?resize=1024%2C632&amp;ssl=1 1024w, https:\/\/i0.wp.com\/navifut.com\/wp-content\/uploads\/2026\/06\/image.png?resize=768%2C474&amp;ssl=1 768w, https:\/\/i0.wp.com\/navifut.com\/wp-content\/uploads\/2026\/06\/image.png?resize=1536%2C948&amp;ssl=1 1536w, https:\/\/i0.wp.com\/navifut.com\/wp-content\/uploads\/2026\/06\/image.png?resize=18%2C12&amp;ssl=1 18w, https:\/\/i0.wp.com\/navifut.com\/wp-content\/uploads\/2026\/06\/image.png?resize=600%2C370&amp;ssl=1 600w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><\/figure>\n\n\n\n<p class=\"\">Run the installer and follow the default steps.<\/p>\n\n\n\n<p class=\"\"><\/p>\n\n\n\n<p class=\"\"><strong>Step 2 \u2014 Create the Script File<\/strong><\/p>\n\n\n\n<p class=\"\">Open Notepad (search for it in the Windows start menu).<\/p>\n\n\n\n<p class=\"\">Copy and paste the following script into Notepad:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#NoEnv\n#SingleInstance Force\nSendMode Input\n\n; Variables\nscrollMode := false\nlastRClick := 0\n\nRButton::\n    currentTime := A_TickCount\n    timeDiff := currentTime - lastRClick\n\n    if (scrollMode)\n    {\n        scrollMode := false\n        ToolTip, Scroll Mode OFF\n        SetTimer, RemoveToolTip, -1000\n        SetTimer, DoScroll, Off\n        lastRClick := 0\n        return\n    }\n\n    if (timeDiff &lt; 1500) ; &lt;-- Maximum delay in ms between the two clicks to activate scroll mode. Increase if too fast, decrease if too sensitive\n    {\n        Send, {Escape}\n        scrollMode := true\n        ToolTip, Scroll Mode ON\n        SetTimer, RemoveToolTip, -1000\n        SetTimer, DoScroll, 20\n        lastRClick := 0\n    }\n    else\n    {\n        lastRClick := currentTime\n        Send, {RButton}\n    }\nreturn\n\nLButton::\n    if (scrollMode)\n    {\n        scrollMode := false\n        ToolTip, Scroll Mode OFF\n        SetTimer, RemoveToolTip, -1000\n        SetTimer, DoScroll, Off\n    }\n    else\n        Send, {LButton}\nreturn\n\nDoScroll:\n    if (!scrollMode)\n    {\n        SetTimer, DoScroll, Off\n        return\n    }\n    MouseGetPos, mouseX, mouseY\n\n    deltaX := mouseX - lastX\n    deltaY := mouseY - lastY\n\n     if (Abs(deltaY) > 5) ; &lt;-- adjust this number to modify scroll speed\n        Send, % (deltaY > 0) ? \"{WheelDown}\" : \"{WheelUp}\"\n    if (Abs(deltaX) > 5) ; &lt;-- adjust this number to modify scroll speed\n        Send, % (deltaX > 0) ? \"{WheelRight}\" : \"{WheelLeft}\"\n\n    lastX := mouseX\n    lastY := mouseY\nreturn\n\nRemoveToolTip:\n    ToolTip\nreturn<\/code><\/pre>\n\n\n\n<p class=\"\">Now save the file. Click File \u2192 Save As. At the bottom of the save dialog, change &#8220;Save as type&#8221; to <strong>All Files<\/strong>. Name the file <strong>NaviFut_scroll_mode.ahk<\/strong> and save it somewhere easy to find, like your Desktop.<\/p>\n\n\n\n<p class=\"\"><strong>Step 3 \u2014 Run the Script<\/strong><\/p>\n\n\n\n<p class=\"\">Double-click the <strong>scroll_mode.ahk<\/strong> file. A small green icon will appear in your system tray (bottom right of your taskbar). That means the script is running.<\/p>\n\n\n\n<p class=\"\"><strong>Step 4 \u2014 How to Use Scroll Mode<\/strong><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"\"><strong>Double right-click<\/strong> with the xStep to activate scroll mode. A small tooltip will confirm &#8220;Scroll Mode ON&#8221;<\/li>\n\n\n\n<li class=\"\"><strong>Move your foot<\/strong> to scroll &#8211; forward\/backward scrolls up and down, left\/right scrolls laterally<\/li>\n\n\n\n<li class=\"\"><strong>Any single left or right click<\/strong> exits scroll mode and returns to normal cursor control<\/li>\n<\/ul>\n\n\n\n<p class=\"\"><\/p>\n\n\n\n<p class=\"\"><strong>How to Stop the Script<\/strong><\/p>\n\n\n\n<p class=\"\">Right-click the green icon in the system tray and select Exit. Your mouse will return to normal behaviour immediately.<\/p>\n\n\n\n<p class=\"\"><strong>How to Make It Start Automatically with Windows<\/strong><\/p>\n\n\n\n<p class=\"\">If you want the script to run every time you start your PC, press <strong>Windows + R<\/strong>, type <code>shell:startup<\/code> and press Enter. Copy your <strong>scroll_mode.ahk<\/strong> file into the folder that opens. That&#8217;s it.<\/p>\n\n\n\n<p class=\"\"><strong>Troubleshooting<\/strong><\/p>\n\n\n\n<p class=\"\"><em>The double-click isn&#8217;t triggering scroll mode.<\/em> The default window between the two clicks is 1500ms. If you find it too sensitive or not sensitive enough, open the script in Notepad, find the line that says <code>if (timeDiff &lt; 1500)<\/code> and change the number to suit your preference.<\/p>\n\n\n\n<p class=\"\"><em>The context menu doesn&#8217;t close when scroll mode activates.<\/em> This can happen in some applications. It doesn&#8217;t affect scroll mode itself &#8211; just close it manually and continue scrolling.<\/p>\n\n\n\n<p class=\"\"><em>The script stopped working after a Windows update.<\/em> Just double-click the .ahk file again to restart it.<\/p>\n\n\n\n<p class=\"\">Mac and Linux versions of this guide are coming soon. If you need help setting up button remapping or custom scripts on any platform, feel free to reach out via our contact page.<\/p>","protected":false},"excerpt":{"rendered":"<p>The xStep works as a standard plug-and-play mouse out of the box. But with a free tool called AutoHotkey, you can unlock an extra feature: a scroll mode that lets you scroll any page or document just by moving your foot \u2014 no hands needed. This guide walks you through the full setup on Windows. [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":582,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"nf_dc_page":"","om_disable_all_campaigns":false,"_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_post_was_ever_published":false},"categories":[24],"tags":[],"class_list":["post-578","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-resources"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Scroll Hands-Free with Your Foot Mouse on Windows<\/title>\n<meta name=\"description\" content=\"Learn how to turn your NaviFut foot mouse into a scroll wheel using a free AutoHotkey script. Step-by-step setup guide for Windows users.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/navifut.com\/it\/foot-mouse-scroll-mode-autohotkey-windows\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Scroll Hands-Free with Your Foot Mouse on Windows\" \/>\n<meta property=\"og:description\" content=\"Learn how to turn your NaviFut foot mouse into a scroll wheel using a free AutoHotkey script. Step-by-step setup guide for Windows users.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/navifut.com\/it\/foot-mouse-scroll-mode-autohotkey-windows\/\" \/>\n<meta property=\"og:site_name\" content=\"NaviFut\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-03T14:17:47+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-20T10:18:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/navifut.com\/wp-content\/uploads\/2026\/06\/Picture6-e1781950685314.png\" \/>\n\t<meta property=\"og:image:width\" content=\"965\" \/>\n\t<meta property=\"og:image:height\" content=\"798\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"NaviFut\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Scritto da\" \/>\n\t<meta name=\"twitter:data1\" content=\"NaviFut\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tempo di lettura stimato\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/navifut.com\\\/foot-mouse-scroll-mode-autohotkey-windows\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/navifut.com\\\/foot-mouse-scroll-mode-autohotkey-windows\\\/\"},\"author\":{\"name\":\"NaviFut\",\"@id\":\"https:\\\/\\\/navifut.com\\\/#\\\/schema\\\/person\\\/6c5607f4e811200dab20413054e58444\"},\"headline\":\"How to Scroll Up\\\/Down Left\\\/Right with Your NaviFut Foot Mouse (Windows)\",\"datePublished\":\"2026-06-03T14:17:47+00:00\",\"dateModified\":\"2026-06-20T10:18:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/navifut.com\\\/foot-mouse-scroll-mode-autohotkey-windows\\\/\"},\"wordCount\":453,\"publisher\":{\"@id\":\"https:\\\/\\\/navifut.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/navifut.com\\\/foot-mouse-scroll-mode-autohotkey-windows\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/navifut.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Picture6-e1781950685314.png?fit=965%2C798&ssl=1\",\"articleSection\":[\"Resources\"],\"inLanguage\":\"it-IT\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/navifut.com\\\/foot-mouse-scroll-mode-autohotkey-windows\\\/\",\"url\":\"https:\\\/\\\/navifut.com\\\/foot-mouse-scroll-mode-autohotkey-windows\\\/\",\"name\":\"How to Scroll Hands-Free with Your Foot Mouse on Windows\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/navifut.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/navifut.com\\\/foot-mouse-scroll-mode-autohotkey-windows\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/navifut.com\\\/foot-mouse-scroll-mode-autohotkey-windows\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/i0.wp.com\\\/navifut.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Picture6-e1781950685314.png?fit=965%2C798&ssl=1\",\"datePublished\":\"2026-06-03T14:17:47+00:00\",\"dateModified\":\"2026-06-20T10:18:18+00:00\",\"description\":\"Learn how to turn your NaviFut foot mouse into a scroll wheel using a free AutoHotkey script. Step-by-step setup guide for Windows users.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/navifut.com\\\/foot-mouse-scroll-mode-autohotkey-windows\\\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/navifut.com\\\/foot-mouse-scroll-mode-autohotkey-windows\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/navifut.com\\\/foot-mouse-scroll-mode-autohotkey-windows\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/navifut.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Picture6-e1781950685314.png?fit=965%2C798&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/navifut.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/Picture6-e1781950685314.png?fit=965%2C798&ssl=1\",\"width\":965,\"height\":798},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/navifut.com\\\/foot-mouse-scroll-mode-autohotkey-windows\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/navifut.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Scroll Up\\\/Down Left\\\/Right with Your NaviFut Foot Mouse (Windows)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/navifut.com\\\/#website\",\"url\":\"https:\\\/\\\/navifut.com\\\/\",\"name\":\"NaviFut\",\"description\":\"Revolutionizing Accessibility and Productivity\",\"publisher\":{\"@id\":\"https:\\\/\\\/navifut.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/navifut.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/navifut.com\\\/#organization\",\"name\":\"NaviFut\",\"url\":\"https:\\\/\\\/navifut.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/navifut.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/navifut.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Logo.png?fit=1812%2C505&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/navifut.com\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/Logo.png?fit=1812%2C505&ssl=1\",\"width\":1812,\"height\":505,\"caption\":\"NaviFut\"},\"image\":{\"@id\":\"https:\\\/\\\/navifut.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.linkedin.com\\\/company\\\/navifut\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/navifut.com\\\/#\\\/schema\\\/person\\\/6c5607f4e811200dab20413054e58444\",\"name\":\"NaviFut\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/483ccf549f97a534c26f3580c3cd7c74d45174563415f0c0e6bdb000971ae642?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/483ccf549f97a534c26f3580c3cd7c74d45174563415f0c0e6bdb000971ae642?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/483ccf549f97a534c26f3580c3cd7c74d45174563415f0c0e6bdb000971ae642?s=96&d=mm&r=g\",\"caption\":\"NaviFut\"},\"url\":\"https:\\\/\\\/navifut.com\\\/it\\\/author\\\/navifut\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Scroll Hands-Free with Your Foot Mouse on Windows","description":"Learn how to turn your NaviFut foot mouse into a scroll wheel using a free AutoHotkey script. Step-by-step setup guide for Windows users.","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:\/\/navifut.com\/it\/foot-mouse-scroll-mode-autohotkey-windows\/","og_locale":"it_IT","og_type":"article","og_title":"How to Scroll Hands-Free with Your Foot Mouse on Windows","og_description":"Learn how to turn your NaviFut foot mouse into a scroll wheel using a free AutoHotkey script. Step-by-step setup guide for Windows users.","og_url":"https:\/\/navifut.com\/it\/foot-mouse-scroll-mode-autohotkey-windows\/","og_site_name":"NaviFut","article_published_time":"2026-06-03T14:17:47+00:00","article_modified_time":"2026-06-20T10:18:18+00:00","og_image":[{"width":965,"height":798,"url":"https:\/\/navifut.com\/wp-content\/uploads\/2026\/06\/Picture6-e1781950685314.png","type":"image\/png"}],"author":"NaviFut","twitter_card":"summary_large_image","twitter_misc":{"Scritto da":"NaviFut","Tempo di lettura stimato":"3 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/navifut.com\/foot-mouse-scroll-mode-autohotkey-windows\/#article","isPartOf":{"@id":"https:\/\/navifut.com\/foot-mouse-scroll-mode-autohotkey-windows\/"},"author":{"name":"NaviFut","@id":"https:\/\/navifut.com\/#\/schema\/person\/6c5607f4e811200dab20413054e58444"},"headline":"How to Scroll Up\/Down Left\/Right with Your NaviFut Foot Mouse (Windows)","datePublished":"2026-06-03T14:17:47+00:00","dateModified":"2026-06-20T10:18:18+00:00","mainEntityOfPage":{"@id":"https:\/\/navifut.com\/foot-mouse-scroll-mode-autohotkey-windows\/"},"wordCount":453,"publisher":{"@id":"https:\/\/navifut.com\/#organization"},"image":{"@id":"https:\/\/navifut.com\/foot-mouse-scroll-mode-autohotkey-windows\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/navifut.com\/wp-content\/uploads\/2026\/06\/Picture6-e1781950685314.png?fit=965%2C798&ssl=1","articleSection":["Resources"],"inLanguage":"it-IT"},{"@type":"WebPage","@id":"https:\/\/navifut.com\/foot-mouse-scroll-mode-autohotkey-windows\/","url":"https:\/\/navifut.com\/foot-mouse-scroll-mode-autohotkey-windows\/","name":"How to Scroll Hands-Free with Your Foot Mouse on Windows","isPartOf":{"@id":"https:\/\/navifut.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/navifut.com\/foot-mouse-scroll-mode-autohotkey-windows\/#primaryimage"},"image":{"@id":"https:\/\/navifut.com\/foot-mouse-scroll-mode-autohotkey-windows\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/navifut.com\/wp-content\/uploads\/2026\/06\/Picture6-e1781950685314.png?fit=965%2C798&ssl=1","datePublished":"2026-06-03T14:17:47+00:00","dateModified":"2026-06-20T10:18:18+00:00","description":"Learn how to turn your NaviFut foot mouse into a scroll wheel using a free AutoHotkey script. Step-by-step setup guide for Windows users.","breadcrumb":{"@id":"https:\/\/navifut.com\/foot-mouse-scroll-mode-autohotkey-windows\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/navifut.com\/foot-mouse-scroll-mode-autohotkey-windows\/"]}]},{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/navifut.com\/foot-mouse-scroll-mode-autohotkey-windows\/#primaryimage","url":"https:\/\/i0.wp.com\/navifut.com\/wp-content\/uploads\/2026\/06\/Picture6-e1781950685314.png?fit=965%2C798&ssl=1","contentUrl":"https:\/\/i0.wp.com\/navifut.com\/wp-content\/uploads\/2026\/06\/Picture6-e1781950685314.png?fit=965%2C798&ssl=1","width":965,"height":798},{"@type":"BreadcrumbList","@id":"https:\/\/navifut.com\/foot-mouse-scroll-mode-autohotkey-windows\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/navifut.com\/"},{"@type":"ListItem","position":2,"name":"How to Scroll Up\/Down Left\/Right with Your NaviFut Foot Mouse (Windows)"}]},{"@type":"WebSite","@id":"https:\/\/navifut.com\/#website","url":"https:\/\/navifut.com\/","name":"NaviFut","description":"Rivoluzionare l&#039;accessibilit\u00e0 e la produttivit\u00e0","publisher":{"@id":"https:\/\/navifut.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/navifut.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"it-IT"},{"@type":"Organization","@id":"https:\/\/navifut.com\/#organization","name":"NaviFut","url":"https:\/\/navifut.com\/","logo":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/navifut.com\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/navifut.com\/wp-content\/uploads\/2025\/05\/Logo.png?fit=1812%2C505&ssl=1","contentUrl":"https:\/\/i0.wp.com\/navifut.com\/wp-content\/uploads\/2025\/05\/Logo.png?fit=1812%2C505&ssl=1","width":1812,"height":505,"caption":"NaviFut"},"image":{"@id":"https:\/\/navifut.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.linkedin.com\/company\/navifut"]},{"@type":"Person","@id":"https:\/\/navifut.com\/#\/schema\/person\/6c5607f4e811200dab20413054e58444","name":"NaviFut","image":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/secure.gravatar.com\/avatar\/483ccf549f97a534c26f3580c3cd7c74d45174563415f0c0e6bdb000971ae642?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/483ccf549f97a534c26f3580c3cd7c74d45174563415f0c0e6bdb000971ae642?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/483ccf549f97a534c26f3580c3cd7c74d45174563415f0c0e6bdb000971ae642?s=96&d=mm&r=g","caption":"NaviFut"},"url":"https:\/\/navifut.com\/it\/author\/navifut\/"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/navifut.com\/wp-content\/uploads\/2026\/06\/Picture6-e1781950685314.png?fit=965%2C798&ssl=1","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/navifut.com\/it\/wp-json\/wp\/v2\/posts\/578","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/navifut.com\/it\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/navifut.com\/it\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/navifut.com\/it\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/navifut.com\/it\/wp-json\/wp\/v2\/comments?post=578"}],"version-history":[{"count":3,"href":"https:\/\/navifut.com\/it\/wp-json\/wp\/v2\/posts\/578\/revisions"}],"predecessor-version":[{"id":586,"href":"https:\/\/navifut.com\/it\/wp-json\/wp\/v2\/posts\/578\/revisions\/586"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/navifut.com\/it\/wp-json\/wp\/v2\/media\/582"}],"wp:attachment":[{"href":"https:\/\/navifut.com\/it\/wp-json\/wp\/v2\/media?parent=578"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/navifut.com\/it\/wp-json\/wp\/v2\/categories?post=578"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/navifut.com\/it\/wp-json\/wp\/v2\/tags?post=578"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}