<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Remap Enterprise Guide hotkeys in SAS Enterprise Guide</title>
    <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Remap-Enterprise-Guide-hotkeys/m-p/341628#M22622</link>
    <description>&lt;P&gt;ot sure this helps because you need 'full SAS'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This may not help, but if you have full SAS you can easily map function keys. You can actuall execute "all of sas" on 'full SAS' function keys(or mouse actions or command line)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just type keys on the command line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Suppose you have a&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;F3 &amp;nbsp;'%macro list_last_data;'&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;F5 &amp;nbsp;% '%freq_all_vars'&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just switch then text&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;F3 &amp;nbsp;% '%freq_all_vars'&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt; &amp;nbsp;F5 &amp;nbsp;'%macro list_last_data;'&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 16 Mar 2017 15:39:27 GMT</pubDate>
    <dc:creator>rogerjdeangelis</dc:creator>
    <dc:date>2017-03-16T15:39:27Z</dc:date>
    <item>
      <title>Remap Enterprise Guide hotkeys</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Remap-Enterprise-Guide-hotkeys/m-p/341360#M22614</link>
      <description>&lt;P&gt;Summary: &amp;nbsp;How can I remap the Enterprise Guide hotkeys? &amp;nbsp;Like we can in DMS?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Details: &amp;nbsp;We have to move between Enterprise Guide and SQL Server Management Studio all the time. &amp;nbsp;A colleague would like to map F5 to be the current F3 functionality, so we have the same key for the same action across the two clients. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this can't be done, I'll put in the enhancement request. &amp;nbsp;Let me know if that's already been done and rejected so I don't create a dup.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Mar 2017 22:49:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Remap-Enterprise-Guide-hotkeys/m-p/341360#M22614</guid>
      <dc:creator>ScottBass</dc:creator>
      <dc:date>2017-03-15T22:49:38Z</dc:date>
    </item>
    <item>
      <title>Re: Remap Enterprise Guide hotkeys</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Remap-Enterprise-Guide-hotkeys/m-p/341373#M22615</link>
      <description>&lt;P&gt;As far as I'm aware this can't be done. You can assign keys for editing programs but not function keys for tasks like submitting code.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2017 00:31:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Remap-Enterprise-Guide-hotkeys/m-p/341373#M22615</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2017-03-16T00:31:03Z</dc:date>
    </item>
    <item>
      <title>Re: Remap Enterprise Guide hotkeys</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Remap-Enterprise-Guide-hotkeys/m-p/341547#M22619</link>
      <description>&lt;P&gt;I've heard from a number of users who successfully &lt;A href="https://autohotkey.com/" target="_self"&gt;use AutoHotkey (a free tool, easy to install)&lt;/A&gt; to map key actions for SAS Enterprise Guide and many other apps. &amp;nbsp;For example, I had one person who wanted to&amp;nbsp;&lt;STRONG&gt;unmap&lt;/STRONG&gt; F8 in SAS Enterprise Guide -- which currently will submit the active program or even an entire flow. &amp;nbsp;Installing AutoHotkey and enabling this script does the job:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;#NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
#Warn  ; Enable warnings to assist with detecting common errors.
SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.

#SingleInstance force
#InstallKeybdHook

F8::
    WinGet, Active_ID, ID, A
    WinGet, Active_Process, ProcessName, ahk_id %Active_ID%
    if ( Active_Process ="seguide.exe" ) {

        ;eat the keystroke

    } &lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Update: &lt;A href="http://blogs.sas.com/content/sasdummy/2017/07/17/sas-eg-key-mappings/" target="_self"&gt;here's how to customize your keys in SAS EG using AutoHotkey&lt;/A&gt;.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Jul 2017 12:30:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Remap-Enterprise-Guide-hotkeys/m-p/341547#M22619</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2017-07-18T12:30:05Z</dc:date>
    </item>
    <item>
      <title>Re: Remap Enterprise Guide hotkeys</title>
      <link>https://communities.sas.com/t5/SAS-Enterprise-Guide/Remap-Enterprise-Guide-hotkeys/m-p/341628#M22622</link>
      <description>&lt;P&gt;ot sure this helps because you need 'full SAS'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This may not help, but if you have full SAS you can easily map function keys. You can actuall execute "all of sas" on 'full SAS' function keys(or mouse actions or command line)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just type keys on the command line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Suppose you have a&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;F3 &amp;nbsp;'%macro list_last_data;'&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;F5 &amp;nbsp;% '%freq_all_vars'&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just switch then text&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;F3 &amp;nbsp;% '%freq_all_vars'&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt; &amp;nbsp;F5 &amp;nbsp;'%macro list_last_data;'&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Mar 2017 15:39:27 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Enterprise-Guide/Remap-Enterprise-Guide-hotkeys/m-p/341628#M22622</guid>
      <dc:creator>rogerjdeangelis</dc:creator>
      <dc:date>2017-03-16T15:39:27Z</dc:date>
    </item>
  </channel>
</rss>

