Keyboard Layout Suggestion for Symbian^3 / Symbian...

To: Nokia
Message: The keyboard layout you've desgined for Symbian^3 / Symbian Anna looks awkward to use. The letters Q, and A should not be aligned. Have a look at the keyboard layour I've made. Please consider this layout and use it on Symbian^3 / Symbian Anna before you release the next update on Q2.
Thanks,
Neil
Attachments:
KeyboardLayoutUpdated1.jpg ‏135 KB
KeyboardLayoutUpdated2.jpg ‏134 KB

chanchan05 wrote:
I see, well, I was never really much of a portrait qwerty user. I felt the keys were too small. XD.
Yeah it seems small. But take in mind that i DID NOT reszied the keys. That's the original size.
Now which looks better?
Attachments:
Nokia X7-00.png ‏24 KB
KeyboardLayoutUpdated1.jpg ‏135 KB

Similar Messages

  • Any layout suggestions for this?

    How can I place a JCheckBox and JButton components on the area beside the TabbedPane tabs (Top right corner position)?
    Final design should be like this image
    http://www.rejimani.com/backup/tabbed.jpg
    Any suggestions?
    Reji Mani

    * Test_AbsoluteLayout.java
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Test_AbsoluteLayout extends JFrame {
        public Test_AbsoluteLayout() {
            initComponents();
        private void initComponents() {
            checkbox = new JCheckBox();
            button = new JButton();
            tabbedpane = new JTabbedPane();
            panel1 = new JPanel();
            panel2 = new JPanel();
            getContentPane().setLayout(new AbsoluteLayout());
            setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
            checkbox.setPreferredSize(new Dimension(83, 21));
            checkbox.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent evt) {
                    checkboxActionPerformed(evt);
            getContentPane().add(checkbox, new AbsoluteConstraints(350, 0, 20, -1));
            button.setText("OK");
            button.setMargin(new Insets(0, 0, 0, 0));
            button.setPreferredSize(new Dimension(71, 21));
            button.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent evt) {
                    buttonActionPerformed(evt);
            getContentPane().add(button, new AbsoluteConstraints(370, 0, 30, -1));
            tabbedpane.setPreferredSize(new Dimension(400, 300));
            tabbedpane.addTab("tab1", panel1);
            tabbedpane.addTab("tab2", panel2);
            getContentPane().add(tabbedpane, new AbsoluteConstraints(0, 0, -1, -1));
            pack();
        private void checkboxActionPerformed(ActionEvent evt) {
            System.out.println("check");
        private void buttonActionPerformed(ActionEvent evt) {
            System.out.println("ok");
        public static void main(String args[]) {
            new Test_AbsoluteLayout().setVisible(true);
        private JButton button;
        private JCheckBox checkbox;
        private JPanel panel1;
        private JPanel panel2;
        private JTabbedPane tabbedpane;
    class AbsoluteConstraints implements java.io.Serializable {
        static final long serialVersionUID = 5261460716622152494L;
        public int x;
        public int y;
        public int width = -1;
        public int height = -1;
        public AbsoluteConstraints(Point pos) {
            this(pos.x, pos.y);
        public AbsoluteConstraints(int x, int y) {
            this.x = x;
            this.y = y;
        public AbsoluteConstraints(Point pos, Dimension size) {
            this.x = pos.x;
            this.y = pos.y;
            if (size != null) {
                this.width = size.width;
                this.height = size.height;
        public AbsoluteConstraints(int x, int y, int width, int height) {
            this.x = x;
            this.y = y;
            this.width = width;
            this.height = height;
        public int getX() {
            return x;
        public int getY() {
            return y;
        public int getWidth() {
            return width;
        public int getHeight() {
            return height;
        public String toString() {
            return super.toString() +" [x="+x+", y="+y+", width="+width+", height="+height+"]";
    class AbsoluteLayout implements LayoutManager2, java.io.Serializable {
        static final long serialVersionUID = -1919857869177070440L;
        public void addLayoutComponent(String name, Component comp) {
            throw new IllegalArgumentException();
        public void removeLayoutComponent(Component comp) {
            constraints.remove(comp);
        public Dimension preferredLayoutSize(Container parent) {
            int maxWidth = 0;
            int maxHeight = 0;
            for (java.util.Enumeration e = constraints.keys(); e.hasMoreElements();) {
                Component comp = (Component)e.nextElement();
                AbsoluteConstraints ac = (AbsoluteConstraints)constraints.get(comp);
                Dimension size = comp.getPreferredSize();
                int width = ac.getWidth();
                if (width == -1) width = size.width;
                int height = ac.getHeight();
                if (height == -1) height = size.height;
                if (ac.x + width > maxWidth)
                    maxWidth = ac.x + width;
                if (ac.y + height > maxHeight)
                    maxHeight = ac.y + height;
            return new Dimension(maxWidth, maxHeight);
        public Dimension minimumLayoutSize(Container parent) {
            int maxWidth = 0;
            int maxHeight = 0;
            for (java.util.Enumeration e = constraints.keys(); e.hasMoreElements();) {
                Component comp = (Component)e.nextElement();
                AbsoluteConstraints ac = (AbsoluteConstraints)constraints.get(comp);
                Dimension size = comp.getMinimumSize();
                int width = ac.getWidth();
                if (width == -1) width = size.width;
                int height = ac.getHeight();
                if (height == -1) height = size.height;
                if (ac.x + width > maxWidth)
                    maxWidth = ac.x + width;
                if (ac.y + height > maxHeight)
                    maxHeight = ac.y + height;
            return new Dimension(maxWidth, maxHeight);
        public void layoutContainer(Container parent) {
            for (java.util.Enumeration e = constraints.keys(); e.hasMoreElements();) {
                Component comp = (Component)e.nextElement();
                AbsoluteConstraints ac = (AbsoluteConstraints)constraints.get(comp);
                Dimension size = comp.getPreferredSize();
                int width = ac.getWidth();
                if (width == -1) width = size.width;
                int height = ac.getHeight();
                if (height == -1) height = size.height;
                comp.setBounds(ac.x, ac.y, width, height);
        public void addLayoutComponent(Component comp, Object constr) {
            if (!(constr instanceof AbsoluteConstraints))
                throw new IllegalArgumentException();
            constraints.put(comp, constr);
        public Dimension maximumLayoutSize(Container target) {
            return new Dimension(Integer.MAX_VALUE, Integer.MAX_VALUE);
        public float getLayoutAlignmentX(Container target) {
            return 0;
        public float getLayoutAlignmentY(Container target) {
            return 0;
        public void invalidateLayout(Container target) {
        protected java.util.Hashtable constraints = new java.util.Hashtable();
    }

  • Dvorak Keyboard Layout

    Is there a Dvorak keyboard layout available for the iPhone?
    While I touch type on the standard QWERTY keyboard, I find the Dvorak layout much better suited for typing with my thumbs.
    Who do I ask for one if there isn't one now?
    Thanks,
    Byron

    Byron C. Mayes,
    You are welcome to suggest it on the feedback page the link for the iPhone is:
    http://www.apple.com/feedback/iphone.html
    However, speaking personally, I would think the reasons for the way QWERTY is laid out might be valid on the iPhone. QWERTY is laid out the way it is so that letters that are likely to appear together in English are separated to avoid accidental keystrokes.
    Hope this helps,
    Nathan C.

  • How can I get Final Cut 7 to remember my customized keyboard layout?

    Hi everyone, I'm new to this community, my name is Flavio, from Argentina.
    I'm on a Mac Book Pro Intel Core Duo 2, using Final Cut 7 and I'm using a customized keyboard layout (1 for zoom in, 2 for zoom out), but everytime I launch the application I have to go to Tools>Keyboard Layout to change it, is there a way to tel the ap to launch that layout almays?
    Thanks!

    It works for me without doing anything special.  You might try deleting your fcp preferences
    https://discussions.apple.com/docs/DOC-2491
    If that doesn't solve it, describe exactly what your doing to customize the keyboard. 
    I assume if you do a "save keyboard layout" from the tools menu: keyboard layout  after customizing the keyboard and then load keyboard layout after relaunching fcp, that at least works.

  • My keyboard layout has changed. I no longer have an @ key.

    About an hour ago, my keyboard layout changed (but only when using firefox) so that, for example, Shift+2 no longer produces @, but rather double quotes ("). Also, pressing the [ key now produces nothing, but the next key I hit after it will produce a hat. Example, the [ key and a g will give ^g. There are other peculiarities, such as the / key now shows é, and a few others.
    Everything I check on the internet seems to be telling me the problem lies in my keyboard layout settings in Windows, and possibly having to press LeftAlt+LeftShift (or just Alt+Shift) to readjust them, or bringing up the language bar, etc. But all of my efforts to fix language indicate to me that I'm currently operating with a US keyboard layout (which is what it`s supposed to be), and again, this ONLY happens in firefox and no other programs.
    Any ideas?

    See:
    * http://windows.microsoft.com/en-US/windows7/The-Language-bar-overview The Language bar (overview)
    It is possible that you have switched the keyboard layout by accident.
    * Make sure that you have the Language bar visible on the Windows Taskbar.
    * You can do that via the right-click context menu of the Taskbar: Toolbars > Language Bar.
    * Check the keyboard language (keyboard layout) setting for the application that has focus via the icon on the Language bar.
    * You need to do that while Firefox has focus because Windows remembers the keyboard layout setting per application.
    * The default keys to rotate the layout is a combination (Ctrl+Shift or Alt+Shift) that can easily be used in Firefox to activate a menu item.
    * To avoid an unintentional switch assign a specific key sequence (Alt/Ctrl+Shift+number) to select keyboard layouts and remove the key combination to rotate layouts (Alt+Shift or Ctr+Shift)

  • Controlling Dutch MacBooks from a German MacBook (keyboard layout)

    I work at a company which has about 200 MacBooks with Dutch keyboard layouts (QWERTY), but I've got a German keyboard layout (QWERTZ) on my own MacBook. ARD is installed on my MacBook with German Keyboard layout.
    For some reason ARD uses the keyboard layout of the MacBook I'm controlling, instead of the keyboard layout of my own MacBook. So, when I'm controlling a MacBook with a Dutch keyboard layout and I press the Z key, a Y appears on the screen.
    Why does ARD use the keyboard layout of the Mac I'm controlling, instead of the keyboard layout of the Mac ARD is running on? My fingers aren't situated on the keyboard of the Mac I'm controlling, but on the keyboard of my own Mac. In my opinion it would be obvious to use the keyboard layout of my own Mac, not the keyboard layout of the Mac I'm controlling.
    How else are you going to manage hundreds of Macs in an international company which has English, German, French, Japanese, Chinese and some other keyboard layouts? Everytime you log on to a remote Mac you have to find out which keyboard layout is used on the remote Mac. This sounds as a serious bug to me.
    Isn't there a way to let ARD use the keyboard layout of the Mac on which ARD is installed, instead of that of the system I'm controlling?

    It may not be what you are after, but when I lived in Austria, I bought a normal desktop keyboard (German) and used that plugged in to the USB port on my PowerBook.
    MBP 2.0.g x2 non-glossy (both defective) Mac OS X (10.4.6)

  • Firefox keyboard layout changes to something I don't recognize, the traditional [ QWERTY ] reads as [ ',.pyf ] any idea why this would happen or how to change it back short of killing firefox and restarting.

    This happens randomly and infrequently. At first I thought it was my cats fault but it has recently happened while I was sitting at the computer with no feline interference. If someone could let me know how, if it's possible, to change the keyboard layout to QWERTY I will try this next time it happens to see if it can be corrected without restarting firefox. For a larger sample I will include the lines below:
    The quick brown fox jumps over the lazy dog
    yd. 'gcjt xpr,b urq hgmlo rk.p yd. na;f eri
    This is only effecting firefox, no other programs are changed and it does effect all running and new instances of firefox.

    See:
    * http://windows.microsoft.com/en-US/windows-vista/The-Language-bar-overview - The Language bar (overview)
    It is possible that you have switched the keyboard layout by accident.
    * Make sure that you have the Language bar visible on the Windows Taskbar.
    * You can do that via the right-click context menu of the Taskbar: Toolbars > Language Bar.
    * Check the keyboard language (keyboard layout) setting for the application that has focus via the icon on the Language bar.
    * You need to do that while Firefox has focus because Windows remembers the keyboard layout setting per application.
    * The default keys to rotate the layout is a combination (Ctrl+Shift or Alt+Shift) that can easily be used in Firefox to activate a menu item.
    * To avoid an unintentional switch assign a specific key sequence (Alt/Ctrl+Shift+number) to select keyboard layouts and remove the key combination to rotate layouts (Alt+Shift or Ctr+Shift)
    * Vista: Control Panel > Regional and Language Options > Keyboards and Languages > Change keyboards > Advanced key settings > Change key sequence

  • Unwanted switch of keyboard layouts

    I have created a new keyboard layout file for german Dvorak typing. The .keylayout file was placed in the keyboard layouts folder and after that I enabled the new layout within the system preferences.
    So far everything works fine. In some applications my layout switches back to the last system keyboardlayout without any coment or warning. It happens also, when passwords are needed. In Ical I can edit an event completely in Dvorak until i hit the date an time fields. Then the layout switches to the last System Layout, that was selected before.
    I tried to move the layout into the system keyboard layouts folder, but with no effect. The packages that come with OS X contain also a variety of different layouts (.keylayout files). When I try to use a "original" .keylayout file ( like US extended.keylayout) the effect persists. I have no idea how to resolve this problem, as the original apple files also fail to work properly.
    I will try another user profile as a last test.
    Any Ideas?
    Macbook Pro   Mac OS X (10.4.7)  

    If I select from the mathematic symbols, no
    character will be typed by the keylayout generated by
    Ukelele.
    That's because the mathematical symbols range cannot be handled in a Roman layout, only in a Unicode layout. In a Roman layout you must use the ascii versions. I would try using a Roman custom layout that you have not had to change via BBEdit and see if you have the same problem. Adding non-Roman characters to a layout which is supposed to be Roman could cause problems. Also make sure you give the layout a keyboard ID which is unlikely to be used by any other layout.
    Is there some reason you cannot use the ascii ><? These are what are normally used rather than the special Unicode versions.
    <div class="jive-quote">The characters generated are different from the ones created by the original German Layout.
    Could you explain that in more detail?

  • Keyboard Layout creator

    Is there an application that will allow to create a custom keyboard layout (Armenian for instance) for iPhone5?
    Thanks in advance.

    All those layouts should work with Windows XP, Vista, 7 and 8...
    You get the parenthesis, the @ sign and other symbols exactly on the same key on OS X and Windows (see last 2 screen shots for the Swiss French layout).
    The only difference is that on Windows to "alt/option" you must either [ctrl] + [alt left] or [alt right].
    For a reminder if you want to toggle between "standard function keys" and "special features printed on each key" you can set this in "System Preferences > Keyboard" and "BootCamp Control Panel" respectively on OS X and Windows.
    French AZERTY keyboard : http://apple.lu/public/archives/akfr.zip
    Swiss French QWERTZ keyboard : http://apple.lu/public/archives/akswfr.zip
    You may change or create your own by downloading :
    http://msdn.microsoft.com/en-us/goglobal/bb964665.aspx
    http://support.apple.com/kb/HT5636?viewlocale=en_US (helping page by Apple)
    Keywords : BootCamp, VMWare, Parrallels, Virtual Box, ...

  • Bulgarian Phonetic Keyboard Layout on iPad

    Hello Apple guys.
    The iPad is great. I love it - so do more are more people from Bulgaria.
    I was very disappointed to see that it lacks Bulgarian Phonetic Keyboard Layout.
    When can we expect to have Bulgarian Phonetic Keyboard Layout available for iPad?
    A keyboard layout which is already available in iPod Touch 1g, 2g, 3g, iPhone, iPhone 3G, iPhone 3Gs and ( I hope) in iPhone 4 as well.
    It doesn't seem like something very difficult to include Bulgarian Phonetic Keyboard Layout in iPad as well.
    When can we expect to have Bulgarian Phonetic Keyboard Layout available for iPad?
    Thank you.

    Please can anyone who needs Bulgarian Phonetic Keyboard to use the link bellow to provide feedback and request Bulgarian Keyboard with Phonetic Layout.
    The lack of Bulgarian keyboard really limits the use of the iPad for me. I have to use my PC for anything that requires typing in Bulgarian...
    So far I have not been able to find alternative solution or even an app to satisfy this lack of functionality...

  • Suggestions for 808 PureView and Symbian Belle

    Hi friends,
    I am a proud owner of astounding (and worst marketed extra-ordinary device) 808 PureView. Biggest compliment to it is that it has replaced my SGS2. Yes, truly.
    After using 808 for some time now I am quite happy but disappointed with certain things. Few things are so minor that I am surprised why Nokia removed it or didnt implement.
    So here I am presenting a list of things which I would request Nokia to fix or implement. I will also request all of you here to add to the list so that Nokia gets a direct feedback and can improve the device and software. Thanks !
    Camera:
    1. Slow shutter speeds
    2. Full resolution in various Scenes modes
    3. Pics with AutoFlash mostly comes dark in edges in Indoors
    4. Slightly faster Auto-Focus with soft shutter button
    Gallery:
    (I know about other thread but this is a consolidated list)
    1. Batch functions (send, share)
    2. Albums
    3. Folders
    4. Tabbed interface (All, Images, Videos)
    5. Sort by Date, Name, Type, Size, Location, etc.
    6. Send via NFC option (everybody does not read Manual )
    7. Ability to trim parts of video (and to join parts, if possible)
    Contacts:
    1. Labels please !!!
    2. Thumbnail view (atleast in Groups)(could be first-ever. Android has partial implementation)
    3. Contacts with latest Social updates(tweets or Facebook activities) to come second-top after Favourites (convenient and another first)(switch on-off from Settings)
    4.  Additional Tab in Contact's view showing all communication with him/her (Calls, E-mails and Messages)
    5. Another optional Tab showing his/her last 5 Social updates
    Messaging:
    1. Tabbed interface (Conversations/Folders/(optionally) E-Mails)
    2. Forward icon alongside Reply icon
    3. Individual Contact's SMS\Email tone (such a little but practical feature)
    Telephony:
    1. Detailed Call log (Settings>Extended View)
    2. Video Call button
    E-Mail:
    1. E-Mail Popups (probably with Reply option)
    2. Cleaner tabbed interface
    3. Pinch-to-Zoom and Wrap function
    4. Archive option in GMail mails
    5. Go to next email after deleting and not the Inbox (its really annoying)
    Videos:
    1. Large Thumbnail option
    2. Better support for Matroska (mkv)
    3. Better subtitle support (black fonts???)
    4. Options for Brightness and Contrast
    Music Player:
    1. Folders Tab
    2. Editable equaliser
    I again request to provide suggestions and I will add them in OP (with your name). Lets help Nokia make great OS and Product even better. And in my experience, they have always seriously listened to their customers and brought the improvements.
    Good Luck !

    Nokia thank you for last updates..the 808 is quite perfect now!!
    Let's update some last suggestion for Nokia
    Camera:
    1. Slow shutter speeds / FULL Shutter priority mode (with flash and auto/manual ISO....i'm not able to use flash with high ISO and slow shutter speeds)
    2. Full resolution or 12MP / 8MP resolution in various Scenes modes
    3. Pics with AutoFlash mostly comes dark in edges in Indoors
    4. Slightly faster Auto-Focus with soft shutter button
    5. Flash EV Compensation
    7. (Hardware) Image Stabilization with low light
    8. better White Balance..more options..
    9. square (1:1) and 3:2 modes
    10. higher FPS available with low res videos
    11. Camera noise fix, lots of digital noise on the right side of the screen (purple cast) when taking pics in darker conditions without flash, something is interfering..
    12. nedd much better performance for the CAF in video mode, it doesn't work on FP2
    13. Lumia photo tools / add-ons: Cinemagraph lens, Smart Shoot lens, Panorama lens, Bing vision..
    Gallery:
    1. Albums / Folders
    2. Tabbed interface (All, Images, Videos)
    3. Sort by Date, Name, Type, Size, Location, etc.
    4. Send via NFC option (everybody does not read Manual )
    5. Ability to trim parts of video (and to join parts, if possible...improve VideoPRO please..audio editing!)
    6. Improve PHOTO Editing too, more controls (light/shadows, sharpness, fixed ratio for photo crop like 3:2 and 1:1, blur control..)
    Contacts:
    1. Labels please !!!
    2. Thumbnail view (atleast in Groups)(could be first-ever. Android has partial implementation)
    3. Contacts with latest Social updates(tweets or Facebook activities) to come second-top after Favourites (convenient and another first)(switch on-off from Settings)
    4.  Additional Tab in Contact's view showing all communication with him/her (Calls, E-mails and Messages)
    5. Another optional Tab showing his/her last 5 Social updates
    Messaging:
    1. Tabbed interface (Conversations/Folders/(optionally) E-Mails)
    2. Forward icon alongside Reply icon
    3. Individual Contact's SMS\Email tone (such a little but practical feature)
    4. More smart use of Words Suggestions in T9 Mode..priority for shorter words!
    (in Italian...i want to write "ON" and i touch ONLY the 6 button two times, but sometimes it suggests "NO" and/or longer words like "ONLY","NOBODY","NOTHING"...but not "ON"!! (In Italian language, i don't know if it does the same in English!)
    5. In conversation or with Whatsapp, in horizontal mode with QUERTY and Words Suggestions enabled, it's impossible to read the last messages during writing.
    6. much smaller text option
    7. in conversation view, the letter icon and the notification of a new message doesn't disapppear if you've only read the sms, without giving a reply! I suggest that a tap on the yellow letter icon on the right in conversation mode will change the sms status from unread to read
    Telephony:
    1. Detailed Call log (Settings>Extended View)
    2. Video Call button
    4. more notifications on notification bar
    5. improve social network apps and connections between gallery / notification bar and them
    E-Mail:
    1. E-Mail Popups (probably with Reply option)
    2. Cleaner tabbed interface
    3. Pinch-to-Zoom and Wrap function
    4. Archive option in GMail mails
    5. Go to next email after deleting and not the Inbox (its really annoying)
    6. Email notification like with missed calls or sms on the lockscreen.
    Videos:
    1. Large Thumbnail option
    2. Better support for Matroska (mkv)
    3. Better subtitle support (black fonts???)
    4. Options for Brightness and Contrast
    Music Player:
    1. Folders Tab
    2. Editable equaliser
    LET'S GO!!

  • How to Make a Keyboard Layout for X11/OpenOffice

    While OpenOffice has a setting to use standard OS X keyboard layouts, you may find that some of these do not work correctly, especially if deadkeys are involved. In that case you will need to create a new layout in the form of a keymap file, which you place in your home folder and invoke when needed via the command "xmodmap mykeymap" in an xterm (or by putting the same line in some config file).
    You keymap file should just contain the minimum necessary modifications of the default X11 map, which you can see by doing the command "xmodmap -pke | less" in an xterm (after making sure the preference item for using OS X layouts is turned off).
    Some fiddling with the entries of your file may be necessary, as both X11 and apps that use it have quirks and bugs of various sorts. Below is the file I made to do Vietnamese in OpenOffice as an example:
    keycode 26 = abreve
    keycode 27 = 0x00E2
    keycode 28 = 0x00EA
    keycode 29 = 0x00F4
    keycode 30 = dead_hook
    keycode 31 = dead_grave
    keycode 33 = dead_belowdot
    keycode 34 = dead_tilde
    keycode 36 = dead_acute
    keycode 37 = U0111
    keycode 38 = U01A1
    keycode 41 = U01B0

    This is a feature Apple should definitely add customization to on OS X.
    You can make custom keyboard layouts that include any characters you want using Ukelele.
    http://scripts.sil.org/cms/scripts/page.php?siteid=nrsi&itemid=ukelele
    I doubt Apple is going to incorporate this into OS X, but you can suggest it here:
    http://www.apple.com/feedback/macosx.html

  • Looking for a way to directly choose keyboard layout.

    I'm looking for a way to organise separated keyboard keys combinations (or single keys - the best) for every keyboard layout. I want to be able to choose layout directly. One unique key (keys combination) for each layout.
    One way may be smth. like setting a key to execute a command:
        setxkbmap -layout "us,ru"
    and
        setxkbmap -layout "ru,us"
    For keys setup in OpenBox may be used obkey, for example.
    In general it works. But in such a case, when not latin/english layout is the first one, or even single one, in the command's layout list, applications will not react on Ctrl-S, Ctrl-Z and so on. It do not depend on current layout, it depend on the first entry in last sequence to be used in the layouts list.
    I'm shure there are some other better ways to implement the idea. Please, give me advise: what a tool, or tool set to study and use?

    Stack wrote:
    the sad clown wrote:
    (just make sure that the changed layout doesn't break your keybind):
    setxkbmap -rules xorg -model pc104 -layout us -option
    Just change the layout parameters (and any other changes you need) for as many layouts as you want.
    Unfortunately, if the single layout, or first in the list layout is not 'us', but my national, GUI applications will stop to react on Ctrl-S, Ctrl-Z and similar things.
    Can it be fixed?
    Is it that Ctrl-[S,Z] don't work or that they change locations because the keyboard layout has been modified?  The first is a problem, the second is to be expected if you are changing the keyboard layout.
    Stack wrote:
    As I catch, for testing there is no difference between setxkbmap and xorg.conf. Also, there is no way to specify there layout specific switch combinations. In coma separated list of values for XKbOptions there is not binds to corresponding position in layouts list. All the combinations will do the same - cycle between layouts. http://www.xfree86.org/current/XKB-Config2.html#5
    Layout itself and layout switching mechanics are too different objects (or classes) in terms of programming. I'm not shure I'll be on a right way, if I'll decide to dive deeply into syntax of '/usr/share/X11/xkb/rules/xorg' and '/usr/share/X11/xkb/symbols/*' (mentioned at https://wiki.archlinux.org/index.php/Co … _xorg.conf ) and hacking of ready to use layouts. If I'm searching for a way to switch them only. Am I right?
    My suggestion isn't that you use the XkbOptions switch since this won't work for what you are asking.  Instead, I'm recommending you use a little keyboard shortcut utility, xbindkeys and use that to issue the setxkbmap command I mentioned earlier.  All you have to do is bind the shortcut to keys that don't change across keyboard layout changes (if you have a number pad, an easy solution is to use a modifier + one of these keys as it won't change).  This isn't a toggle like the xorg.conf edit, but can switch to any layout you choose to bind in any order you choose to perform.

  • Unable to change keyboard layout for all users on Windows Server 2012 R2

    Hi,
    I have a requirement where I need to support national keyboard layout for Danish for all users on that machine. When I ran the powershell with script Set-WinUserLanguageList
    -LanguageList da-DK it only sets the Danish keyboard layout to the specific logged in user.However the for other users its same English(US) keyboard which is not expected.
    Please help me how to set the Danish keyboard for all users on the machine. Its Urgent!Thanks

    Hi Mike,
    Thanks for reply.
    But I need to configure everything using powershell script. Is it possible to use powershell script to setting group policy/ adding logon script ?
    These are pretty basic administration tasks and almost always quicker to accomplish with the GUI. Why do you want to use a PowerShell script?
    EDIT: Here's some information on the topic however:
    https://technet.microsoft.com/en-us/library/cc781361%28v=ws.10%29.aspx
    http://blogs.technet.com/b/heyscriptingguy/archive/2011/01/06/use-powershell-and-group-policy-for-your-logon-script.aspx
    Don't retire TechNet! -
    (Don't give up yet - 13,225+ strong and growing)

  • ArchWiki: suggestion for a new page layout

    Finally, I have some time to spare for ArchWiki improvement.
    I have modified my article on CMYK support in The GIMP as an example.
    Please take a look at it here:
    http://wiki.archlinux.org/index.php/CMY … n_The_GIMP
    The code to produce the box on the right is here:
    {{sn|'''Article summary:'''
    This article will show how to enable rudimentary CMYK support in The GIMP using the Separate plug-in, and explain how to use color proof filter to soft-proof your images.
    It will also cover more general topics on CMYK colors and DTP.
    '''Required software:'''
    *[http://www.gimp.org/ The GIMP The GIMP]
    *[http://www.littlecms.com/ lcms]
    *[http://download.adobe.com/pub/adobe/iccprofiles/win/AdobeICCProfiles_end-user.zip Adobe ICC profiles]
    *[http://www.blackfiveservices.co.uk/separate.shtml Separate plugin source]
    '''Related article:'''
    *[[Using lprof to profile monitors]]
    This is the best we can do with current ArchWiki setup. It would be even better if we could list categories in the box, as well as i18n links.

A: ArchWiki: suggestion for a new page layout

dtw wrote:Doesn't display correctly in IE
I've been tinkering with the templates. It's fixed now, I think.
Anyway, the templates used for the job can be seen from the code:
{{Article summary start}}
{{Article summary text|This article will show how to enable rudimentary CMYK support in The GIMP using the Separate plug-in, and explain how to use color proof filter to soft-proof your images. It will also cover more general topics on CMYK colors and DTP.}}
{{Article summary heading|Translations}}
{{i18n_entry|Deutsch|CMYK support in The GIMP(Deutsch)}}
{{i18n_entry|English|CMYK support in The GIMP}}
{{i18n_entry|Español|CMYK support in The GIMP(Español)}}
{{i18n_entry|Finnish|CMYK support in The GIMP(Suomi)}}
{{i18n_entry|Français|CMYK support in The GIMP(Français)}}
{{i18n_entry|Nederlands|CMYK support in The GIMP(Nederlands)}}
{{Article summary heading|Required software}}
{{Article summary link|The GIMP (v2.0 and above)|http://www.gimp.org/}}
{{Article summary link|lcms (v1.15 ?)|http://www.littlecms.com/}}
{{Article summary link|Separate plugin (v0.10 and above ?)|http://www.blackfiveservices.co.uk/separate.shtml}}
{{Article summary heading|Related articles}}
{{Article summary wiki|Using lprof to profile monitors}}
{{Article summary end}}
As you can see, it's a bit more typing than before, but it sure looks better. I might shorten the names for the templates. I wanted to make them memorable so they are a bit long.
As you can see, the problem of i18n links integration was fixed, so you can use existing i18n template and combine with the new "Article summary" set.
I will modify the article about writing summaries to include those templates and examples.
EDIT:  :oops:  the i18n links in the article are just examples. Don't use them, since they lead to non-existing pages.
EDIT2: Okay, I've played around with the appearance of the summary box, but I'm at work now, so it's going nowhere. I'll play with it some more when I get home.

dtw wrote:Doesn't display correctly in IE
I've been tinkering with the templates. It's fixed now, I think.
Anyway, the templates used for the job can be seen from the code:
{{Article summary start}}
{{Article summary text|This article will show how to enable rudimentary CMYK support in The GIMP using the Separate plug-in, and explain how to use color proof filter to soft-proof your images. It will also cover more general topics on CMYK colors and DTP.}}
{{Article summary heading|Translations}}
{{i18n_entry|Deutsch|CMYK support in The GIMP(Deutsch)}}
{{i18n_entry|English|CMYK support in The GIMP}}
{{i18n_entry|Español|CMYK support in The GIMP(Español)}}
{{i18n_entry|Finnish|CMYK support in The GIMP(Suomi)}}
{{i18n_entry|Français|CMYK support in The GIMP(Français)}}
{{i18n_entry|Nederlands|CMYK support in The GIMP(Nederlands)}}
{{Article summary heading|Required software}}
{{Article summary link|The GIMP (v2.0 and above)|http://www.gimp.org/}}
{{Article summary link|lcms (v1.15 ?)|http://www.littlecms.com/}}
{{Article summary link|Separate plugin (v0.10 and above ?)|http://www.blackfiveservices.co.uk/separate.shtml}}
{{Article summary heading|Related articles}}
{{Article summary wiki|Using lprof to profile monitors}}
{{Article summary end}}
As you can see, it's a bit more typing than before, but it sure looks better. I might shorten the names for the templates. I wanted to make them memorable so they are a bit long.
As you can see, the problem of i18n links integration was fixed, so you can use existing i18n template and combine with the new "Article summary" set.
I will modify the article about writing summaries to include those templates and examples.
EDIT:  :oops:  the i18n links in the article are just examples. Don't use them, since they lead to non-existing pages.
EDIT2: Okay, I've played around with the appearance of the summary box, but I'm at work now, so it's going nowhere. I'll play with it some more when I get home.

Maybe you are looking for

  • Iweb wont publish picture borders wont show and mp3 in html snippet wont publish.

    Hi all, I'm new to this forum, I'm following www.iweb for musicians.com website design, Roddy the man is ace. I'm trying to publish my site with borders and flection on my first page and also a HTML snip box with a code for a mp3. It all shows up and

  • Trouble launching Illustrator

    Just purchased CC today. Every time I try to launch Illustrator, I get an error from Windows that says "windows detected an error and will close the program. It will let me know if it finds a solution". I don't know what's wrong. I have all required

  • Start date changing

    Hi Gurus How can we change the Existing EE start date?<br /> I have to move forward the start date from Initial entry date.. Ex: from Oct 1st to Januray 1st. can any one help me how to change? Thanks &;Regards Please try search answer for this questi

  • Encore CS4 Menü Probleme

    Hallo zusammen, Ich arbeite gerade an einem Kapitelmenü, mein Hauptfilm besteht aus 9 Kapitel. Habe demnach auch neun Buttons die einwandfrei funktionieren. Jetzt habe ich neben den Buttons eine Landkarte abgebildet, die je nachdem welcher Kapitel an

  • ADMEveparser plug in missing?????  help.

    I recently transfered all of my information from my old macbook to my new imac.  I tried to open up illustrator today for the first time on the new imac, and a window pops up saying "missing ADMEverparser plug-in", then the program automatically quit