Accent keys/tilde keys ignored in urxvt

I've recently been noticing a problem when using vim.  On the DE layout there's a tilde key that can be reached by hitting "alt gr" and "+", which works fine in my terminal, firefox, etc. (It's a "dead key", thus requiring a double-press, but I don't mind that at all), and my accent key (` and ´) is available without a modifier key (again, it works in most programs). 
However, in Vim (and Nano as well - but otherwise no other applications show this behaviour), neither key results in a character.  I can use the ctrl+k method in vim and copying/pasting the character works as well, but this seems kind of pointless to me, since I have the keys on my keyboard (and they worked previously).  It's as if the keypress is ignored entirely (such as loading a 102 key layout for a 104 key keyboard results in "empty" keys).
Would this be a setting in my zshrc or my vimrc, or is this a locales problem?  Or did Vim simply change that functionality in an update?
I'm unsure of where I should look for a solution and googling for results hasn't yet returned a working solution.  On a possibly related note, I have also noticed that my middle-mouse-key copy and paste has stopped working from urxvt.  I can highlight the text and paste it within the same terminal, but I can't paste it into, for example, Firefox.  The only change I remember making before I noticed this problem popping up is the fact that I configured SCIM.
I've tried to include as much information as I found relevant, but I will happily provide any more information that may be required.
More information:
.vimrc
filetype on
" Variables
set showmatch
set softtabstop=2
set expandtab
set incsearch
set backspace=2
set ignorecase
set comments=sl:/*,mb:*,elx:*/
set number
set pdev=Cups-PDF
set printoptions=paper:A4,syntax:y,wrap:y
set encoding=utf8
"Keyboard Shortcuts
nmap <C-l> :set invnumber <CR>
noremap <C-B> yiW<End>=<C-R>=<C-R>0<CR>
imap <S-CR> <CR><CR>end<Esc>-cc
inoremap <s-tab> <c-d>
noremap <Space> <PageDown>
noremap <BS> <PageUp>
noremap - <PageUp>
nmap <c-s> :w<CR>
imap <C-F> {<CR>}<C-O>O
"Syntax Highlighting
set background=dark
syntax enable
colorscheme lswest
au BufNewFile,BufRead *.rhtml set syn=eruby
autocmd BufRead ~/.mutt/temp/mutt* :source ~/.vim/mail.vimrc
.zshrc
autoload colors; colors
autoload -U url-quote-magic
zle -N self-insert url-quote-magic
##RPROMPT="%{$fg[red]%}[%{$fg[cyan]%}%* on %D%{$fg[red]%}]%{$reset_color%}" # Prompt for right side of screen
# prompt (if running screen, show window #)
if [ x$WINDOW != x ]; then
# [5:lswest@lswest-laptop:~]
export PS1="%{$fg[white]%}┌─[%{$fg[cyan]%}$WINDOW%{$fg[white]%}:%{$fg[green]%}%n%{$fg[cyan]%}@%{$fg[green]%}%m%{$fg[white]%}:%{$fg[yellow]%}%~%{$fg[white]%}]%{$fg[yellow]%}-%{$fg[red]%}[%{$fg[cyan]%}%*%{$fg[red]%}]%{$reset_color%}%{$reset_color%}"$'\n'"%{$fg[white]%}└─>%{$reset_color%} "
else
# [lswest@lswest-laptop:~]
export PS1="%{$fg[white]%}┌─[%{$fg[green]%}%n%{$fg[cyan]%}@%{$fg[green]%}%m%{$fg[white]%}:%{$fg[yellow]%}%~%{$fg[white]%}]%{$fg[yellow]%}-%{$fg[red]%}[%{$fg[cyan]%}%*%{$fg[red]%}]%{$reset_color%}%{$reset_color%}"$'\n'"%{$fg[white]%}└─>%{$reset_color%} "
fi
export RPRMOPT="%{$reset_color%}"
# format titles for screen and rxvt
function title() {
# escape '%' chars in $1, make nonprintables visible
a=${(V)1//\%/\%\%}
# Truncate command, and join lines.
a=$(print -Pn "%40>...>$a" | tr -d "\n")
case $TERM in
screen*)
print -Pn "\ek$a:$3\e\\" # screen title (in ^A")
xterm*|rxvt*)
##print -Pn "\e]0;$USER@$HOSTNAME: $PWD\007"
##print -Pn "\e]2;$2 | $a:$3\a" # plain xterm title
precmd() { print -Pn "\e]0;%m:%~\a" }
preexec () { print -Pn "\e]0;$1\a" }
esac
# precmd is called just before the prompt is printed
function precmd() {
title "zsh" "$USER@%m" "%55<...<%~"
# preexec is called just before any command line is executed
function preexec() {
title "$1" "$USER@%m" "%35<...<%~"
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
setopt extendedglob
bindkey -e
# End of lines configured by zsh-newuser-install
# The following lines were added by compinstall
zstyle :compinstall filename '/home/lswest/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
#alias
alias ls="ls -la --classify --color=always"
alias rsync="rsync -h --progress"
##Set some keybindings
typeset -g -A key
bindkey '^?' backward-delete-char
bindkey '^[[7~' beginning-of-line
bindkey '^[[5~' up-line-or-history
bindkey '^[[3~' delete-char
bindkey '^[[8~' end-of-line
bindkey '^[[6~' down-line-or-history
bindkey '^[[A' up-line-or-search
bindkey '^[[D' backward-char
bindkey '^[[B' down-line-or-search
bindkey '^[[C' forward-char
bindkey '^[[2~' overwrite-mode
export LC_CTYPE="en_US.utf8"
#export QT_PLUGIN_PATH="$QT_PLUGIN_PATH:/opt/lib32/usr/lib/qt/plugins"
alias trayer="trayer --edge top --expand true --widthtype request --height 28 --SetDockType true --transparent true --alpha 255 --align right"
alias sbb="sudo bauerbill"
alias bb="bauerbill"
alias linode="ssh [email protected]"
alias sockLin="ssh -D 8080 [email protected]"
##custom functions
m4a(){
if [[ "$1" != "" && "$#" == 2 ]]; then
#check if files exist
if [ -e "$1" ]; then
#convert audio
ffmpeg -i "$1" "$2"
else
echo "File "$1" doesn't exist!"
fi
if [ ! -d "$HOME/Music/m4a" ]; then
mkdir $HOME/Music/m4a
fi
#move the .m4a file to the m4a folder if the files exist in the current directory
if [ -e "$2" ]; then
mv "$1" $HOME/Music/m4a/"`echo "$2"|sed 's/mp3/m4a/'`"
echo "m4a file was moved to the ~/Music folder"
mv "$2" $HOME/Music/
echo "Moved the mp3 to the ~/Music folder"
else
echo "File "$2" doesn't exist!"
fi
else
echo "Invalid arguments (or too few/many), please run this script with \"m4a <input> <output>\""
fi
# Convert Flash video to MP3
flvmp3() {
ffmpeg -i $1 -ar 44100 -ab 192k -ac 2 $2
export EDITOR="vim"
export BROWSER="firefox"
#Google from CLI
# go to google for anything
google() {
local term="$*"
[ -z "$term" ] && term="$(xclip -o)"
local URL="http://www.google.com/search?q=${term// /+}"
$BROWSER "$URL" &>/dev/null &
export OOO_FORCE_DESKTOP=gnome
export DE=xfce
#set up the mail environment variable
MAIL=/var/spool/mail/lswest && export MAIL
Last edited by lswest (2010-10-03 08:43:50)

*EDIT* I just checked in Sakura and Vim registers and displays tilde after double-presses, and accents need to be completed with a space (not a big deal for me).  Now I just need to figure out why rxvt-unicode isn't doing the same.  Any suggestions on where to start?
*EDIT #2* The issue is occurring in urxvt itself now (I could swear it was working before though, but I have no concrete evidence of that fact).  Probably means it's related to my rxvt configuration somehow (and the middle-mouse copy/paste not working is probably also related).  I've updated the title to reflect this.
relevant section of my .Xdefaults:
URxvt*preeditType: OnTheSpot,None
URxvt.perl-ext-common: default,matcher,xim-onthespot
URxvt.urlLauncher: firefox
URxvt.matcher.button: 1
urxvt*font: xft:Inconsolata:size=10:antialias=true:autohint=true
urxvt*termName: rxvt-unicode
urxvt*internalBorder: 1
urxvt*loginShell: true
urxvt*background: [70]#000000
urxvt*foreground: white
urxvt*transparent: 1
urxvt*colorMode: on
urxvt*cursorBlink: 0
urxvt*depth: 32
urxvt*color0: #000000
urxvt*color1: #9e1828
urxvt*color2: #aece92
urxvt*color3: #968a38
urxvt*color4: #414171
urxvt*color5: #963c59
urxvt*color6: #418179
urxvt*color7: #bebebe
urxvt*color8: #666666
urxvt*color9: #cf6171
urxvt*color10: #c5f779
urxvt*color11: #fff796
urxvt*color12: #4186be
urxvt*color13: #cf9ebe
urxvt*color14: #71bebe
urxvt*color15: #ffffff
urxvt*fading: 40
urxvt*tintColor: white
urxvt*shading: 0
urxvt*inheritPixmap: 0
urxvt*scrollBar: 0
urxvt*geometry: 81x22
urxvt*saveLines:1000
I appreciate the reply again.
The double-press works in DWM (my WM of choice on my PC) and AwesomeWM (on my laptop, which is also experiencing the same issue) in all applications besides the two I mentioned above.  I've also tried it by ending it with a space, a letter (i.e. n after tilde, or e after an accent) and it results in just the letter (n or e) in Nano/Vim.  The terminal is rxvt-unicode (not the 256 color one from AUR).
My machines are both 64bit setups.
On a side-note, is there any way to check if keypresses are being registered in Vim? (i.e. a way to see the keysym).
relevant section of my rc.conf:
# LOCALIZATION
# LOCALE: available languages can be listed with the 'locale -a' command
# HARDWARECLOCK: set to "UTC" or "localtime"
# USEDIRECTISA: use direct I/O requests instead of /dev/rtc for hwclock
# TIMEZONE: timezones are found in /usr/share/zoneinfo
# KEYMAP: keymaps are found in /usr/share/kbd/keymaps
# CONSOLEFONT: found in /usr/share/kbd/consolefonts (only needed for non-US)
# CONSOLEMAP: found in /usr/share/kbd/consoletrans
# USECOLOR: use ANSI color sequences in startup messages
LOCALE="en_US.utf8"
HARDWARECLOCK="UTC"
USEDIRECTISA="no"
TIMEZONE="GMT+2"
KEYMAP="de"
CONSOLEFONT=
CONSOLEMAP=
USECOLOR="yes"
Setting my keymap in X:
xorg.conf
Section "InputDevice"
Identifier "keyboard0"
Driver "evdev"
Option "XkbLayout" "de"
Option "XkbOptions" "terminate:ctrl_alt_bksp"
EndSection
Last edited by lswest (2010-10-03 08:42:54)

Similar Messages

  • How to type symbols, accents and tilde in LR text fields?

    As a photog in an area with a huge Hispanic population, I need to type accent marks, tildes,etc in caption and other text fields. Does LR support this? If not now, when? Would appreciate immediately response since my Cuban client will think I am culturally ignorant to a staggering degree if I get his name wrong -- and remember, without the correct accents or tildes, non-English words are considered egregiously misspelled. many thanks.

    Here the MS kb article: http://support.microsoft.com/kb/306560
    How to Use the United States-International Keyboard
    Adding the United States-International Keyboard Layout
    To add the United States-International keyboard layout, follow these steps:
    1. Click Start, and then click Control Panel.
    2. Under Pick a category, click Date, Time, Language, and Regional Options.
    3. Under or pick a Control Panel icon, click Regional and Language Options.
    The Regional and Language Options dialog box appears.
    4. On the Languages tab, click Details.
    The Text Services and Input Languages dialog box appears.
    5. Under Installed services, click Add.
    The Add Input language dialog box appears.
    6. In the Input language list, click the language that you want. For example, English (United States).
    NOTE: When you use the United States-International keyboard layout, you should also use an English language setting.
    7. In the Keyboard layout/IME list, click United States-International, and then click OK.
    8. In the Select one of the installed input languages to use when you start your computer list, click Language name - United States-International (where Language name is the language that you selected in step 6), and then click OK.
    9. In the Regional and Language Options dialog box, click OK.
    Notice that the Language bar appears on the taskbar. When you position the mouse pointer over it, a ToolTip appears that describes the active keyboard layout. For example, United States-International.
    10. Click the Language bar, and then click United States-International on the shortcut menu that appears.
    The United States-International keyboard layout is selected.
    Creating Extended Characters
    The United States-International keyboard layout assigns new functions to the right ALT key (the ALT key on the right side of the keyboard). Use the right ALT key in combination with other keys to create extended characters.
    The following table illustrates characters that you can create by using the combination of the right ALT key plus another key, as well as those that you can create by using the right ALT key plus the SHIFT key plus another key:
    Key on United States keyboard Character Made with Right ALT+Key SHIFT+Right ALT+Key
    1 i ¹
    2 ² N/A
    Creating International Characters
    When you press the APOSTROPHE (') key, QUOTATION MARK (") key, ACCENT GRAVE (`) key, TILDE (~) key, ACCENT CIRCUMFLEX key, or CARET (^) key, nothing appears on the screen until you press a second key. If you press one of the letters designated as eligible to receive an accent mark, the accented version of the letter appears. If you press the key of a character that is not eligible to receive an accent mark, two separate characters appear.
    In other words, when you use the US-International keyboard layout, Windows automatically accents letters that customarily receive an accent but does not automatically accent letters that do not customarily receive an accent.
    The following table illustrates the accented characters that you can create:
    Press this key Then press this key Resultant character
    ' (APOSTROPHE) C Ç
    '(APOSTROPHE) e, y, u, i, o, a é, ý, ú, í, ó, á
    "(QUOTATION MARK) e, u, i, o, a ë, ü, ï, ö, ä
    `(ACCENT GRAVE) e, u, i, o è, ù, ì, ò
    ~(TILDE) o, n õ, ñ
    ^(CARET) e, u, i, o, a ê, û, î, ô, â

  • Keypad: Locate Accent Key, standard keyboard is under Tilde Key

    How can I get the ascent key (which is under the Tilde key, top left on a standard keyboard) on an iPhone? You would think by holding down the Tilde ~ key on the iPhone the key would appear.

    hold the vowel you want the accent mark over and it will appear with a series of letters
    This doesn't solve the problem, which is that some people need to make a ` (grave accent) all by itself for passwords. If you know a way to do that, a lot of people will be interested in it.

  • Tilde key on Slovenian keyboard?

    Heya everyone!
    I'm from Slovenia and I've been using Illustrator for quite some time now. However I have recently found out that I can't acces the so called "tilde key" because my keyboard doesn't have one. So now after looking for a solution on the internet for a while, I have come here to Adobe forums in hopes of finding the answer I'm looking for. It is absolutely imperative that I find the answer, because I will need the functions of that keyboard shortcut a lot in the future.
    My question is which key will act as the tilde key on my keyboard.
    Or perhaps is it possible to assign a custom key inside Illustrator to perform the functions of the tilde key?
    Thanks for your answers and have a great day!

    Tiki,
    That key is placed differently on different (language/country) keyboards, so I am afraid you will have to try out all the keys until you find it. In any case it will probably be the fastest way to find out. As far as I remember, the Slovenian key has never been revealed in any of the threads about it, such as this one:
    http://forums.adobe.com/message/2820105?tstart=0

  • Laptop Keyboard problem, some keys get randomly ignored

    Hello,
    This is a problem that occurs with all razer blade notebooks when running linux (does not occur in Windows 8); some keys get randomly ignored when you type at your normal speed, and it is very frustating especially when typing passwords or programming. At the moment we have to type very slowly in order to get all keystrokes caught. The keyboard has antighosting technology, maybe that info is useful.
    This is the further we went in this post:
    https://bbs.archlinux.org/viewtopic.php?id=161634
    In that post, a forum partner proposed to modify "drivers/hid/usbhid/hid-core.c" and set "interval = 1;" right after the mouse pooling interval was set, around line 1134 of the file. When we use that modified kernel, the keyboard feels a little better but i still get ignored keys when typing at normal speed.
    This are my usb devices:
    [cristobal@orion ~]$ lsusb -vv -d 1532:
    Bus 001 Device 003: ID 1532:0116 Razer USA, Ltd
    Couldn't open device, some information will be missing
    Device Descriptor:
    bLength 18
    bDescriptorType 1
    bcdUSB 2.00
    bDeviceClass 0 (Defined at Interface level)
    bDeviceSubClass 0
    bDeviceProtocol 0
    bMaxPacketSize0 64
    idVendor 0x1532 Razer USA, Ltd
    idProduct 0x0116
    bcdDevice 1.00
    iManufacturer 1
    iProduct 2
    iSerial 0
    bNumConfigurations 1
    Configuration Descriptor:
    bLength 9
    bDescriptorType 2
    wTotalLength 123
    bNumInterfaces 4
    bConfigurationValue 1
    iConfiguration 0
    bmAttributes 0xa0
    (Bus Powered)
    Remote Wakeup
    MaxPower 500mA
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 0
    bNumEndpoints 1
    bInterfaceClass 3 Human Interface Device
    bInterfaceSubClass 1 Boot Interface Subclass
    bInterfaceProtocol 2 Mouse
    iInterface 0
    HID Device Descriptor:
    bLength 9
    bDescriptorType 33
    bcdHID 1.11
    bCountryCode 0 Not supported
    bNumDescriptors 1
    bDescriptorType 34 Report
    wDescriptorLength 75
    Report Descriptors:
    ** UNAVAILABLE **
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x81 EP 1 IN
    bmAttributes 3
    Transfer Type Interrupt
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0008 1x 8 bytes
    bInterval 8
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 0
    bAlternateSetting 1
    bNumEndpoints 1
    bInterfaceClass 0 (Defined at Interface level)
    bInterfaceSubClass 0
    bInterfaceProtocol 0
    iInterface 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x81 EP 1 IN
    bmAttributes 3
    Transfer Type Interrupt
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0040 1x 64 bytes
    bInterval 8
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 1
    bAlternateSetting 0
    bNumEndpoints 1
    bInterfaceClass 3 Human Interface Device
    bInterfaceSubClass 0 No Subclass
    bInterfaceProtocol 1 Keyboard
    iInterface 0
    HID Device Descriptor:
    bLength 9
    bDescriptorType 33
    bcdHID 1.11
    bCountryCode 0 Not supported
    bNumDescriptors 1
    bDescriptorType 34 Report
    wDescriptorLength 159
    Report Descriptors:
    ** UNAVAILABLE **
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x82 EP 2 IN
    bmAttributes 3
    Transfer Type Interrupt
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0010 1x 16 bytes
    bInterval 8
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 2
    bAlternateSetting 0
    bNumEndpoints 1
    bInterfaceClass 3 Human Interface Device
    bInterfaceSubClass 1 Boot Interface Subclass
    bInterfaceProtocol 1 Keyboard
    iInterface 0
    HID Device Descriptor:
    bLength 9
    bDescriptorType 33
    bcdHID 1.11
    bCountryCode 0 Not supported
    bNumDescriptors 1
    bDescriptorType 34 Report
    wDescriptorLength 71
    Report Descriptors:
    ** UNAVAILABLE **
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x83 EP 3 IN
    bmAttributes 3
    Transfer Type Interrupt
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0008 1x 8 bytes
    bInterval 8
    Interface Descriptor:
    bLength 9
    bDescriptorType 4
    bInterfaceNumber 3
    bAlternateSetting 0
    bNumEndpoints 2
    bInterfaceClass 255 Vendor Specific Class
    bInterfaceSubClass 240
    bInterfaceProtocol 0
    iInterface 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x01 EP 1 OUT
    bmAttributes 2
    Transfer Type Bulk
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0200 1x 512 bytes
    bInterval 0
    Endpoint Descriptor:
    bLength 7
    bDescriptorType 5
    bEndpointAddress 0x02 EP 2 OUT
    bmAttributes 2
    Transfer Type Bulk
    Synch Type None
    Usage Type Data
    wMaxPacketSize 0x0200 1x 512 bytes
    bInterval 0
    Does anyone know, based on their experience, what could be the cause of the keyboard malfunction?
    Does this type of error occur for some other notebooks too?
    It would be great if someone could point me in the right direction for where to look.
    Last edited by labotsirc (2013-08-31 17:27:38)

    Jeroen)Mathon wrote:
    A lot of people i know that  are running arch with a Razorblade keyboard are seeming to be having a lot of problems.
    Did the same happened to another keyboard like an (HP,Dell,Logitech,etc).
    For all i know (Not a lot) I'm thinking it might have something to do with your usb?(Worst answer ever!)
    Did you try a different port.
    Please let me know if this worked .
    On the side(What kernel version are you running?)
    Hi. Well in this case the problem is with the Razer Blade Laptop's keyboard, therefore i cannot choose another port. You gave me an idea however, i will try to get any usb keyboard, plug it into the razer blade and make sure it works so that i can discard any major problem.

  • Flash CC won't let me switch between open documents using command and tilde key ( ~ )

    In all previous versions of Flash, and most other Adobe software, you could change the active document using command and tilde key ( ~ ) on a Mac. However Flash CC won't let me do this. Is there a bug, or something I need to set up to get it to work? Or is this possibly just expected behavior in the new version of Flash?

    I'm on a 2012 desktop with OS X 10.8.4 using a bluetooth keyboard. Cmd + ~ works with all other Adobe programs I have installed including Flash CS5.5.

  • Using the Tilde key while rotating a line is not working?

    I'm trying to make a tilde effect (not sure what it is called?) by holding down the tilde key (above the tab key on my Macbook Pro) while a straight line is selected, though nothing happens when I do this and try to drag the line in a circle to create the effect.
    Anyone have any ideas of what I might be doing wrong?
    Thanks.

    Maybe you've figured this out by now, or gotten the answer elsewhere? The "tilde effect" only works as you are creating the shape, not on an existing shape you've selected.
    Peter

  • Firefox crashes when the apostrophe and tilde keys are pressed

    Pressing either the apostrophe key or the tilde key is crashing Firefox. It's also happening in other internet browsers and programs (like Skype and Google Talk). I've tried a new keyboard and using different USB ports for it. The first time I tried a new USB port it temporarily fixed the problem, but after restarting my computer for updates the issue returned.
    Firefox, the plugins, add-ons and drivers are all up to date from what I can tell.

    do the crashes occur too when you run firefox in [[Safe Mode]]? (close all firefox windows & press the shift key while launching firefox again)
    probably not related - there's a new version of the flash plugin available. you can install it from [http://get.adobe.com/flashplayer/] (disable the checkbox for bundled software)

  • Why does this bar show up when I press the tilde key?

    Hey all, I have this mysterious bar that shows up when i press the tilde key in AE. It's distracting. 
    https://www.flickr.com/photos/jeffbriant/14040981723/
    (Adobe wouldn't let me upload a picture so I used flickr)
    EDIT: I'm using a Mac desktop.

    Try quitting After Effects, deleting the entire preferences directory, and restarting After Effects:
    DRIVE/Users/USERNAME/Library/Preferences/Adobe/After Effects/

  • Tilde Key does not work in Game

    exactly like the title says. when i am in a pc game the Tilde Key, which is used to bring up console does not work... and i am pretty sure it is an HP only problem, which makes me very angry. my previous laptops have been other brands and have worked fine. 
    Please help

    Hmm have u checked in the game options? Maibe ur console is disabled... Idk what model of hp pc are u running but maibe try to do Tilde using fn key + Tilde?

  • Tilde key, backtick switched?

    Hi
    Does anyone know why my tilde ` key is now switched with my § back tick key?
    I am running just British (real) English (be good to change the other name to American English)
    I do not think I have altered keyboard shortcuts in system OS
    Ant ideas?
    Tris

    Found my fix: http://discussions.info.apple.com/thread.jspa?threadID=1203002&tstart=0&messageI D=6327198#6327198

  • Tilde key ....monitor at 100%

    Does any one else feel that when using the Tilde Key action, it would be better if the Screen automatically opened in 100% Mode and not Fit.
    I use Fit on my Source and Programm Monitors so when using Tilde, the screen also opens with "fit" and this of course presents the image "enlarged" requiring an adjustment down to 100%. (Clumsy in front of clients)
    A feature request maybe if others agree ?
    BTW - the whole Premiere function of "mouse roll over" without having to focus the window is brilliant and hopefully if Adobe were to change it as I would wish, they would also not break it in the process.

    Thats not the same Steven and too slow and clunky when you need to bounce up and down between monitors many times in a session.
    The tilde key function is fantastic and unique to Premiere but it just needs this "tweak" to make it perfect.
    To add a lttle to note the issue : When working in HD the Program and Source Mnitors must be set to FIT. When one roll over tildes to the "big" monitor one need to set it to 100% to avoid the pixelation. Then of curse when one goes back to the Program/ Source Monitor these are now in the wrong mode so also need to be reset back to FIT.
    >"Fit up to 100%."
    That wold do it for me.

  • Satellite P200-10S - problem with Tilde key

    Hello,
    I purchased my laptop recently and installed a game (Oblivion) and in this game we can call up the console of the game but i cant call it because the key doesnt work. The Tilde key next to 1. I've been googling and noticed that lots of people with windows vista on laptops have this problem... can anyone help me?
    Is that any chance that the key becomes blocked on fullscreen mode?
    (sorry my english)
    Thanks in advance,
    Francisco

    Hello Francisco
    This game is not known to me but it will be interesting to know if this game is designed for WXP or Vista OS. Anyway if the same issue is noticed by many other notebook users I do not see any solution here. It seems to be that problem is not caused by defective notebook or something similar. If your notebook works well you should visit Game homepage and see if there is some solution.
    Notebook manufacturers have noting to do with it.

  • Ai: Why not assign ctrl+R !!!???? Key CTRL is ignored. - (topic is reloaded)

    The PROBLEM is realy simple.
    On my keyboard there is additional ctrl key and I would like to use it as shortcut e.x. ctrl+R = STAR tools. and many other e.x.....
    Ai is just profesional tool. I use shortcuts to make it more productive and that's all.
    "Why in Ai not assign ctrl+R !!!???? Key CTRL is ignored. i'm using Apple Keyboard 2007. "
    Why so simple things aren't been done in the version CS >>> 3 <<< ! ?.

    sorry Guys...
    With respect for your work but I guess members of Ai team are funs of "oldmobil club".
    There is many of these 'old school flowers' in Ai.
    Why Illustrator so sticks out from other applications in minus?
    It seems that one engineer dosn't know what doing other engineer in next apllications in "suite".
    I regret when I have to buy the next Ai versions when they are only alteraions CS1, CS1.2, CS1.3... but they aren't surly In my opinion they aren't deserve new version.
    Ohhh I'm so tired of use.
    I would like to buy once a two years newer and expensiver version but elaborated one

  • Accounting Key & Accruals Key in Calculation Schema (Pricing Procedure)

    Hi Freinds,
                   I have a query regarding use of Accounting Key & accruals key in the Calculation Schema (Pricing Procedure).
    What is the significance of Accounting key & accruals key in the calcuation schema?  Which Accounting  & Accruals keys have to be used for Gross price,Discount,Freight, tax etc in the Calculation schema? Please post your precious threads.
    Thanks & Regards
    Saeed Arif

    hi
    AcyKy - Account Key/ Accrls - Accruals:
    for SD module
    u2022     The values of the Sales Revenues, Sales Deductions, Freight Revenues, Tax Revenues, and Rebate Accruals etc. are going to be posted in the respective G/L accounts in Fi Module.
    u2022     In order to do this we assign account keys/ accruals to the different condition types based on their classification. The classification shown below.
    o     ERB Rebate sales deduct.
    o     ERF Freight revenue
    o     ERL Revenue
    o     ERS Sales deductions
    o     ERU Rebate accruals
    u2022     For Ex.,
    o     For all Price condition types like PR00 etc. we assign ERL - Revenue.
    o     For all Discount condition types like K004, K005 etc. we assign ERS - Sales Deductions.
    o     For all Freight condition types KF00 etc. we assign ERF - Freight Revenues.
    o     For all Rebates condition types BO01 to BO05 we assign in Account key ERB - Rebates Sales deductions and for Accruals ERU - Rebate Accruals.
    u2022     This account keys and accruals are in turn assigned to respective G/L accounts. So the system posts respective values in respective G/L accounts in Fi-Co Module.
    u2022     This also one of the areas of SD - Fi Integration. SD consultants assign the account keys and Fi Consultants assign the respective G/L accounts in T.Code:VKOA.
    Similarly for MM Module
    Account keys are EIN, FR1, FR2, FR3, FRE, etc...
    And in OBYC, we do necessary account determination for the same.
    For e.g. Freight Posting in GR
    Condition type FRA1, Accrual FR1 and in OBYC, assign Freight Clearing A/c to FR1
    During GR;
    Stock Account - Dr - 110 INR
    GR/IR Clearing A/c - Cr - 100 INR
    Freight Clearing A/c - Cr - 10 INR
    transaction event key is the Key that identifies different types of G/L account.
    The account key enables the system to post amounts to certain types of
    revenue account. For example, the system can post freight charges
    (generated by the freight pricing condition) to the relevant freight
    revenue account.
    use
    To enable the system to find the relevant account for provisions (for
    accrued delivery costs or miscellaneous provisions, for example), you
    must assign a transaction/event (internal processing) key to each
    condition type that is relevant to provisions in the step Define
    Calculation Schema.
    if u search on SDN or GOOGLE u will get many threads for this
    hope it helps
    regards
    kunal

Maybe you are looking for

  • Is there a way to create shared iTunes playlists with iCloud?

    For instance, if I were to create a playlist called "Playlist X" on my Macbook Pro, is there a way for iCloud to put that same playlist in my iMac's iTunes library? And if I were to add a song to the playlist on the iMac, could it appear in the playl

  • Serious and urgent issue ! please help

    Hi everyone, Here is the problem I got: Audio and video disappeared on all the clips i used in my timeline and I don't know why because I did nothing and i've been using fcpx for months. I tried to relink it many times, but even if i try to relink th

  • How to index a large FLV?

    I'm sure this is documented many places but I can't find a simple well explained doc that shows how to take a 4 hour FLV archive and index it in such a way so that users can click a link and go directly to a specific time slice in the file. Is this a

  • Focusrite USB 2.0 Audio Driver Scarlett 2i2 in Premiere CC2014 not working

    Hi everybody. I just recently upgraded to CC and cannot use my Audio Interface with it. Info: i7 Windows 7 Ultimate Focusrite Scarlett 2i2, drivers up to date Premiere Pro CC 2014 up do date GeForce GTX Titan In CS6 i have set the audio hardware to F

  • How can I get 'Edit Original' to open file in Photoshop?

    I have a Mac running OSX 10.6.2. I have the full CS4 Suite. When I try clicking 'Edit Original' in Illustrator it opens the file in Apple's pdf viewer: 'Preview'. How can I change it to open in Photoshop by default? File is CMYK tiff - jsut in case t