Ask a Question related to Macromedia Flash Actionscript, Design and Development.

  1. #1

    Default Keypress captures

    Hi All,

    I have 2 mcs. I want the visibility of both of them to toggle upon pressing
    F1 and Spacebar respectively. How do I do that?

    Regards,

    Parag Shah



    Parag Shah Guest

  2. Similar Questions and Discussions

    1. Live Screen Captures of Powerpoint
      I do not know a lot about server technologies and have to find out information if my goal is possible with the flash media server. I need to have...
    2. wait for keypress
      Hi guys, can anyone explain how to make a movie wait for for a certain key press. I want to make a section of my movie wait for a press of the...
    3. Screen captures
      Hi All, Most of you have probably seen the spam emails that tell you to go check out their search engine optimizer, so you can get a better...
    4. keypress
      Bonjour je débute en actionscript et je voudrais combiner deux actions a savoir en plus du clic de souris je voudrais que l'on doit presser une...
  3. #2

    Default Re: Keypress captures

    using spacebar is no problem, but using f1 is a problem because it's an ie
    explorer default button for help. so if you're movie is being viewed in an ie
    window, you'll have an extra problem to overcome. here's code to toggle
    visibility using the down arrow and spacebar:

    myListener = new Object();
    myListener.onKeyDown = function() {
    if (Key.isDown(Key.SPACE)) {
    if (mc1._visible) {
    mc1._visible = 0;
    } else {
    mc1._visible = 1;
    }
    } else if (Key.isDown(Key.DOWN)) {
    if (mc2._visible) {
    mc2._visible = 0;
    } else {
    mc2._visible = 1;
    }
    }
    };
    Key.addListener(myListener);

    kglad Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139