[ZSH] Right click key turning text into caps lock

Hi,
In zsh, my right click key turns text in caps lock and I have to type Ctrl+C to get back to the command prompt.
Is there a way to change this behaviour ?
Thanks

You can check the caps lock only if the swf has focus. When embedded in an HTML doc, the swf  does not receive focus by default.
Create a new FLA and add a TextField labeled "status".
Add this script to the first frame.
var state:String="INACTIVE"
addEventListener(Event.ACTIVATE, ah);
addEventListener(Event.DEACTIVATE, dh);
addEventListener(Event.ENTER_FRAME, efh);
function checkCapsLock():void {
status.text= state + "  " + "Keyboard: Caps Lock " +
  (Keyboard.capsLock ? "ON" : "OFF") + "!";
function efh(event:Event)
checkCapsLock();
function ah(event:Event)
state="ACTIVE";
checkCapsLock();
function dh(event:Event)
state="INACTIVE";
checkCapsLock();
Run this in a browser and click inside and outside the swf area, while toggling the Caps Lock.

Similar Messages

  • Error KeyNote 09 with mouse right click over any text box

    Hi,
    I always receive the message "Unexpected error" when right click over any text box on Keynote 09.
    I have tried everythin (remove preferences, reinstall, ...) but nothing works...
    Any suggestion?
    Regards,

    Hi All,
    I found the culprit to be Babylon as well. Instead of removing Babylon, I changed the key combination to something funky like CMDOPT+SHIFTMOUSE click to call up the translator. After doing so, the Keynote right-click error went away.
    cheers

  • "How do you turn text into a hyperlinx can't find menu at top in Muse

    "How do you turn text into a hyperlinx can't find menu at top in Muse

    Hello,
    In order to turn a tet into Hyperlink, you first need to select the text and then in the toolbar look for "Links" option. Click on the dropdown and either select one of the pages or type in your own link.
    Please have a look at the video below : http://trainingwebcom.worldsecuresystems.com/SachinFTP/2013-02-15_1945.swf
    Hope this helps.
    Regards,
    Sachin

  • Anyway to turn text into a graphic?

    Is there any way to turn text into a graphic like iweb 07 could do?

    The first version of iWeb was really bad at converting text to images, even the "good" text. The latest version seems to be a bit too lenient and at least for me, has let fonts that are DEFINITELY not on the "good" list stay text.
    I've taken to inserting a rounded rectangle, changing it's fill and opacity to "None" and altering the "corner" control so that it looks just like a sharp edged rectangle. You type into it like it's a text box, it fills and flows like it's a text box, but it ALWAYS renders as an image without fail. This has the added benefit of being able to easily edit in iWeb (without having to create a new text object, and copying through Preview each time you make a change).
    To see what text is going to render as an image before you publish, go into iWeb's preferences and turn on "Show text imaging indicator". Here's one of my pages that had stubborn "didn't want to render as an image" text that I used this on.
    http://www.makentosh.com/tipsfromtheiceberg/Blog/Entries/2006/2/14Day_of_hearts_and_heart-likeshapes.html
    For some reason, the "I Love Deadlines", which rendered fine with iWeb 1, had to be coerced to become an image with iWeb 2.
    Message was edited by: Kyn Drake

  • Implemenation of windows right click key

    i want to know how is the windows application key alias windows right click key is handled in java .
    Is the functionality provided for the right click key in any of the java versions.
    If yes , how is it done ? what is its keycode ?
    If no , why what is the reason ?
    and Is there any work around to implement the right click key if there is no direct solution .

    Hi Rommie,
    Thanks for your kind information .
    I want to know how is the windows right click key or context key is handled through keyboard instead through mouse .
    I attempted to handle the Context key in Java in KeyPressed event. However, there is no specific key code . In Java, it returns a VK_UNDEFINED virtual key code. But, since the same VK_UNDEFINED is returned for other keys as well, say for Windows key or when using a Japanese key board, there seems to be no direct way to handle Context key in Java.
    I would appreciate if there is anyother workaround solution that you may be aware of to handle the same.
    Thanks in advance,
    Amar.

  • Turn of the Cap Lock?

    My text tool only allows all capital letters. How do I turn of the Cap Lock?

    Your keyboard must have a key called:  Caps Lock
    This is normally above the shift key.
    It is a toggle key so press once to turn it on;  Press again to turn it OFF;  You get the idea.

  • [2.1.1-64] Right-clicking to "Copy" text in Script Output and other windows

    Right-clicking should bring up a menu to "Copy" text in Script Output. The short cut key for copy does work as a workaround.

    The tricky bit is knowing which story you want copied first. But you certainly don't want to involve system Events, or even copy and paste. This should get you started:
    tell application "Adobe InDesign CS4"
    set theSel to selection
    set thePage to parent of item 1 of selection
    set emptyFrame to text frame 1 of thePage whose contents = ""
    duplicate parent story of item 1 of theSel to after insertion point 1 of emptyFrame
    duplicate parent story of item 2 of theSel to after insertion point 1 of emptyFrame
    end tell

  • How do you turn off the Caps Lock key?

    According to "Mac OS X, Tiger Edition, THE MISSING MANUAL," "A new button in System Preferences lets you reassign or disable the function of your Option, Caps Lock, and Control keys...." Well, I think the most annoying thing about my MacBook is that I keep hitting the Caps Lock inadvertently, and end up typing unwanted capitals. HOW DO YOU DISABLE THE CAPS LOCK?

    David JD wrote:
    Hello Niku.Go into System Prefs. click Keyboard & Mouse, Click first tab in the box "Keyboard",click bottom tab "Modifier Keys", select drop down menu on top tab "Caps Lock" and select No Action. Same expalnation as other answers.
    David.
    I think I see the problem. I can get to "Keyboard," but when I click on it there is no bottom tag labeled "Modifier Keys". In fact, there is no bottom tab. Therefore, there is no drop down menu, and no "Caps Lock," and no "No Action". What I see when I click on "Keyboard" is only what I mentioned in a previous posting. Two sentences, as I recall.

  • Simple Right-click menu in Text Area

    How can I simply implement a right-click menu with
    the options copy-paste on a text area or editor pane?
    I believe there must be ready code for sth like that.

        protected void createPopupMenu ()
            mMenu = new JPopupMenu ();
            cutOption = mMenu.add(new JMenuItem("Cut"));
            cutOption .addActionListener ( new ActionListener ()
                public void actionPerformed ( ActionEvent e )
                   //do cut here
            copyOption = mMenu.add(new JMenuItem("Copy"));
            copyOption .addActionListener ( new ActionListener ()
                public void actionPerformed ( ActionEvent e )
                   //do copy here
            pasteOption = mMenu.add(new JMenuItem("Paste"));
            pasteOption .addActionListener ( new ActionListener ()
                public void actionPerformed ( ActionEvent e )
                   //do paste here
            });when you instantiate your textarea or editpane add this line:
            createPopupMenu (); //popup menu for right clickshould work perfectly

  • Why Can't I Right-click Open A Bookmark Into A Private Window?

    Hello Mozilla,
    I have always wondered why am I not allowed to right-click open any of my bookmarks from a normal window into a "Private Window" like in Opera or "Incognito Window" like in Google Chrome???
    Why do I first have to click open the menu(or Ctrl+Shift+P), click "New Private Window" just so I can then be able to use my bookmarks in Private mode. In Google Chrome and Opera I don't need to open a Private Window. I can just right-click any bookmark in a normal window and automatically open it into a private window for many years now.
    Why can't Firefox do the same?

    Why can't it do it natively like Opera and Chrome?
    "You will also have the choice in the context menu to open a bookmark in a new Private Tab."
    How do I open/access "context menu"?
    Also this Add-on does not solve the issue. It still requires me to open a menu, open a "Private tab, then click one of the bookmarks instead of the direct right click-bookmark-into-Private/Incognito-Window method of Opera and Chrome.

  • How to make modifier keys lockable? (like Caps Lock for Ctrl or Alt)

    Playing around with the non-modal text editor ne, I found myself wondering if one could simulate a modal interface (like vim has) by having something like "Ctrl Lock" or "Alt Lock" (analogous to Caps Lock) and thus a "ctrl mode"/"alt mode". I would like to try this, but I am not sure how to make it happen.
    My best guess is that this could be accomplished via XKB, but its documentation looks pretty intimidating. Is anyone here proficient in XKB and could point me in the right direction?
    Other ideas:
    – Is this something that a terminal emulator could do? Is there already one that can do it?
    – Or a shell?
    – For console applications, would it be possible to have a small wrapper that did nothing but intercept keyboard input and just pass everything through to the wrapped process, except that it would take into account the desired lockable modifier key? (I am thinking of tput here, but from my first search it appears that it doesn't do this sort of thing.)

    @Trilby: Thank you for the elaborate input!
    @drcouzelis: "sticky keys" normally means that modifiers remain active only until the next keypress, while I want a way to lock them in active state for an arbitrary number of keypresses. But still, "sticky keys" was a worthwile input for the search engine.
    The program xkbset, which can be used to set XKB options on the fly, has a function that comes very close to what I desire:
    $ xkbset h
    Usage: To set or unset various options:
    xkbset <options>
    where <options> may be all or any of (the '-' switches the feature off,
    otherwise it is switched on):
    To switch sticky keys on or off, and optionally set or reset:
    () two keys pressed at the same time stops sticky keys;
    () a modifier pressed twice will be locked:
    [-]{sticky|st} [[-]twokey|[-]latchlock]...
    I cannot select specific modiers to be affected with xkbset, but that would be fine with me. Sadly, it didn't completely work for me:
    – It doesn't affect Alt at all for me.
    – The effect seems to go away as soon as I change the window. (Maybe I need to invoke xkbset from .xinitrc for its effects to persist throughout the session? I will try that.)
    So I went on and tried to configure XKB manually. I got up to a certain point without studying the documentation in-depth, but now I have landed on an error message that seems to suggest to me that I would have to get to a better understanding about the layout files before I could understand it. Here is what I did:
    1. Got my current XKB configuration:
    xkbcomp :0 output.xkb
    2. Editet output.xkb to include the following at the end of the xkb_compatibility section:
    //Hoping this makes the ^-key into a Ctrl-Lock key:
    interpret TLDE {
    action= LockMods(modifiers=Control);
    3. Then I recompiled the configuration back into the running X server:
    $ xkbcomp out.xkb :0
    Warning: Compat map for group 2 redefined
    Using new definition
    Warning: Compat map for group 3 redefined
    Using new definition
    Warning: Compat map for group 4 redefined
    Using new definition
    Error: Couldn't lookup keysym
    Symbol interpretation ignored
    Warning: No symbols defined for <AB11> (keycode 97)
    Warning: No symbols defined for <JPCM> (keycode 103)
    Warning: No symbols defined for <I120> (keycode 120)
    Warning: No symbols defined for <AE13> (keycode 132)
    Warning: No symbols defined for <I149> (keycode 149)
    Warning: No symbols defined for <I154> (keycode 154)
    Warning: No symbols defined for <I168> (keycode 168)
    Warning: No symbols defined for <I178> (keycode 178)
    Warning: No symbols defined for <I183> (keycode 183)
    Warning: No symbols defined for <I184> (keycode 184)
    Warning: No symbols defined for <FK19> (keycode 197)
    Warning: No symbols defined for <FK24> (keycode 202)
    Warning: No symbols defined for <I217> (keycode 217)
    Warning: No symbols defined for <I219> (keycode 219)
    Warning: No symbols defined for <I221> (keycode 221)
    Warning: No symbols defined for <I222> (keycode 222)
    Warning: No symbols defined for <I230> (keycode 230)
    Warning: No symbols defined for <I247> (keycode 247)
    Warning: No symbols defined for <I248> (keycode 248)
    Warning: No symbols defined for <I249> (keycode 249)
    Warning: No symbols defined for <I250> (keycode 250)
    Warning: No symbols defined for <I251> (keycode 251)
    Warning: No symbols defined for <I252> (keycode 252)
    Warning: No symbols defined for <I253> (keycode 253)
    The "Error" part is where I am currently stuck. It tells me that my changes were ignored (I no that it's about them because it goes away when I comment them out), but I don't yet understand why.

  • Macbook Won't Turn On But Caps Lock Lights Up Green.

    Hello,
    I spilt water on my Macbook A1342 some time ago. I have tried to fix it by cleaning the damaged areas. It didn't start up before but now i have the caps lock illuminated green and is constantly on. The computer does not turn on. I am just charging the computer now. Could this just be a problem caused by the water damage or a software error. Also could it just be because the battery hasn't been charged and was ran flat last time i used it. Open to any ideas.
    Many Thanks
    Charlie

    Water damage may have affected the logic board or other hardware.
    Take your Mac to an Apple Store >  Apple - Find Locations

  • Can I turn of the 'Caps Lock' flash light?

    I'm using the caps lock key for ctrl.
    And the flash light on the caps lock key seems not good.
    Is there any way to disable that function?
    Thanks.

    J....C... It woks as I meant.
    Sorry.

  • Adobe Reader 9 pdf printing turns text into symbols

    I am trying to print a pdf file, when it starts printing all of the text turns into random symbols, I am trying to print a rebate and this is really frustrating. I saved the online pdf to my HardDrive, then I try to print it after opening with Adobe Reader 9. I have tried printing it as an image, and still the same occurs, my printer is fine, it prints word documents and notepad perfectly, I have all the latest updates, so I do not know why this is happening.

    I do realize that not all printers are affected. However, the problem is clearly with Adobe Reader 9. The reason I say this is that the problem does NOT exist with Adobe Reader 8. The problem ONLY occurs with Adobe Reader 9. Furthermore, I am not sure what specific resolution to this printer you are referring to, but there hasn't been a solution presented thus far that is an actual fix for the problem. Originally, I identified that if I selected "Print to Image" the entire multi-page PDF would print as expected. Although, this solution causes the multi-page PDF to print very slowly (for the reasons noted by Mike). Another reader reported that if you install FoxIT PDF Reader, multi-page PDFs print just fine. I have verified that installing FoxIT Reader DOES INDEED allow me to print multi-page PDFs to our FS-C5015N. Again, if it was purely a driver issue, why would a multi-page PDF opened with FoxIT Reader print as expected while the same PDF opened with Adobe Reader 9, not print as expected? There also were a couple other posts about using the generic Kyocera KX driver. This is not an option for us. Finally, there was a post about changing the Post Script driver setings. We do not use the Post Script driver. And just as a side note, we have tried using the Post Script driver to see if this will resolve the multi-page PDF issue, and it does not. With that said, I implore Adobe to once again acknowledge this problem and provide users with a fix. This is a very frustrating problem.

  • Help using right-click to display text in the console/call a pop-up menu

    Hi folks,
    I hope someone can help me with this problem because, to be honest, I cannot see where I'm going wrong!
    Basically, I'm trying to create a routine to display a bit of text in the console (and, if I can get this to work, call a pop-up menu) if a user clicks on an image panel (which I've already created and works fine). My code for this is as follows:
    // --- Rest of program here
    this.addMouseListener(new MouseAdapter()
    public void mouseClicked(MouseEvent e)
    // This bit works fine
    if (e.getClickCount()>=2)
    // Display a dialog box if the user double clicks on the panel
    else if (e.isPopupTrigger())
    System.out.println("Right mouse button clicked")
    // Rest of program in hereThe problem is that, despite my best efforts, "Right mouse button clicked" does not display in the console if the right mouse button is clicked, and I cannot figure out why. I can, however, get it to work PARTIALLY if I use e.isControlDown(), but this only works (I guess) if the user is working on a Mac but isn't using an external mouse. Not ideal.
    I'm developing on a Mac (10.4.8) using Eclipse (rather than a PC), but this surely cannot be the problem?

    Do you start this application in a console window?
    If yes then isPopupTrigger() is never true - presumably mouseClicked gets called.
    If no then please note that java does not 'pop' a console window when System.out is called. System.out represents an existing output connection. If you want to pop some sort of console then you need to add code to do that.

Maybe you are looking for

  • PDF Printing in APEX

    Hi, I'm trying to get report printing sorted in APEX and it's just not going welll at all. I've given up on OC4J. I followed Carl's advice and got Apache Tomcat and Cocoon installed on my server. I can successfully connect to them. However, when I tr

  • Excluding email from download

    My email provider (orange) uses one username to which email addresses are attached. Its goes something like this: [email protected] [email protected] On windows this was not a problem as I could set up a rule that said do not download from server. Th

  • Audio navigator disappears after 'play' in iBook

    after pressing the empty space it reappears. it does not happen in ios 6.0.1 anyone else? or is this a bug?

  • Problems with "convert_abapspooljob_2_pdf" and Adobe 8.0

    Hi I have created a report which converts a spool file to PDF using FM convert_abapspooljob_2_pdf, an sends  it as an email attachment using FM SO_DOCUMENT_SEND_API1. When using Adobe acrobat reader 7.0 on the client it works just fine, but if i'm tr

  • Jax-rpc and rmi confusion

    I'm new to the jax-rpc, and I'm very confused about jax-rpc, if it is using RPC (remote precedure call), why we have to import java.rmi.Remote ? is it somewhere still using RMI? Thank you in advance for you answer!