Skip to content
Snippets Groups Projects
  1. Feb 13, 2020
  2. Feb 10, 2020
    • nightfox's avatar
      Version 1.04: Internal change only (no change in behavior for the user) -... · 246aa540
      nightfox authored
      Version 1.04: Internal change only (no change in behavior for the user) - Updated the way AddAdditionalQuitKeys() is called in the DDLightbarMenu objects, due to the change in dd_lightbar_menu.js
      246aa540
    • nightfox's avatar
      AddAdditionalSelectItemKeys() now takes a string specifying additional keys... · 4ee4ef43
      nightfox authored
      AddAdditionalSelectItemKeys() now takes a string specifying additional keys rather than an array of strings.  For instance, if you want both lowercase 'e' and uppercase 'E' to allow selecting an item, the call would look like this (assuming lbMenu is the menu object):
      lbMenu.AddAdditionalSelectItemKeys("eE");
      
      Also, changed AddAdditionalQuitKeys() to work the same way.
      
      Note: If you are using SlyVote, you will need to also update SlyVote, since SlyVote has also been updated to call AddAdditionalQuitKeys() this way.
      4ee4ef43
  3. Feb 09, 2020
    • nightfox's avatar
      New function: AddAdditionalSelectItemKeys(), which adds additional keys that... · 7498ae74
      nightfox authored
      New function: AddAdditionalSelectItemKeys(), which adds additional keys that can be used to select any item (in addition to Enter).  This function takes an array, and the keys are case-sensitive.  For example, to add the key E to select any item (assuming the menu object is lbMenu):
      lbMenu.AddAdditionalSelectItemKeys(["E"]);
      To make a case-insensitive verison, both the uppercase and lowercase letter would need to be added, as in the following example for E:
      lbMenu.AddAdditionalSelectItemKeys(["E", "e"]);
      
      Also, after showing the menu & getting a value from the user (using the GetVal() function), the lastUserInput property will have the user's last keypress.
      7498ae74
  4. Feb 04, 2020
  5. Feb 02, 2020
  6. Jan 31, 2020
  7. Jan 24, 2020
  8. Jan 23, 2020
  9. Jan 21, 2020
  10. Jan 20, 2020
  11. Jan 18, 2020
  12. Jan 15, 2020
  13. Jan 12, 2020
  14. Jan 10, 2020
  15. Jan 09, 2020
  16. Jan 06, 2020
  17. Jan 05, 2020
  18. Jan 04, 2020
  19. Jan 03, 2020
Loading