Doing Ctrl-Alt-Break under BootCamp

74

Actually this is possible, looking here http://noahcoad.com/post/211/get-back-missing-windows-keys-on-mac-keyboard

Ctrl-Alt-Fn-Esc will toggle fullscreen.

I've tried it and it works prefectly.

Share:
74

Related videos on Youtube

artemonster
Author by

artemonster

Updated on September 18, 2022

Comments

  • artemonster
    artemonster over 1 year

    Lets say I have a python program that does following:

    do_some_long_data_crunching_computation()
    call_some_fiddly_new_crashing_function()
    

    Is there a way to "freeze" and serialize the state of python program (all globals and such) after the return point of first long computation and then re-iterate your development of new function and restart the program execution from this point?

    This is somewhat possible, if you are running the program from the interpreter, but is there any other way?

    • Admin
      Admin over 12 years
      I don't know, but Cmd-Alt-Break may be? When you use Ctrl in Windows, use Cmd in Mac.
    • David Ebbo
      David Ebbo over 12 years
      Actually, under BootCamp, Control is just Control. But the problem is more that the Mac keyboard doesn't have a 'break' key! :)
    • user3660103
      user3660103 over 12 years
      @Shouldn't it be one of the F# keys which are not there on windows keyboards? F13,F14 or F15, if you have them. My guess is on F14.
    • David Ebbo
      David Ebbo over 12 years
      My MacBook air only has up to F12
    • slhck
      slhck over 12 years
      So, fn alt crtl shift f12 doesn't do it as well!
  • David Ebbo
    David Ebbo almost 11 years
    Wow, it does work! I wonder why. On regular PC keyboards, is there some combination that includes Esc? The only one I know of is Ctrl-Alt-Break.
  • Dean Smith
    Dean Smith almost 11 years
    One thing I haven't checked is whether this still works without the BootCamp keyboard drivers installed. I'll try and check this later.
  • fixer1234
    fixer1234 over 6 years
    The question asks specifically about the MacBook Air keyboard, so this doesn't really answer the question.