Come faccio a impostare la finestra a minimizzare e massimizzare la velocità senza usare il tasto Maiusc

2

Vorrei configurare il mio computer (Macbook running snow leopard) in modo da massimizzare e minimizzare lentamente le finestre. So che questo può essere fatto tenendo premuto il tasto MAIUSC mentre si riduce a icona, ma posso impostarlo come predefinito in modo da non dover tenere premuto il tasto MAIUSC?

    
posta tea cook 20.03.2012 - 06:24
fonte

2 risposte

1

Puoi farlo usando l'Applescript qui sotto. Avrai bisogno di CornerClick e puoi trovare maggiori informazioni su MacWorld .

tell application "System Events"
  keystroke "m" using command down
  key down shift
  delay 0.3
  key up shift
end tell

tell application "System Events"
  set proc to name of the first process whose frontmost is true
  tell process proc
    -- add error trapping here
    tell its window 1
      set w to its name
      if get value of attribute "AXMinimized" is false then
        tell application "System Events"
          keystroke "m" using command down
          key down shift
          delay 0.3
          key up shift
        end tell
      end if
    end tell
    --
  end tell
end tell

say "Collapse" using "Alex"
    
risposta data 20.03.2012 - 10:47
fonte
0

Moom

Moom allows you to easily move and zoom windows—on one display, or to another display—using either the mouse or the keyboard.

    
risposta data 19.08.2012 - 07:53
fonte

Leggi altre domande sui tag