Kde 3 Emulator Problem

I use Wireless Development kit on SuSE 8.0 with Kde 3 and the Emulator-Phone Window size is about 50 x 20 pixel...(and i can't change the size) anybody knows what to do?

Problem solved... there seems to be a bug in the jdk1.3.x that Frames don't get the right size ... in Jdk1.4.0 all works fine.. ;-)
greetings repo

Similar Messages

  • Java ME Platform SDK - S60 Emulator Problem

    Hi Everyone!
    I am new to S60 development. I searched the forum, and some other discussion forums but could not find any solution to my problem (If there is one in this forum, sorry about that).
    I installed Java ME Platform SDK 3.0 Early Access. I also installed Java SDK for S60-FP1, and added this platform to my IDE with no problems.
    The problem is, I can write and execute my code on S60 emulator, but Java IDE has got this annoying exception blinking on the bottom right side saying: "java.lang.IllegalArgumentException: Device S60Emulator not registered!". As I said, I can run the application, but I cannot debug because of some exceptions!
    Why this can be happening, can it be a misconfiguration or something?
    Thank you all!

    Did you check Release Notes of the SDK? I've seen it once - if memory serves it lists quite a lot of known bugs.
    Maybe the problem you describe is listed there too... and if you're really lucky then description may even mention some workaround for it.

  • Terminal Color emulation problems (emacs)

    I'm trying to use emacs for a C course I'm taking in college, and my goal is to configure it like a fully functional IDE. So far I'm at color problems.
    I've installed the color-themes package along with cc-mode, and some text/background combinations aren't being emulated correctly. For example, certain bold things have the same foreground and background colors, such as file names and other stuff. I've been having more problems with other color emulation too, like servers that use color emulation for ls to show different types of files.
    Also, I can't seem to use control+meta at the same time, it just uses meta.
    My terminal is set to xterm-color
    Here are some images demonstrating the problem:
    http://users.wpi.edu/~zm/emacs-colors1.jpg
    http://users.wpi.edu/~zm/emacs-colors2.jpg
    Here is my .emacs file :
    (custom-set-variables
    ;; custom-set-variables was added by Custom -- don't edit or cut/paste it!
    ;; Your init file should contain only one such instance.
    '(case-fold-search t)
    '(current-language-environment "English"))
    (custom-set-faces
    ;; custom-set-faces was added by Custom -- don't edit or cut/paste it!
    ;; Your init file should contain only one such instance.
    ;; add ~/emacs-libs to load path
    (setq load-path (cons "~/emacs-libs" load-path))
    (progn (cd "~/emacs-libs") (normal-top-level-add-subdirs-to-load-path))
    (progn (cd "~/"))
    ;; load color-theme library and start color-theme-andreas
    (global-font-lock-mode t 1)
    (font-lock-mode)
    (load-library "color-theme")
    (color-theme-initialize)
    (color-theme-andreas)
    ;; load line number mode
    (require 'linum)
    ;; Create my personal style.
    (defconst my-c-style
    '((c-cleanup-list . (brace-else-brace
    brace-elsif-brace
    brace-catch-brace
    empty-defun-braces
    defun-close-semi
    list-close-comma))
    "My C Programming Style")
    (c-add-style "PERSONAL" my-c-style)
    ;; Customizations for all modes in CC Mode.
    (defun my-c-mode-common-hook ()
    ;; set my personal style for the current buffer
    (c-set-style "PERSONAL"))
    ;; Customizations for all modes in CC Mode.
    (add-hook 'c-mode-common-hook 'my-c-mode-common-hook)

    Are you using the emacs that Apple provides in Terminal? The one in /usr/bin?
    If so, perhaps you would be happier with an emacs that understands the idea of having its own windows?
    Two ways to do that...
    1) Use X windows, and install an emacs that understands X windows
    2) Find one of the versions of emacs that has been taught to understand Aqua, i.e., that works within the Finder/Desktop environment.
    Of the latter, I think there are couple out there on the web, Aquamacs Emacs and Carbon Emacs (but I don't keep carefull track, so I'm not sure).
    For the former, it's a bit more work to find and install such an emacs. One possibility is the "fink" package management system.

  • Palm OS Emulator problem

    hi all,
    the problem i've got has something to do with the refreshing of my Midlet's display.
    I've got two "Displayables" one Canvas and one TextBox, first i set the Canvas (with an image) as the current object on my display, it works fine, the problem is that i've got a command in the Canvas that when pressed it change the midletsdisplay.setCurrent(TextBox).
    If i run this midlet with the ktoolbar application everything works fine, but if i run it with the Palm Os Emulator 3.3 the Canvas is not removed from the display and i cant see the TextBox.... any ideas?
    thank you,
    Laura.

    [LauraD],
    What you are seeing with the Display.setCurrent() method is explained in the MIDP API documentation. There isn't a website that I can point you to the online, so I have taken the liberty to cut n paste the setCurrent() API documentation explanation of its usage:
    setCurrent
    public void setCurrent(Displayable nextDisplayable)Requests that a different Displayable object be made visible on the display. The change will typically not take effect immediately. It may be delayed so that it occurs between event delivery method calls, although it is not guaranteed to occur before the next event delivery method is called. The setCurrent() method returns immediately, without waiting for the change to take place. Because of this delay, a call to getCurrent() shortly after a call to setCurrent() is unlikely to return the value passed to setCurrent().
    Calls to setCurrent() are not queued. A delayed request made by a setCurrent() call may be superseded by a subsequent call to setCurrent(). For example, if screen S1 is current, then
             d.setCurrent(S2);
             d.setCurrent(S3); may eventually result in S3 being made current, bypassing S2 entirely.
    When a MIDlet application is first started, there is no current Displayable object. It is the responsibility of the application to ensure that a Displayable is visible and can interact with the user at all times. Therefore, the application should always call setCurrent() as part of its initialization.
    The application may pass null as the argument to setCurrent(). This does not have the effect of setting the current Displayable to null; instead, the current Displayable remains unchanged. However, the application management software may interpret this call as a hint from the application that it is requesting to be placed into the background. Similarly, if the application is in the background, passing a non-null reference to setCurrent() may be interpreted by the application management software as a hint that the application is requesting to be brought to the foreground. The request should be considered to be made even if the current Displayable is passed to the setCurrent(). For example, the code
             d.setCurrent(d.getCurrent()); generally will have no effect other than requesting that the application be brought to the foreground. These requests are only hints, and there is no requirement that the application management software comply with these requests in a timely fashion if at all.
    If the Displayable passed to setCurrent() is an Alert, the previous Displayable is restored after the Alert has been dismissed. The effect is as if setCurrent(Alert, getCurrent()) had been called. Note that this will result in an exception being thrown if the current Displayable is already an alert.
    To specify the Displayable to be shown after an Alert is dismissed, the application should use the setCurrent(Alert, Displayable) method. If the application calls setCurrent() while an Alert is current, the Alert is removed from the display and any timer it may have set is cancelled.
    If the application calls setCurrent() while a system screen is active, the effect may be delayed until after the system screen is dismissed. The implementation may choose to interpret setCurrent() in such a situation as a request to cancel the effect of the system screen, regardless of whether setCurrent() has been delayed.
    Parameters:
    nextDisplayable - the Displayable requested to be made current; null is allowed.
    So as you can see, setCurrent() requests are only hints as explained in the documentation. There is no requirement that the Java Application Management software comply with these requests in a timely fashion ,if at all. Therefore what it means for you is that the JAM implemented for the wireless toolkit inteprets the call to setCurrent() differently than the Palm OS application management software which is running on the Palm OS operating system. Suffice to say, this does not mean that the MIDP implementation for the Palm OS is non compliant, it just means that the different runtime environment inteprets setCurrent() differently since calling the method is just a hint to the system to bring the Displayble object to the foreground.
    It will be helpful if you can post snippets of the code for us to examine and suggest a way to workaround your issue.
    HTH.
    Allen Lai
    Developer Technical Support
    SUN Microsystems
    http://www.sun.com/developers/support/

  • Emulator problem

    Hi
    I have a problem I am trying to run the hello.Midlet in Sun Java Me 3.0 the problem is, is that the code is built but the IDE does not run the emulator? I dont have this problem running the same code in the BlueJ IDE using the Wireless ToolKit 2.5.2

    I usually instance JDK -> WLTK or JDK ME 3.0 -> Netbeans
    When start Netbeans, I choose browse of application is C://Sun/Application, by I create in C://
    And I don't see error when running application, I think maybe User in Win7 when use, or folder's name created.

  • KDE 4.10. problems

    Hello,
    Yesterday I upgrade KDE from 4.9.5 to 4.10. All went perfect but now, some apps like Kmess and Gajim doesn' t use the KDE notifications and use their own notifications ( a green window in the case of gajim and in kmess a pop up on the middle of the top panel, they look terrible ) Anyone nows how to restore the kde notifications ?
    P.D: Antoher problem I have is that the device notificator now always says that I have a mounted 0b floppy disk.

    George wrote:Make sure you've got the notifications widget enabled in the system tray settings (right click on the sys tray).
    Thank you, now I have notifications again. But the problem with the device manager cointinues. It shows a Floppy disk with 0 bytes size, I can' t access the data ( because this device doesn' t exist ) and I can' t umount, and is always on the try. I checked fstab file and there is nothing strange. It could be a bug of udisks ? This is the output of the command udisks --dump.
    udisks --dump
    ========================================================================
    Showing information for /org/freedesktop/UDisks/devices/fd0
    native-path: /sys/devices/platform/floppy.0/block/fd0
    device: 2:0
    device-file: /dev/fd0
    presentation: /dev/fd0
    detected at: dom 10 feb 2013 23:01:49 CET
    system internal: 0
    removable: 1
    has media: 0
    detects change: 0
    detection by polling: 0
    detection inhibitable: 0
    detection inhibited: 0
    is read only: 0
    is mounted: 0
    mount paths:
    mounted by uid: 0
    presentation hide: 0
    presentation nopolicy: 1
    presentation name:
    presentation icon:
    automount hint:
    size: 0
    block size: 0
    job underway: no
    usage:
    type:
    version:
    uuid:
    label:
    drive:
    vendor: Floppy Drive
    model:
    revision:
    serial:
    WWN:
    detachable: 0
    can spindown: 0
    rotational media: Yes, unknown rate
    write-cache: unknown
    ejectable: 0
    adapter: Unknown
    ports:
    similar devices:
    media:
    compat: floppy
    interface: platform
    if speed: (unknown)
    ATA SMART: not available
    ========================================================================
    Showing information for /org/freedesktop/UDisks/devices/sda
    native-path: /sys/devices/pci0000:00/0000:00:1f.2/ata9/host8/target8:0:0/8:0:0:0/block/sda
    device: 8:0
    device-file: /dev/sda
    presentation: /dev/sda
    by-id: /dev/disk/by-id/ata-ST3500418AS_9VMCBD07
    by-id: /dev/disk/by-id/wwn-0x5000c5001ffb5c23
    detected at: dom 10 feb 2013 23:01:49 CET
    system internal: 1
    removable: 0
    has media: 1 (detected at dom 10 feb 2013 23:01:49 CET)
    detects change: 0
    detection by polling: 0
    detection inhibitable: 0
    detection inhibited: 0
    is read only: 0
    is mounted: 0
    mount paths:
    mounted by uid: 0
    presentation hide: 0
    presentation nopolicy: 0
    presentation name:
    presentation icon:
    automount hint:
    size: 500103634432
    block size: 512
    job underway: no
    usage:
    type:
    version:
    uuid:
    label:
    partition table:
    scheme: mbr
    count: 3
    drive:
    vendor: ATA
    model: ST3500418AS
    revision: CC38
    serial: 9VMCBD07
    WWN: 5000c5001ffb5c23
    detachable: 0
    can spindown: 1
    rotational media: Yes, at 7200 RPM
    write-cache: enabled
    ejectable: 0
    adapter: Unknown
    ports:
    similar devices:
    media:
    compat:
    interface: ata
    if speed: (unknown)
    ATA SMART: Updated at dom 10 feb 2013 23:01:49 CET
    overall assessment: Good
    ===============================================================================
    Attribute Current|Worst|Threshold Status Value Type Updates
    ===============================================================================
    raw-read-error-rate 117| 99| 6 good 166844081 Pre-fail Online
    spin-up-time 97| 97| 0 n/a 0 Pre-fail Online
    start-stop-count 98| 98| 20 good 2228 Old-age Online
    reallocated-sector-count 100|100| 36 good 0 sectors Pre-fail Online
    seek-error-rate 81| 60| 30 good 123879807 Pre-fail Online
    power-on-hours 84| 84| 0 n/a 601,0 days Old-age Online
    spin-retry-count 100|100| 97 good 0 Pre-fail Online
    power-cycle-count 99| 99| 20 good 1157 Old-age Online
    runtime-bad-block-total 100|100| 0 n/a 0 Old-age Online
    end-to-end-error 100|100| 99 good 0 Old-age Online
    reported-uncorrect 100|100| 0 n/a 0 sectors Old-age Online
    command-timeout 100| 95| 0 n/a 1753 Old-age Online
    high-fly-writes 100|100| 0 n/a 0 Old-age Online
    airflow-temperature-celsius 71| 58| 45 good 29C / 84,2F Old-age Online
    temperature-celsius-2 29| 42| 0 n/a 29C / 84,2F Old-age Online
    hardware-ecc-recovered 36| 27| 0 n/a 166844081 Old-age Online
    current-pending-sector 100|100| 0 n/a 0 sectors Old-age Online
    offline-uncorrectable 100|100| 0 n/a 0 sectors Old-age Offline
    udma-crc-error-count 200|200| 0 n/a 0 Old-age Online
    head-flying-hours 100|253| 0 n/a 702,2 days Old-age Offline
    total-lbas-written 100|253| 0 n/a 95817134109 Old-age Offline
    total-lbas-read 100|253| 0 n/a 104282471364 Old-age Offline
    ========================================================================
    Showing information for /org/freedesktop/UDisks/devices/sda1
    native-path: /sys/devices/pci0000:00/0000:00:1f.2/ata9/host8/target8:0:0/8:0:0:0/block/sda/sda1
    device: 8:1
    device-file: /dev/sda1
    presentation: /dev/sda1
    by-id: /dev/disk/by-id/ata-ST3500418AS_9VMCBD07-part1
    by-id: /dev/disk/by-id/wwn-0x5000c5001ffb5c23-part1
    by-id: /dev/disk/by-uuid/170cf4f3-3f7e-4d2d-ab67-570c700e976f
    detected at: dom 10 feb 2013 23:01:49 CET
    system internal: 1
    removable: 0
    has media: 1 (detected at dom 10 feb 2013 23:01:49 CET)
    detects change: 0
    detection by polling: 0
    detection inhibitable: 0
    detection inhibited: 0
    is read only: 0
    is mounted: 1
    mount paths: /
    mounted by uid: 0
    presentation hide: 0
    presentation nopolicy: 0
    presentation name:
    presentation icon:
    automount hint:
    size: 29002305024
    block size: 512
    job underway: no
    usage: filesystem
    type: ext4
    version: 1.0
    uuid: 170cf4f3-3f7e-4d2d-ab67-570c700e976f
    label:
    partition:
    part of: /org/freedesktop/UDisks/devices/sda
    scheme: mbr
    number: 1
    type: 0x83
    flags: boot
    offset: 32256
    alignment offset: 0
    size: 29002305024
    label:
    uuid:
    ========================================================================
    Showing information for /org/freedesktop/UDisks/devices/sda2
    native-path: /sys/devices/pci0000:00/0000:00:1f.2/ata9/host8/target8:0:0/8:0:0:0/block/sda/sda2
    device: 8:2
    device-file: /dev/sda2
    presentation: /dev/sda2
    by-id: /dev/disk/by-id/ata-ST3500418AS_9VMCBD07-part2
    by-id: /dev/disk/by-id/wwn-0x5000c5001ffb5c23-part2
    by-id: /dev/disk/by-uuid/986135cd-9358-419d-b8aa-0fa4fcaa4d7d
    detected at: dom 10 feb 2013 23:01:49 CET
    system internal: 1
    removable: 0
    has media: 1 (detected at dom 10 feb 2013 23:01:49 CET)
    detects change: 0
    detection by polling: 0
    detection inhibitable: 0
    detection inhibited: 0
    is read only: 0
    is mounted: 1
    mount paths: /home
    mounted by uid: 0
    presentation hide: 0
    presentation nopolicy: 0
    presentation name:
    presentation icon:
    automount hint:
    size: 466998497280
    block size: 512
    job underway: no
    usage: filesystem
    type: ext4
    version: 1.0
    uuid: 986135cd-9358-419d-b8aa-0fa4fcaa4d7d
    label:
    partition:
    part of: /org/freedesktop/UDisks/devices/sda
    scheme: mbr
    number: 2
    type: 0x83
    flags:
    offset: 29002337280
    alignment offset: 0
    size: 466998497280
    label:
    uuid:
    ========================================================================
    Showing information for /org/freedesktop/UDisks/devices/sda3
    native-path: /sys/devices/pci0000:00/0000:00:1f.2/ata9/host8/target8:0:0/8:0:0:0/block/sda/sda3
    device: 8:3
    device-file: /dev/sda3
    presentation: /dev/sda3
    by-id: /dev/disk/by-id/ata-ST3500418AS_9VMCBD07-part3
    by-id: /dev/disk/by-id/wwn-0x5000c5001ffb5c23-part3
    by-id: /dev/disk/by-uuid/ffe487bb-c718-4793-ba7c-5d20435610af
    detected at: dom 10 feb 2013 23:01:49 CET
    system internal: 1
    removable: 0
    has media: 1 (detected at dom 10 feb 2013 23:01:49 CET)
    detects change: 0
    detection by polling: 0
    detection inhibitable: 0
    detection inhibited: 0
    is read only: 0
    is mounted: 0
    mount paths:
    mounted by uid: 0
    presentation hide: 0
    presentation nopolicy: 0
    presentation name:
    presentation icon:
    automount hint:
    size: 4102799872
    block size: 512
    job underway: no
    usage: other
    type: swap
    version: 2
    uuid: ffe487bb-c718-4793-ba7c-5d20435610af
    label:
    partition:
    part of: /org/freedesktop/UDisks/devices/sda
    scheme: mbr
    number: 3
    type: 0x82
    flags:
    offset: 496000834560
    alignment offset: 0
    size: 4102799872
    label:
    uuid:
    ========================================================================
    Showing information for /org/freedesktop/UDisks/devices/sr0
    native-path: /sys/devices/pci0000:00/0000:00:1f.2/ata5/host4/target4:0:0/4:0:0:0/block/sr0
    device: 11:0
    device-file: /dev/sr0
    presentation: /dev/sr0
    by-id: /dev/disk/by-id/ata-HL-DT-ST_DVDRAM_GH24NS90_K7EBCFE1508
    by-id: /dev/disk/by-id/wwn-0x5001480000000000
    detected at: dom 10 feb 2013 23:01:49 CET
    system internal: 0
    removable: 1
    has media: 0
    detects change: 1
    detection by polling: 1
    detection inhibitable: 1
    detection inhibited: 0
    is read only: 0
    is mounted: 0
    mount paths:
    mounted by uid: 0
    presentation hide: 0
    presentation nopolicy: 0
    presentation name:
    presentation icon:
    automount hint:
    size: 0
    block size: 0
    job underway: no
    usage:
    type:
    version:
    uuid:
    label:
    drive:
    vendor: HL-DT-ST
    model: HL-DT-ST DVDRAM GH24NS90
    revision: IN00
    serial: K7EBCFE1508
    WWN: 5001480000000000
    detachable: 0
    can spindown: 0
    rotational media: Yes, unknown rate
    write-cache: unknown
    ejectable: 1
    adapter: Unknown
    ports:
    similar devices:
    media:
    compat: optical_cd optical_cd_r optical_cd_rw optical_dvd optical_dvd_plus_r optical_dvd_plus_r_dl optical_dvd_plus_rw optical_dvd_r optical_dvd_ram optical_dvd_rw optical_mrw optical_mrw_w
    interface: scsi
    if speed: (unknown)
    ATA SMART: not available
    ========================================================================
    A screenshot of the device manager:

  • Emulator problem with 64bit Architecture

    Hi All,
    I'm having a problem with my WTK Version 2.5.2 for CLDC.
    I'm using Ubuntu 10.04 x86_64 version and JDK1.6.0_21 64bit.
    When I run a simple MIDP application it gives the below error:
    java.lang.UnsatisfiedLinkError: /usr/local/netbeans-6.9.1/mobility/WTK2.5.2/bin/sublime.so: /usr/local/netbeans-6.9.1/mobility/WTK2.5.2/bin/sublime.so: wrong ELF class: ELFCLASS32 (Possible cause: architecture word width mismatch)
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1803)
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1699)
    at java.lang.Runtime.load0(Runtime.java:770)
    at java.lang.System.load(System.java:1003)
    at com.sun.kvem.Sublime.<init>(Unknown Source)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
    at java.lang.Class.newInstance0(Class.java:355)
    at java.lang.Class.newInstance(Class.java:308)
    at com.sun.kvem.Lime.createLime(Unknown Source)
    at com.sun.kvem.KVMBridge.<init>(Unknown Source)
    at com.sun.kvem.KVMBridge.getBridge(Unknown Source)
    at com.sun.kvem.midp.MIDP.run(Unknown Source)
    at com.sun.kvem.environment.EmulatorInvoker.runEmulatorImpl(Unknown Source)
    at com.sun.kvem.environment.EmulatorInvoker.main(Unknown Source)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.sun.kvem.environment.JVM.main(Unknown Source)
    When I was searching for a solution I found post related to the same error "http://forums.sun.com/thread.jspa?threadID=5217069"
    and there I got the solution. from the post send by don_mahantya post 41.
    I was facing the same problem as well.
    I use Netbeans 6.7.1 on openSUSE 11.1 64-bit and I would get the error whenever I tried to invoke the Java ME emulator.
    All I did was edit the emulator script i.e.
    $ vi /opt/netbeans/netbeans-6.7.1/mobility8/WTK2.5.2/bin/emulator
    and I added the path to the 32-bit Java directory
    javapathtowtk=/opt/java/jdk1.6.0_14-32bit/bin/
    NOTE: Make sure to put 'bin/' at the end
    Hope it helps.. works for me The same solution works with my case very well.
    I wonder why can't I use Java 64bit with this WTK ?
    Is there a diferent WTK version to use with 64bit? I'm using WTK which comes with NetBeans 6.9.1

    I had the exact same problems (MS Natural Ergonomic Keyboard 4000 + Intellitype 7.0), and it was driving me nuts. But I've found a solution (as laid out on my blog @ http://carlo.zottmann.org/2009/09/11/upgrading-to-snow-leopard/):
    Get Ukulele (http://scripts.sil.org/cms/scripts/page.php?siteid=nrsi&itemid=ukelele), the Unicode keyboard layout editor. After downloading it, look around the DMG and find these two files: LogitechGerman.keylayout and LogitechGerman.icns. After copying them to the /Library/Keyboard Layouts/, all that's left is opening the Language & Text preference pane and activating the "Logitech German" layout.
    At that point, the Intellitype drivers can be uninstalled, but that'll disable most of the keyboard's special function keys (1-5, ★, home/search/email/calculator).
    Hope this helps!

  • Important KDE network apps problem

    I have a strange problem : All internet related programs are slow on KDE, they have all a 5-second latency before doing anything. When i use kmail or konqueror for example, i have to wait about 5 second before anything to react. The problem stops when I install a proxy on my computer, squid in that case. It partially resolves the problem, but it can't be used for knode, kmail or any non-web internet programs.
    I don't know how to solve that, i hope you'll help me.
    Thank in advance,
    V.

    Fixed.
    I just installed bind and set "nameserver 127.0.0.1" to resolv.conf.
    It seems that it was a named problem. Hard to believe but it works now..

  • [solved] kde without arts - problem with aplay/knotify

    Hi,
    I finally got convinced to switch of arts for kde. Amarok runs much better now but I face a problem with knotify/aplay.
    With arts not active knotify won't play sounds anymore. knotify is the program responsible for kde's bells and whistles, like playing a sound when you open or close a window etc.
    knotify specifies an option for an external player, which I think is the thing to use in case you don't use arts.
    I configured that option to use aplay, the sound replay program provided by alsa. However, that has problems. Many kde sounds come with 8khz sample frequency. If I play one of these sounds with aplay their playback frequency is much to low and the sound is heavily distorted. It seems the downmixing does not work.
    If I use aplay -Ddmix or -Dduplex I get following error:
    Playing raw data 'KDE_Beep.ogg' : Unsigned 8 bit, Rate 8000 Hz, Mono
    aplay: set_params:857: Sample format non available
    I think that may have something to do with my .asoundrc or maybe there is another program to use for sound playback I don't know about. Also, I could be that knotify IS supposed to play the sounds even without arts running and something else is wrong.
    Here is my .asoundrc, any advice is welcome:
    # Set default sound card
    # Useful so that all settings can be changed to a different card here.
    pcm.snd_card {
    type hw
    card 0
    # Allow mixing of multiple output streams to this device
    pcm.dmix {
    type dmix
    ipc_key 1024
    slave.pcm "snd_card"
    slave {
    # This stuff provides some fixes for latency issues.
    # buffer_size should be set for your audio chipset.
    period_time 0
    period_size 1024
    buffer_size 16384
    bindings {
    0 0
    1 1
    # Allow reading from the default device.
    # Also known as record or capture.
    pcm.dsnoop {
    type dsnoop
    ipc_key 2048
    slave.pcm "snd_card"
    bindings {
    0 0
    1 1
    # This is what we want as our default device
    # a fully duplex (read/write) audio device.
    pcm.duplex {
    type asym
    playback.pcm "dmix"
    capture.pcm "dsnoop"
    # CONVERSION PLUG #
    # Setting the default pcm device allows the conversion
    # rate to be selected on the fly.
    # duplex mode allows any alsa enabled app to read/write
    # to the dmix plug (Fixes a problem with wine).
    pcm.!default {
    type plug
    slave.pcm "duplex"
    # Apparently this is wrong (breaks mplayer for me opening the device)
    #ctl.!default {
    # type plug
    # slave.pcm "snd_card"
    # AOSS #
    # OSS dsp0 device
    pcm.dsp0 {
    type plug
    slave.pcm "duplex"
    # OSS control for dsp0 (needed?...this might not be useful)
    ctl.dsp0 {
    type plug
    slave.pcm "snd_card"
    # OSS control for dsp0 (default old OSS is mixer0)
    ctl.mixer0 {
    type plug
    slave.pcm "snd_card"
    Cheers,
    Dominik

    Ok, I came to a solution.
    My .asoundrc was ok. It was aplay that I wasn't aware of it couldn't handle .ogg files, it tried to play it anyway and that's why I got garbled sound output *headdesk*
    I installed alsaplayer, after running it once I edited .alsaplayer/config to use the "text" user interface by default. Setting alsaplayer as external player for knotify seems to work.
    However, knotify won't let me play sounds in quick succession, so I lose a knotify sound every now and then.

  • KDE (KMod3) Logout Problem

    I am using Kmod3 on an EeePC 901.  I have an irritating (but not serious) problem with the KDE logout menu.
    If I select "End Current Session" all seems to work OK, then when I try to log in as another user (or root), the background image appears, the Autostart scripts run, but the desktop does not appear (Icons, toolbars, etc). I have to CTRL+ALT+DELETE to force a shutdown, then start again.  All other Log Off options work perfectly.
    I'd be grateful for any suggestions.

    Funny ... I looked for a similar problem in the forum records and did not find any ...
    I'll give your idea a try.
    Just for the record, I do not think the problem is related to Intel drivers (as suggested in one of the threads) because one if the machines has an nvidia card... the second system does have an Intel video card though.
    Thanks again.
    R.

  • KDE/KDM initialisation problem [SOLVED]

    On my laptop, all of a sudden, kdm refuses to start KDE anymore. It will just launch a single borderless white terminal and that's it. The strange thing is, if I add "startkde" to ~/.xinitrc and run "startx" then kde starts up fine. I've never encountered this before, and am at a loss as to why it is happening. Has anyone ever encountered this before?
    Last edited by Valheru (2007-01-31 20:09:31)

    The session type is set to KDE.
    One thing I noticed, /var/log/kdm has a few errors in it that are strange :
    Note that your system uses syslog. All of kdm's internally generated messages
    (i.e., not from libraries and external programs/scripts it uses) go to the
    daemon.* syslog facility; check your syslog configuration to find out to which
    file(s) it is logged. PAM logs messages related to authentication to authpriv.*.
    X Window System Version 7.1.1
    Release Date: 12 May 2006
    X Protocol Version 11, Revision 0, Release 7.1.1
    Build Operating System: UNKNOWN
    Current Operating System: Linux penguin 2.6.19-beyond2 #2 PREEMPT Sat Dec 30 23:05:58 CET 2006 i686
    Build Date: 11 January 2007
            Before reporting problems, check http://wiki.x.org
            to make sure that you have the latest version.
    Module Loader present
    Markers: (--) probed, (**) from config file, (==) default setting,
            (++) from command line, (!!) notice, (II) informational,
            (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Sun Jan 21 14:36:10 2007
    (==) Using config file: "/etc/X11/xorg.conf"
    Fulfilled via DRI at 12587008
    Freed 12587008 (pool 2)
    (EE) PreInit returned NULL for "Mouse1"
    Synaptics DeviceInit called
    SynapticsCtrl called.
    Synaptics DeviceOn called
    Could not init font path element /usr/share/fonts/cyrillic, removing from list!
    Could not init font path element /usr/share/fonts/speedo, removing from list!
    Could not init font path element /usr/share/fonts/util, removing from list!
    QSettings: error creating /tmp/0925345898/.qt
    QSettings: failed to open file '/tmp/0925345898/.qt/qt_plugins_3.3rc'
    QSettings::sync: filename is null/empty
    QSettings: error creating /tmp/0925345898/.qt
    QSettings: failed to open file '/tmp/0925345898/.qt/qt_plugins_3.3rc'
    QSettings::sync: filename is null/empty
    Link points to "/var/tmp/kdecache-root"
    QSettings: error creating /tmp/0925345898/.qt
    QSettings: failed to open file '/tmp/0925345898/.qt/qt_plugins_3.3rc'
    QSettings::sync: filename is null/empty
    Synaptics DeviceOff called
    Freed 12587008 (pool 1)
    (EE) VIA(0): [dri] DRIScreenInit failed.  Disabling DRI.
    (EE) AIGLX: Screen 0 is not DRI capable
    Synaptics DeviceInit called
    SynapticsCtrl called.
    Synaptics DeviceOn called
    Could not init font path element /usr/share/fonts/cyrillic, removing from list!
    Could not init font path element /usr/share/fonts/speedo, removing from list!
    Could not init font path element /usr/share/fonts/util, removing from list!
    QSettings: error creating /tmp/0506252434/.qt
    QSettings: failed to open file '/tmp/0506252434/.qt/qt_plugins_3.3rc'
    QSettings::sync: filename is null/empty
    QSettings: error creating /tmp/0506252434/.qt
    QSettings: failed to open file '/tmp/0506252434/.qt/qt_plugins_3.3rc'
    QSettings::sync: filename is null/empty
    QSettings: error creating /tmp/0506252434/.qt
    QSettings: failed to open file '/tmp/0506252434/.qt/qt_plugins_3.3rc'
    QSettings::sync: filename is null/empty
    Link points to "/var/tmp/kdecache-root"
    Synaptics DeviceOff called

  • KDE 4.10 - Problems with Plastik window theme

    There seems to be several problems with the Plastik window decoration theme in KDE 4.10:
    * When switching between windows the window decoration flickers several times and takes about a second to update the colours
    * The font baseline is too high
    * The button positions are messed up
    It does not seem to affect any other themes.
    It has worked perfectly in all previous 4.x releases.

    There is a bug report about this:
    https://bugs.kde.org/show_bug.cgi?id=314532

  • WTK 3.0 + eclipse 3.4 emulator problem

    Hi,
    when i run my midlet application, wtk emulator crashes with this error:
    "Cannot create device connection: Emulator 1 terminated while waiting for it to register!"
    I'm using eclipse 3.4 and MJT
    Do you have any idea?
    Thanx for your help!

    I have version 3.0.9.8.3A, but probably it didn't change much. You can export applications also from Portal (Navigator -> Applications -> Export) and then you have tool appimp_gui to import it.

  • KDE Window Focus Problem

    In KDE, when I'm focused on a window in foreground and I click on the contents of a window in the background the focus of the window changes, but the window that was in the foreground does not go behind the window that I just clicked on.
    http://img404.imageshack.us/img404/2745 … cusli7.png
    In that picture, I was focused on the Pidgin window and I clicked on this text box of Firefox and the Pidgin window in the foreground.
    The only way to place that window in the background is to click the title bar on top of Firefox, then it behaves normally.  By the way, I'm running KDE3.
    Any help would be appreciated, thanks.
    Last edited by darkNiGHTS (2008-03-26 02:19:46)

    It's been quite some time since I've used KDE, but isn't there some kind of "raise on focus" setting that would raise newly focused windows? I'm certain this setting exists for focus-follows-mouse but I don't remember if it applies to click-to-focus.
    j

  • Emulator problems

    I have some problems with 2 emulators:
    1. Tuxboy: Everytime I try to run it I get this error message:
    *** glibc detected *** tuxboy: free(): invalid next size (fast): 0x0831d130 ***
    ======= Backtrace: =========
    /lib/libc.so.6[0xb7e4f281]
    /lib/libc.so.6[0xb7e509ba]
    /lib/libc.so.6(cfree+0x6d)[0xb7e53abd]
    tuxboy[0x80527ee]
    tuxboy[0x8051790]
    /lib/libc.so.6(__libc_start_main+0xe6)[0xb7df9a36]
    tuxboy[0x80495e1]
    ======= Memory map: ========
    08048000-0805c000 r-xp 00000000 08:05 29307 /usr/bin/tuxboy
    0805c000-08061000 rwxp 00013000 08:05 29307 /usr/bin/tuxboy
    08061000-080af000 rwxp 08061000 00:00 0
    0831d000-0833e000 rwxp 0831d000 00:00 0 [heap]
    b7be2000-b7bff000 r-xp 00000000 08:05 4250 /usr/lib/libgcc_s.so.1
    b7bff000-b7c00000 rwxp 0001c000 08:05 4250 /usr/lib/libgcc_s.so.1
    b7c00000-b7c21000 rwxp b7c00000 00:00 0
    b7c21000-b7d00000 ---p b7c21000 00:00 0
    b7d0a000-b7d0c000 rwxp b7d0a000 00:00 0
    b7d0c000-b7d1f000 r-xp 00000000 08:05 5606 /usr/lib/libbluetooth.so.3.2.4
    b7d1f000-b7d20000 rwxp 00013000 08:05 5606 /usr/lib/libbluetooth.so.3.2.4
    b7d20000-b7d33000 r-xp 00000000 08:05 4268 /usr/lib/libz.so.1.2.3.3
    b7d33000-b7d34000 rwxp 00012000 08:05 4268 /usr/lib/libz.so.1.2.3.3
    b7d34000-b7db5000 r-xp 00000000 08:05 4781 /usr/lib/libfreetype.so.6.3.20
    b7db5000-b7db9000 rwxp 00081000 08:05 4781 /usr/lib/libfreetype.so.6.3.20
    b7db9000-b7dbb000 r-xp 00000000 08:05 4203 /lib/libdl-2.10.1.so
    b7dbb000-b7dbc000 r-xp 00001000 08:05 4203 /lib/libdl-2.10.1.so
    b7dbc000-b7dbd000 rwxp 00002000 08:05 4203 /lib/libdl-2.10.1.so
    b7dbd000-b7de1000 r-xp 00000000 08:05 4604 /lib/libm-2.10.1.so
    b7de1000-b7de2000 r-xp 00023000 08:05 4604 /lib/libm-2.10.1.so
    b7de2000-b7de3000 rwxp 00024000 08:05 4604 /lib/libm-2.10.1.so
    b7de3000-b7f25000 r-xp 00000000 08:05 4629 /lib/libc-2.10.1.so
    b7f25000-b7f27000 r-xp 00142000 08:05 4629 /lib/libc-2.10.1.so
    b7f27000-b7f28000 rwxp 00144000 08:05 4629 /lib/libc-2.10.1.so
    b7f28000-b7f2c000 rwxp b7f28000 00:00 0
    b7f2c000-b7f35000 r-xp 00000000 08:05 6250 /usr/lib/libwiiuse.so
    b7f35000-b7f36000 rwxp 00008000 08:05 6250 /usr/lib/libwiiuse.so
    b7f36000-b7f3a000 r-xp 00000000 08:05 5757 /usr/lib/libSDL_ttf-2.0.so.0.6.3
    b7f3a000-b7f3b000 rwxp 00003000 08:05 5757 /usr/lib/libSDL_ttf-2.0.so.0.6.3
    b7f3b000-b7f45000 r-xp 00000000 08:05 5751 /usr/lib/libSDL_image-1.2.so.0.1.6
    b7f45000-b7f46000 rwxp 0000a000 08:05 5751 /usr/lib/libSDL_image-1.2.so.0.1.6
    b7f46000-b7f56000 rwxp b7f46000 00:00 0
    b7f56000-b7f6a000 r-xp 00000000 08:05 4619 /lib/libpthread-2.10.1.so
    b7f6a000-b7f6b000 r-xp 00014000 08:05 4619 /lib/libpthread-2.10.1.so
    b7f6b000-b7f6c000 rwxp 00015000 08:05 4619 /lib/libpthread-2.10.1.so
    b7f6c000-b7f6e000 rwxp b7f6c000 00:00 0
    b7f6e000-b7fd4000 r-xp 00000000 08:05 5244 /usr/lib/libSDL-1.2.so.0.11.2
    b7fd4000-b7fd6000 rwxp 00066000 08:05 5244 /usr/lib/libSDL-1.2.so.0.11.2
    b7fd6000-b8004000 rwxp b7fd6000 00:00 0
    b8019000-b801a000 r-xp b8019000 00:00 0 [vdso]
    b801a000-b8036000 r-xp 00000000 08:05 4598 /lib/ld-2.10.1.so
    b8036000-b8037000 r-xp 0001b000 08:05 4598 /lib/ld-2.10.1.so
    b8037000-b8038000 rwxp 0001c000 08:05 4598 /lib/ld-2.10.1.so
    bfe22000-bfe37000 rw-p bffeb000 00:00 0 [stack]
    Aborted
    2. Nestopia: This one runs fine, the only problem is that it does not safe my Tetris scores which is kinda sad. Don't know why it creates no .sav files for it.
    This happens for a few other games as well.
    Hope you can help me on those two problems.

    for those of you having problems with snes9x-gtk when enabling sound, the issue is either a bug in the gui of snes9x or in gtk (the author has said it's the latter).  see this bug ticket item for details.  the problem is, with current versions of gtk you can no longer set the sound input rate to anything other than 0, which isn't what it should be set to and can cause speed issues.  you can fix the problem by editing your snes9x.xml config file and manually setting sound_input_rate to 31950, which is the default, or some other value that works for your system/setup.  be aware that each time you make and apply _any_ change on the settings window it will reset this value back to 0, which will require that you exit snes9x-gtk and repeat this process.
    edit: i haven't used snes9x-gtk in a while but i just checked and it turns out this issue has since been resolved with the latest version of gtk2 (2.24.6).  if you're still experiencing sound/speed issues with snes9x-gtk make sure you have the latest version of gtk2 installed.
    Last edited by e_tank (2011-09-29 17:08:22)

Maybe you are looking for

  • Hyperlinks in pdf documents created from Keynote

    For some reason the hyperlinks I've recently added to a keynote document are not active when I convert it to a pdf document. Neither Preview nor Adobe recognise them as hyperlinks. I've made the hyperlinks active using the inspector, and give the ful

  • Report on employee photo upload [HRICOLFOTO]

    Hi Experts, Have gone thru many posts regarding photo upload, but is there any report or table which gives PERNR wise details for all the uploaded photos? Basically I want to know for how many employees photos have not been uploaded or the other way

  • Odd error message when attempting to start up iTunes

    Whenever I attempt to start up iTunes it tells me "The file "iTunes Library" cannot be read because it was created by a newer version of iTunes." It was working fine 30 minutes ago and I have the latest version installed. Can someone help me?

  • CS5 hangs up when I try to print.

    I have been using CS5 for some time now.  Recently I have had problems with CS5 haning up sometimes for 4 -5 min or more at a time when trying to print.  It hangs up when I first hit the print button, then again once the dialogue box opens and I hit

  • Font menu/rich text!

    I absolutely LOVE my Mac, save for one thing. I cant do Ebay listings because no font menu comes up (to make text bigger/smaller/bold/italic etc) so I cant change the text around. Also theres no html tab like there is on my PC, so I cant add in my ow