ctrl modifier for key

gr@grrrr.org's icon

Hi,
for the last >10 years i have used ctrl-modifiers for keyboard commands in my Max performance patch. With Max 6.1 i am suddenly confronted with system beeps whenever i use key combinations like ctrl-q, ctrl-w, ctrl-e, and so on. The beeps are not issued through Max DSP, but are rather emitted from the system speaker or headphone output.
Is this intended behavior, and how could i get rid of it?

thanks, all the best,
Thomas

gr@grrrr.org's icon

oh, i should probably say that this is on a Mac, using OS 10.5.8. Experienced with Max 6.1.5.

01ri's icon

I have the same issue. It also happens with alt as well.

I'm on Mac OSX 10.7.5. Max 6.1.5

Thanks

Ron's icon

the beep makes performance difficult!! Any way to shut it off?

Josh Stovall's icon

bump...
5 years later. Is there a solution to this?

Josh Stovall's icon

Any way to do this for a standalone application?

Source Audio's icon

osascript -e 'set volume alert volume 0'

send this to shell.
Inverting that to previous value is more complicated, because
You need to disable command q , as quitting standalone this way
would prevent it from executing script on closebang or any other
auto - execute on quit script.
And You will need to capture last alert volume value to restore it.
You could simply set it to maximum though :
osascript -e 'set volume alert volume 100'.
or try this to capture alert volume before setting it to 100.

Max Patch
Copy patch and select New From Clipboard in Max.

--------
Disabling command q is also possible, by setting that shortcut
to something meaningless for the standalone app.
You do that in System Preferences - Keyboard Shortcuts

than You make a "Quit" button in standalone to
restore alert volume, and short time after
; max quit message

Source Audio's icon

P.S.

if You dislike using shell compile apple script

set volume alert volume 0
as for example KillAlert.app
and start it using message
;
max launchbrowser file:///Applications/KillAlert.app

Roman Thilenius's icon

i wonder what causes this. it is not a normal bevahiour of an app.

Josh Stovall's icon

I did find another solution...

create a shortcut with [menubar]


Example

#X item 6 1 MenuItem/1;

now, ⌘ + 1 will trigger MenuItem (silently!)

Roman Thilenius's icon

seems logical - good idea.

now if only there would be an easy way how to run off the default shortcuts, so that custom patches can use single letters as input. :)