[solved] Problem adding menu icon to pypanel

Hello, I'm moving into a new place and I'm putting my desktop in the living room as a community media center since neither me or my roommates own a TV, and I'm the only one with a working desktop. They're used to Windows and a start menu. I'm running Openbox + pypanel and thought I'd make their transition a little easier by adding a start menu icon to pypanel. I followed the instructions here: https://bbs.archlinux.org/viewtopic.php?id=68177 but it isn't working. Everytime I click on the arch icon I just get this in my terminal:
Error: Invalid key sequence 'C-m'
Failure converting key sequence 'C-m' to keycodes
Error: Invalid key sequence 'C-m'
Failure converting key sequence 'C-m' to keycodes
xdo_keysequence reported an error for string 'C-m'
here is the important part of my pypanelrc config:
("xdotool key C-m", "/home/neruson/.icons/archlinux/icons/archllinuxiconcrystal128.png"),
In obkey my key is Ctrl+M and the key text is C-m, anyone know what I'm doing wrong?
EDIT:
I should also add I've tried this with the key as SUPER+Space too with the same error.
EDIT 2:
Nevermind, solved. I'm just stupid and can't follow directions well... ctrl+m instead of C-m... duh
Last edited by Mr_ED-horsey (2011-07-15 22:16:47)

Thanks for the heads up on the scripts.
~/.bash_profile has me annoyed though. It's as if it is not being executed. Will have to try adding something with a visible effect to confirm.
My ~/.bash_profile is owned by me and is executable but it simply will not add the path to the variable.
Could it be something to do with the way my session is handled?
I am currently launching my session through GDM via inittab. I know when a session is launched this way, for example, ~/.xinitrc is ignored. Perhaps this is the same for ~/.bash_profile?
Regarding ~/.bashrc, it does work this way, but it only adds the path when a terminal is launched. I need the path added regardless of a terminal being opened or not.
Cheers.

Similar Messages

  • Xfce problems - some menu icons gone [solved]

    Hello all,
    I normally use XFCE, but briefly installed the Gnome packages just to try it out again, but ran into some troubles in XFCE after I decided to uninstall Gnome...
    It seems some menu icons and icons in the "Settings" window were lost...no big deal but it's ugly. How do I rebuild these again? I tried reinstalling XFCE but with no results.
    Thanks.
    Last edited by new2arch (2009-08-29 19:50:54)

    Found the solution:
    http://bbs.archlinux.org/viewtopic.php?pid=602731

  • HOWTO: Openbox Menu Icon in PyPanel

    Using Openbox and PyPanel (or similar) and are tired of either having to minimize windows or adjust maximum window size to leave space for right-clicking on the desktop?  Do you have a keyboard shortcut set up to open the menu, but also want to be able to use the mouse to open the menu easier?  I have a solution!
    Create an icon to launch the Openbox application menu on PyPanel.
    This will allow you to click on an icon on PyPanel which opens the OpenBox menu, similar to Gnome's application menu.
    Example:
    Requirements:
    Openbox Window Manager
    PyPanel (dock/panel application)
    xdotool
    obkey - to edit key shortcuts to OpenBox's rc.xml (not required, but used in this howto)
    Recommendations:
    archlinux-artwork
    Procedure:
    1) If you don't already have PyPanel installed, install it now (as root).
    pacman -S pypanel
    2) Launch pypanel in an application launcher, or the terminal (as normal user):
    pypanel &&
    3) Install xdotool (allows for launching keyboard shortcuts via command line) (as root)
    pacman -S xdotool
    4) If you do not have obkey installed, install it with yaourt (recommended) or download the tar.gz and run the python script:
    yaourt -S obkey-git
    OR
    Go to the obkey site or download the .tar.gz by clicking here
    Extract the .tar.gz:
    tar -xvf ./obkey-dev-abf0bb12.tar.gz
    Enter the obkey-dev directory:
    cd ./obkey-dev
    Run obkey and point it to the openbox rc.xml (as normal user!):
    ./obkey ~/.config/openbox/rc.xml
    5) In obkey, find an existing key or create a new key binding by clicking "Insert sibling key" at the top. Note: Ctrl+alt combinations did not seem to work for me to create this menu launcher.
    - If it's an existing key, select it, then click on the action in the bottom right-hand pane.  A window should pop up.  Find and select "ShowMenu"
    - If it's a new key, select it, enter in the key combination you want to use in the key (text) box (for example, C-M for Ctrl+M), then click the green "Insert Action" button at the bottom.  Click on the new "Focus" action.  A window should pop up.  Find and select "ShowMenu"
    In the ShowMenu action, at the top there should be a box for "menu:"  Enter in "root-menu" in this box.
    Now save by clicking the green arrow + hard drive in the top left corner of obkey.  Now you should be able to use that key combination to open the root-menu. If not, try restarting the X Server.
    Example:
    6) This is optional, but if you want a nice Arch icon for your new menu launcher, you can grab mine.  If you want to use your own image, it cannot be .svg, so I converted a .svg icon to .png from the the official Arch Artwork package (archlinux-artwork in the repos).  If you want to just use mine:
    Enter the following commands to get the image and set it up for the next step:
    mkdir ~/.icons/archlinux/icons/
    wget -P ~/.icons/archlinux/icons/ http://img297.imageshack.us/img297/1378/archlinuxiconcrystal128.png
    7) Open up your ~/.pypanelrc with your favorite text editor (e.g. nano or gedit). 
    Scroll down to a line starting with "LAUNCH_LIST"  Most likely it will have a line like this by default:
    ("gimp-2.2", "/usr/share/imlib2/data/images/paper.png")
    Change the line to the following to use xdotool and the key you assigned in step 5, as well as the icon image we just downloaded (Note: make sure to change /home/user to your specific home directory!):
    ("xdotool key ctrl+m", "/home/user/.icons/archlinux/icons/archlinuxiconcrystal128.png")
    Next, locate a line about 15 more down starting with "APPICONS."  Change this value from 0 to 1.
    APPICONS = 1 # Show application icons
    Finally, about 20 lines down, you will see a section for Panel Layout.
    There are 5 sections for the panel:  Desktop, Tasks, Tray, Clock, and Launcher.  They can be assigned, in order of left to right on the panel, with numbers 1-5 and 0 for disabled.  Choose a location you want your Launcher to be and set the value from 1-5.  You can play around with this by setting the values, then restarting pypanel.
    Here is how I have set mine (I disabled Desktop since I only use one desktop/workspace and do not need it to say which one I am on):
    DESKTOP = 0 # Desktop name section
    TASKS = 2 # Task names section
    TRAY = 3 # System tray section
    CLOCK = 4 # Clock section
    LAUNCHER = 1 # Application launcher section
    8) Finally, kill and restart PyPanel and enjoy!
    killall pypanel && pypanel
    9) Tell me how it went, what you think, what I could improve on, etc!
    Last edited by CheesyBeef (2009-03-24 22:22:39)

    Vighi wrote:
    Very nice guide got it working almost straight away :-)
    Had to restart X in order to get key-binding to work though. And I put /home/username/.icons/archlinux/icons/archlinuxiconcrystal128.png instead of ~/ because somehow I got couldn't find logo error when pypanel started.
    BTW sexy pypanel look you have. All the info in your .dotfiles link? will get to it tomorrow I guess. Thanks!
    Thanks very much for using my guide and responding!
    I will fix that ~/ directory problem and say to use the home directory. 
    And yes, that configuration is in my .dotfiles at the moment   You can follow that link or just grab it here: http://dotfiles.org/~CheesyBeef/.pypanelrc
    Thanks again!

  • (solved)missing start menu icons

    did pacman -Syu yesterday and got a major upgrade. problem was i lost all my openoffice ,audacity.bzflag icons from the start menu. plus a few more. programs were still there, i could start them from the run command. just a little inconvenient that way. anyway i rolled back a few packages trying to find the problem and found after i rolled back to xproto-7.0.10-1 all the icons came back. now i only have one minor problem i'd like to straighten out. nothing shows up in the most used applications section of start menu. and that one i can't seem to figure out. any ideas? thanks
    Last edited by flyer (2007-10-16 23:55:13)

    Ok, I'm having this problem also. 
    Is their an easy way to install libx11 and or remove libx11-xcb?  When I try to remove/unistall libx11-xcb pacman will not remove because it is depended on by other programs.  Last time I ran accross something like this I removing the package and everything that depended on it with one pacman command, then one by one I had to reinstalled the packages that had depended on it.... 
    I have no problem doing that, but just wondered if there was a better way.
    #pacman -S libx11
    resolving dependencies... done.
    looking for inter-conflicts...
    :: libx11 conflicts with libx11-xcb. Remove libx11-xcb? [Y/n]
    done.
    error: failed to prepare transaction (could not satisfy dependencies)
    :: libx11-xcb requires aalib
    :: libx11-xcb requires dbus
    :: libx11-xcb requires libgl-dri
    :: libx11-xcb requires libwmf
    :: libx11-xcb requires libxext
    :: libx11-xcb requires libxfixes
    :: libx11-xcb requires libxkbfile
    :: libx11-xcb requires libxrender
    :: libx11-xcb requires libxt
    :: libx11-xcb requires lirc-utils
    :: libx11-xcb requires rdesktop
    :: libx11-xcb requires sdl
    :: libx11-xcb requires startup-notification
    :: libx11-xcb requires tk
    :: libx11-xcb requires x264
    :: libx11-xcb requires xorg-xinit
    :: libx11-xcb requires compiz-git

  • [SOLVED]Problem adding startup commands

    I can't seem to have a couple commands starting automatically. I've searched around alot and couldn't find anything helpful eith my issue.
    I've been using "gnome-session-properties" and .xinitrc to add these two commands (xbindkeys, and a xinput mapping for my 'weird' acer touchpad/mediakeys) but they do not seem to start with the session. If i put them in in the console everything works fine so it's not an error in them.
    Any help would be greatly appreciated.
    Thanks in advance
    PS I read somewhere that shortcuts (as in *.desktop) can be created to get programs starting at boot but since the xinput command is quite long i don't really know if this is the case.
    Edit: I'm using GNOME3 with GDM as DE.
    Last edited by northerw (2011-07-01 10:37:55)

    northerw wrote:Here are the commands i wish to have autostarting:
    xinput set-button-map "`xinput list | grep Synaptics | head -1 | grep -o id=.. | tr -d id=`" 1 2 3 17 18 19 20 8 9 10 11 12 13 14 15 16
    xbindkeys
    GDM is running commands it seems, but they are somehow wrong i guess. Is it a typo in the first line? Try running them in the background:
    xinput set-button-map "`xinput list | grep Synaptics | head -1 | grep -o id=.. | tr -d id=`" 1 2 3 17 18 19 20 8 9 10 11 12 13 14 15 16 &
    xbindkeys &
    Last edited by roygbiv (2011-06-30 20:34:45)

  • [SOLVED] Openbox 3.5 don't show menu icons

    Hi all,
    i don't speak english very well
    i try to add icons on my Openbox menu
    i added this string <showIcons>yes</showIcons> in the <menu> section of rc.xml file
    after i went to edit menu.xml
    i tried:
    <menu id="apps-accessori-menu" label="Accessori" icon="/home/user/.icons/Faenza/apps/24/accessories-calculator">
    <menu id="apps-accessori-menu" icon="/home/user/.icons/Faenza/apps/24/accessories-calculator" label="Accessori">
    <menu id="apps-accessori-menu" icon="/home/user/.icons/Faenza/apps/24/accessories-calculator.png" label="Accessori">
    <item icon="/usr/share/icons/Tango/24x24/apps/accessories-calculator.png" label="Calcolatrice">
    <item label="File-Roller" icon="network">
    <item icon="/home/user/.icons/Tango-Sand/48x48/apps/broswer" label="Networkmanager">
    i tried to add icon on menu and item, before and after label, with extension (.png) and without, from my local directory and from /use/shre/icons...
    but i don't see icon!
    what i wrong? what i need? i read i must compile Openbox with imlib2 support, how to?
    thank you

    Gusar wrote:
    Archer73 wrote:i tried to recompile but don't work
    That's not very helpful. You need to learn how to use abs. Then use it to compile your own version of openbox with icons support. If you have problems, post specifically what you've tried and what the error messages were.
    Though what puzzles me is why isn't the Arch package compiled with icons support in the first place?
    let me understand
    if i install openbox from shell
    pacman -S openbox
    i can't use icons?
    my openbox versione is:
    Openbox 3.5.0
    Copyright (c) 2008        Mikael Magnusson
    Copyright (c) 2003-2006   Dana Jansens
    This program comes with ABSOLUTELY NO WARRANTY.
    This is free software, and you are welcome to redistribute it
    under certain conditions. See the file COPYING for details.
    are you sure i must to compile openbox with icons support?

  • I have a problem with the icon in the menu bar MacBooster Beta 3 I can not delete

    I have a problem with the icon in the menu bar MacBooster Beta 3 I can not delete
    www.advancedmaccare.com
    and installed and uninstalled the program and past cleanApp or ccleaner programs and nothing works
    <Link Edited By Host>

    Beta = buggy software.  You need to contact the vendor. 

  • Xperia T menu icons touch problem after Jelly Bean upgrade

    I have Xperia T upgraded to jelly bean 4.1.2 Build Number 9.1.A.0.489 kernel version 3.4.0-g5b052b2-00759-gd9ee069 - Mon Jan 14 15:29:55 2013
    After tap my menu icons in jelly bean there is no action. ex. Settings, Messages icon tap.
    After switch on developer options -> show layout bounds - it's shown that icons (blue square) are covering the touch area (pink square) and not pushing touch events to action areas, only bouncing but without action. When touching both blue and pink area with finger icons works fine, with touching only blue areas no action. Every other touch are ok.
    Is it common issue ?
    Thanks.

    I think this only happens when you enable that under development options. Have you tried to turn that off and check if this still remains?
     - Community Manager Sony Xperia Support Forum
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Change Gnome Menu Icon [SOLVED]

    Hello,
    I have been able to change the main menu icon in Gnome in several other distributions running gnome 2.22 (Fedora, Debian, etc) and had no issues. The method I have always used is copy the custom icon to /usr/share/icons/gnome/24x24/places/start-here.png. I have not been successful with this in Arch. I also tried copying to the 22x22 directory and also using the GConf method (apps > panels > objects > Use_Custom_Icon...). No luck so far. I'm totally up to date with all my stuff (gnome 2.22.2), so if anyone knows a good method, it would be greatly appreciated.
    Thanks!
    Swill
    Last edited by Mr. Swillis (2008-07-02 22:58:31)

    biloky wrote:
    Here's how I did it...
    Assuming you're using Gnome's default icon theme:
    1. Replace /usr/share/icons/gnome/24x24/places/start-here.png with your icon of choice.
    2. If the theme's icon cache was previously generated (/usr/share/icons/gnome/icon-theme.cache), you can either re-generate it using the following command
         # gtk-update-icon-cache /usr/share/icons/gnome
    or you can just delete it (the cache is supposed to speed up GTK apps' access to the icons).
    3. Restart X or # killall gnome-panel to see the change.
    That's what I had to do too, but it feels like the wrong way. It should be possible to change it through the configuration editor. A bug perhaps?
    Edit: Replacing the icon file was not possible with the default icon theme. However, it works on other themes.
    Last edited by twarkie (2008-06-28 17:58:44)

  • Menu Icons Disappeared - FrontRow Hack the problem?

    How do I get my menu icons back? I installed the frontrow hack and they disappeared.

    Welcome to Apple Discussions!
    Yes, the hack is not compatible with certain operating system updates.
    One of our illustrious posters Dr. Smoke has put up this FAQ on how to remove it:
    http://www.thexlab.com/faqs/removefrontrowhack.html
    A nice alternative program is MediaCentral:
    http://www.equinux.com/us/products/mediacentral/index.html

  • WAD - adding menu entries with JavaScript - help please!

    Hiya,
    I am completely new to JavaScript and I need some help with adding menu entries into my WAD template. Can anyone please help?
    I want to add functionality into my WAD template to enable users adding results rows on a selected characteristic, at a single mouse click. Currently they need to go to the menu -> properties -> characteristic -> display results -> always -> ok. That's five clicks of a mouse (provided they know were to go).
    I want to add this option to the basic menu so that they can click once only.
    What I have managed to figure out so far using SAP help is the following. I have added a Script Item into my WAD Layout and added the following line of code in the Script Editing window:
    sapbi_addToMenu("Add totals", "alternate_context_menu", "X","CHARACTERISTIC", "", "bottom", "", "")
    It worked fine in that it added an extra item "Add totals" to my menu when I righclick on a characteristic. So far so good. However, I have no idea what function I should be using here, or how to code it. Surely WAD uses some function to perform this action, something that I could reuse? Is there a library somewhere of all the function used in WAD?
    Can anyone please help with the code?
    Many thanks,
    Agata

    Hiya again,
    I have managed to partially solve this problem by using the following code. However it requires me to define on which characteristic the function is performed. In this case I have managed to get it working on 0PROJECT, but I want it to be ANY characteristic which has been right clicked?
    Any ideas how I can pass the characteristic name as a VARIABLE, whose value would be read automatically when menu is triggered?
    /* Add Contextmenu entries */
    sapbi_addToMenu("Add totals", "JS_SET_RESULT_VISIBILITY_R", "X","CHARACTERISTIC", "", "bottom", "", "")
    * Javascript functions that are to be integrated into a web template and that
    * are to be used later in the web application ALWAYS have to have the same function
    * signature, i.e. the parameters that will be passed.
    * @param currentState - a list of parameters that describe the state the web item
    * @param defaultCommandSequence - the initially used sequence of commands that
    *       would have been used instead of the custom
    *       script.
    function JS_SET_RESULT_VISIBILITY_R( currentState, defaultCommandSequence ){
    //Note: information can be extracted using the parameter 'currentState'
    // and 'defaultCommandSequence'. In either case create your own object
    // of type 'sapbi_CommandSequence' that will be sent to the server.
    // To extract specific values of parameters refer to the following
    // snippet:
    //  var key = currentState.getParameter( PARAM_KEY ).getValue();
    //  alert( "Selected key: " + key );
    // ('PARAM_KEY' refers to any parameter's name)
    //Create a new object of type sapbi_CommandSequence
    var commandSequence = new sapbi_CommandSequence();
      * Create a new object of type sapbi_Command with the command named "SET_RESULT_VISIBILITY"
    var commandSET_RESULT_VISIBILITY_1 = new sapbi_Command( "SET_RESULT_VISIBILITY" );
    /* Create parameter TARGET_DATA_PROVIDER_REF_LIST */
    var paramTARGET_DATA_PROVIDER_REF_LIST = new sapbi_Parameter( "TARGET_DATA_PROVIDER_REF_LIST", "" );
    var paramListTARGET_DATA_PROVIDER_REF_LIST = new sapbi_ParameterList();
    // Create parameter TARGET_DATA_PROVIDER_REF
    var paramTARGET_DATA_PROVIDER_REF1 = new sapbi_Parameter( "TARGET_DATA_PROVIDER_REF", "DP_1" );
    paramListTARGET_DATA_PROVIDER_REF_LIST.setParameter( paramTARGET_DATA_PROVIDER_REF1, 1 );
      // End parameter TARGET_DATA_PROVIDER_REF!
    paramTARGET_DATA_PROVIDER_REF_LIST.setChildList( paramListTARGET_DATA_PROVIDER_REF_LIST );
    commandSET_RESULT_VISIBILITY_1.addParameter( paramTARGET_DATA_PROVIDER_REF_LIST );
    /* End parameter TARGET_DATA_PROVIDER_REF_LIST */
    /* Create parameter CHARACTERISTIC */
    var paramCHARACTERISTIC = new sapbi_Parameter( "CHARACTERISTIC", "0PROJECT" );
    commandSET_RESULT_VISIBILITY_1.addParameter( paramCHARACTERISTIC );
    /* End parameter CHARACTERISTIC */
    /* Create parameter RESULT_VISIBILITY */
    var paramRESULT_VISIBILITY = new sapbi_Parameter( "RESULT_VISIBILITY", "VISIBLE" );
    commandSET_RESULT_VISIBILITY_1.addParameter( paramRESULT_VISIBILITY );
    /* End parameter RESULT_VISIBILITY */
    // Add the command to the command sequence
    commandSequence.addCommand( commandSET_RESULT_VISIBILITY_1 );
      * End command commandSET_RESULT_VISIBILITY_1
    //Send the command sequence to the server
        return sapbi_page.sendCommand( commandSequence );

  • HT204135 Since I upgraded to OS X 10.8 my Canon MP480 printer scanner prints OK but the Solutions Menu icon for scanning is crashing every time I try to scan. Any solutions? Thanx

    Since I upgraded to OS X 10.8 my Canon MP480 printer scanner prints OK but the Solutions Menu icon for scanning is crashing every time I try to scan. Any solutions?

    I had to contact Canon Tech Support and had to re load the driver softwear using the OS X 10.7 choice, since the 10.8 choice is not there yet. Also had to download the opener and after 45 minutes I had solved the problem. The steps are too many to go into all the details but that is the genral idea. It should work for others.

  • Cannot place order ERROR: "There was a problem adding your product to cart"

    Hey guys,
    Well, once again Best Buy's online system is preventing me from making an order. It seems like nearly every time I log in I experience some new problem. This time, I'm unable to add anything to my cart. It doesn't matter what item I try to add to my cart or what browser I use or if I clear cookies...it happens every time, on every browser, with every product in the store. The error shows a red & white triangle with a message "There was a problem adding your product to cart".
    Just to clarify ahead of time: 1) I have already tried signing in using 4 different browsers (explorer, firefox, chrome, opera) & they all give the same error; 2) Prior to posting here I researched this problem & found out it is somewhat common & has been occurring since at least 2012 on BestBuy.com; 3) Every time someone posts in here about this problem, customer service offers the same "fix" every time - to sign out, clear their browser cache of cookies, shut down the browser, restart the browser, sign back in, etc.... The only problem is, this "solution" has not worked ONE time our of the many times this problem has cropped up in here over the past 3+ years. Why this "solution" keeps getting told to people even though it never works is beyond me. But, there you have it.
    Just to clarify: I have already tried this solution, And just like with everyone else before me, it didn't work for me either. So, what's the next step? There must be something else that can be done other than waiting a couple more days for it to magically fix itself (it seems that is the only thing that ever "works"...is to let several days go by and the problem ends up getting fixed in some back-end server-side patch up). 
    What I'm hoping for from you is a solution that can fix this immediately. This problem has already prevented me from making a couple purchases for items that were temporarily on sale over the past couple days. So, those are lost sales for Best Buy. What I'm hoping to do now is pre-order the Elder Scrolls Online (PS4) in order to take advantage of the $10 pre-order reward. The game releases on Tuesday the 9th. So, in order to get this done in time I need to place the order sometime today (on the 8th).
    With all these repeated technical problems making purchasing a chore & wasting my time every single time I want to buy a product it's almost as if Best Buy is telling customers "We don't care if our online system works reliably...go spend your money at Amazon instead". lol
    Thank you in advance for your timely help on this matter.
    -Marc (removed per forum guidelines)

    Hello mjswooosh,
    I'm very disheartened to hear that you've had ongoing problems when attempting to order from BestBuy.com. Our goal is ever to provide a fun and efficient shopping environment! Certainly creating aggravation serves neither you nor us and I apologize sincerely for this having been your experience.
    We recommend the troubleshooting steps you mentioned (i.e., clearing the browser cache, deleting temporary internet files and cookies) because this is the most common cause of this type of problem. I too have encountered this issue from time to time and these steps have almost always resolved the problem. I say almost always because there's one further step you can try: ensure that you have signed out of BestBuy.com, then perform the browser maintenance steps we've recommended. Afterward, before signing in to BestBuy.com, add your desired items to your cart and sign in as part of the checkout process. When the standard steps have not netted a resolution for me, this has solved the problem each time.
    I hope this helps. I'm very grateful that you took the time to write to us with your concerns and for sharing your very valuable feedback about your online experience.
    Sincerely,
    John|Social Media Specialist | Best Buy® Corporate
     Private Message

  • Problem adding HP J6400 all-in-one printer

    We have an HP Officejet J6400 all-in-one printer here at work, and all of our computers have had no problem adding this printer except one: an older iMac, PowerMac 6.1 (with the white domed base). The driver is installed, and the computer sees the driver, but when I click to add it eventually it gives me this error:
    "An error occurred while trying to add the selected printer. client-error-not-authorized"
    I was on the phone with HP for an hour and they couldn't figure it out on their end. Has anyone had a similar problem, or have a solution?

    Hi,
    I request you to try the following:
    For network connection:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03086294&tmp_task=useCategory&cc=us&dlc=en&lc=e...
     For USB:
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c03521864&tmp_task=useCategory&cc=us&dlc=en&lc=e...
    Although I am an HP employee, I am speaking for myself and not for HP.
    Say thanks by clicking the "
    Kudos! Thumps Up" which is on the right
    Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue
    Regards,
    Ray

  • Another N82 query - Menu Icon Animation

    Yes, I have too much time on my hands today, but seeing as people have been so helpful of late…
    I read in the N82 user guide (p97 in fact) that menu icon animation should be an option, and can be turned on and off. But I assumed that this was an error as the Menu > Options > Icon animation feature was absent on my relatively new handset. At first I thought it was because I was using a third party theme, but it the same under all the pre-installed N Series themes too.
    Reading the forums here, I noticed references to this feature in other threads so I looked on my handset again... under Menu > Options, I have:
    Open
    Change menu view
    Move
    Move to folder
    New folder
    Download applications
    Memory details >
    Help
    Exit
    No mention of icon animation in the menu or any sub menu. Is this a restriction my network operator (Orange UK) have placed on the firmware, or am I just looking in the wrong place?
    Solved!
    Go to Solution.

    Probably the only way they could make it work.
    I've noticed that with some 3rd party themes if you have icon animation enabled it doesn't show custom icons in all of the menus.
    I've been using this theme recently and it behaves like that.

Maybe you are looking for

  • I need a DVI-Video adapter or a MiniDisplayPort-Video adapter to capture analog sources in my Mac.

    I need a DVI-Video adapter or a MiniDisplayPort-Video adapter to capture VCR and analog sources. Which is the right one for the Mac Pro (Early 2009 with NVIDIA GeForce GT 120 board)? Because i´ve seen a couple of cables but they say it´s just for Pow

  • How to store photo images in a database table?

    Hello Y'all, How do I store about 695 signs inventory photo images from a PDF file to an Oracle database table? We are using Oracle 10.2.0.2. What data type should I use for these images? How about the table space? What table space should I allocate

  • How do I get an ActiveX Reference to sheet that is already open.

    I need to get a reference to an Excel sheet to write some data to. The problem is the workbook is not opened by ActiveX and I can't seem to find the right combination of Methods and Properties to get the reference. This is on WinXP, Office XP and Lab

  • Ipod issues ?

    I'm trying to update my ipod, but when I plug it and it starts to update mssage appears saying : itunes:iTunes.exe-corrupt file the file or directory\ipod_control\iTunes\iTunesprefs is corrupt and unreadable-please run the chkdsk utiliy. Though there

  • Dynamic pushbotton-icon in table control

    Hello, in my table control i have a pushbutton. i want to display it with a dynamic icon is this possible ? thanks very much for your answers Helmut