keyboard shortcuts

is there any way of detecting a keyboard shortcut like: CTRL+S? like the way see file>save file in the bar where that would normally be? i want to make a HTML editor witch i can save my files with, so i don't have to press a button to save

Tagged:

Answers

  • Answer ✓
    // forum.Processing.org/two/discussion/17935/keyboard-shortcuts
    // GoToLoop (2016-Aug-22)
    
    void setup() {
      noLoop();
    }
    
    void draw() {
      background((color) random(#000000));
    }
    
    void keyTyped() {
      print((int) key, TAB);
      redraw();
    }
    
  • edited May 2017

    thanks, these are the shortcuts i found useful:

    CTRL-S: 19
    CTRL-R: 18
    CTRL-O: 15
    CTRL-N: 14

    EDIT:

    i also found the keyCode for COMMAND on the mac so i could do COMMAND + S (i work on a macbook pro)

Sign In or Register to comment.