Getting hold of accelerator squiggles.

How do I get hold of the L&F appropriate visual representation of a keystroke?
I particular, I'm trying to generate some help text, that refers to certain menu accelerators. In the menu, at least on my Mac with Nimbus L&F, accelerator keystrokes have a small icon or squiggle. For example, a command-Z accelerator is drawn as a four-leaf clover symbol with letter Z next to it. The delete key is drawn as a box with an X in it, return key is drawn as a bent arrow, and so on. Under Windows XP with Nimbus, the same command-Z menu accelerator is now shown as "Ctrl+Z" (note that it uses getMenuShortcutKeyMask(), so the modifier is variable between platforms)
Is there any way that I can get hold of this symbolic representation, for inclusion in a styled text pane? Are these squiggles unicode characters or images?
-Ron.

You have to go through your wireless service provider to get to BlackBerry. If your provider can't resolve the issue they can (though sometimes they try to "fob" you off and not escalate and you have to push them hard to do it.) Blame the carrier for that, not BlackBerry.
If you don't go through your wireless service provider then you can contact BlackBerry directly at 1-800-BLK-BERRY but it's $50 per support incident.
1. Please thank those who help you by clicking the "Like" button at the bottom of the post that helped you.
2. If your issue has been solved, please resolve it by marking the post "Solution?" which solved it for you!

Similar Messages

  • How to get gps and acceleration in a application??

    Situation:
    I only can get acceleration or gps seperately.
    Purpose:
    Get both acceleration and gps in an application.
    Question:
    Does anyone know how to get the both accelerations and gps data??
    My code:
    if (bps_event_get_domain(event) == sensor_get_domain()) {
                handle_acceleration_response(event);
    }else if (bps_event_get_domain(event) == geolocation_get_domain()) {
                handle_geolocation_response(event);
    Thank your attention.
    -Fight with BB10

    Native sdk.
    Thx
    -Fight with BB10

  • Printing to a Windows shared printer, keep getting "Hold for Authentication" when I'm on the Windows shared network and can browse the computers.

    I have had two MacBook Pros now, and this has been an issue in Mountain Lion and Mavericks. I've got a shared printer on the local Windows network (it's a USB printer shared via the network and the computer), and the other Windows computers in the house can print to it no problem. The Mac sees it no problem, yet whenever I try to print to it, I just get "Hold for Authentication."
    Like I said, persists over Mountain Lion and Mavericks. No other computer in the house has any issues printing to it. I've installed the drivers for the printer as well (Brother HL-2240).
    I've tried to follow the instructions here: https://discussions.apple.com/message/23268762#23268762 but the printer isn't listed in Keychain Access.
    Any thoughts?
    Thanks in advance!
    Patrick Campanale

    Well, that isn't too useful. Try this instead: Adding a printer shared by a Windows computer via SMB/CIFS.
    You may find more by selecting Mac Help from the Finder's Help menu and searching for articles by keyword.

  • How to get hold of the XPRequest object in the Login View

    Hi all,
    I need to customize the Login View to pre-populate the loginname field when a user hits the page. The difficult part is that the user is using PKI Cards, and I need to use the following server-side code fragment to retreive the Login Name.
    String loginName = "";Object o = request.getAttribute("javax.servlet.request.X509Certificate");
    // Got certificate => Windows XP PKI Card Userif (o != null) { String dnstring = ""; int startIndex = 0, endIndex = 0; java.security.cert.X509Certificate clientcert[] = (java.security.cert.X509Certificate[]) o; dnstring = clientcert[0].getSubjectDN().toString().toUpperCase(); // Gets the Login name // This is obtained by getting the portion of the string after "UID=" and befroe the next comma. startIndex = dnstring.indexOf("UID=") + 4; endIndex = dnstring.indexOf(",", startIndex+1); loginName = dnstring.substring(startIndex, endIndex);}
    The problem is that I can't seem to get hold of a XPRequest object (the Plumtree object used to wrap the JSP request object) in the Login View. I need this to call the request.GetAttribute method to retrieve the client certificate.
    Anyone knows how to do this? Or maybe I should be customizing another component instead?
    Thanks in advance for any suggestions!
    Weng Kong Lee

    From the 5.0.4 JavaDocs for AActivitySpace:
    com.plumtree.uiinfrastructure.activityspace.IXPRequest[b]GetCurrentHTTPRequest() Return the HTTP Request for the current request. com.plumtree.uiinfrastructure.activityspace.IXPResponse[b]GetCurrentHTTPResponse() Return the HTTP Response for the current request.
    Hope this helps clear things up.
    -- Don

  • How to efficiently get hold of N randomly selected keys out of X?

    I am writing some benchmark programs for Coherence caches and would need a way to as efficently as possible get hold of a "fairly random" selection of N keys from the cache out of the total X keys (where X >> N).
    With "fairly random" I am in particular looking for a way to get keys somewhat uniformly spread over all partitions.
    First i tried picking the first N keys obtained when iterating the key-set but they all seemed to come from just a few partitions (perhaps iteration is performed partition by partition?). Next I tried some algortihms I have used in the past to pick random keys from in memory-map (where one basically iterate and if a randomly generated value between 0.0 and 1.0 exceed a percentage calculatwed as the factor N/X the key is included. This does work (one may occasionally need to iterate the map more than once) but is VERY slow since iterating the key-set of a large cache remotly is kind of expensive.
    All sugestions are warmly appreciated - the best would be solutions that do not require anything to be added to the pof-config (i.e. not rely on custome aggregators or invocables etc) - this because I would liek to be able to easilly use my benchmark as part of several applications without having to modify there configuration files!
    /Magnus
    Edited by: MagnusE on Aug 7, 2009 10:21 AM

    Hi Magnus,
    you can go the other way round:
    With key-association you can ensure that your request goes to the partition you want it to go. You just need to generate a reverse mapping array between partition ids and integer associated key values which are mapped to that partititon.
    You can use this method for it:
    public static int[] generateReverseAssociatedKeysForService(DistributedCacheService service) {
         KeyPartitioningStrategy keyPartitioningStrategy = service.getKeyPartitioningStrategy();
         int partitionCount = service.getPartitionCount();
         int[] reverseKeys = new int[partitionCount];
         int i=1;
         while (partitionCount > 0) {
              Integer associatedKey = new Integer(i);
              int partitionId = keyPartitioningStrategy.getKeyPartition(associatedKey);
              if (reverseKeys[partitionId] == 0) {
                   reverseKeys[partitionId] = i;
                   --partitionCount;
              ++i;
         return reverseKeys;
    }After this, you generate an equal amount of entries for each partitions with composite keys which implement key association in a way that it returns an integer which maps to your designated partition id to serve as your data. Alternatively you can sort an existing key-set into per-partition keysets.
    After this, you just generate evenly spread random numbers between 0 and (partitionCount - 1) (both inclusive) which random number you use as an index to the reverse map to get an associated key value. Then you can generate another random number if you have multiple keys within a partition, or choose a key from the per-partition keyset for that partition if you have a set of existing keys.
    This way you get keys which are as evenly spread between partitions as your random generator generating your associated key indexes is spread.
    Best regards,
    Robert
    Edited by: robvarga on Aug 7, 2009 11:55 AM
    Added some more ideas and method implementation.

  • Where can I get hold of a replacement mains cable for a Mac Book?

    It looks like we have somehow misplaced the mains cable for my Dad's MacBook. The big question where could I get hold of a replacement one ? I have looked on Apple's website but unless I am either blind or daft I can't see one. The only thing I can think of of is to drive to my nearest Apple store (some 60 miles away) which I don't want to if I can help it. Any ideas?
    for what it is worth I live in Bradford West Yorkshire England
    Thanks

    Problem now solved. It was found in a completely stupid place.

  • Can I get hold of the setup file for an earlier version of Desktop Manager

    Hello,
    I've been using my Blackberry Bold 9700 trouble free for well over 18 months now.  The other day I was prompted to upgrade the OS to level 6, which I did with no problem.  I then noticed that there was also an upgrade for the Desktop Manager software.  I also upgraded this (to version 6).  I'm now really wishing I hadn't....
    Ever since the upgrade I get the BSOD upon initially connecting my BB.  I uninstalled the desktop manager and did a complete reinstall.  This, if anything made matters worse as I then found that any USB device would cause the BSOD once I plugged it in.
    The only way I've been  able to solve this is by totally uninstalling the Desktop Manager and then also going and uninstalling and then reinstalling all the USB controllers from the Windows device manager.
    All I really need the desktop manager for is to tether my BB to get internet acces when I'm off site, and I'd really like to go back to the earlier version but cannot find anywhere to download the setup file.
    I'm running XP Pro by the way.  It's obviously an incompatibility with something on specifically on my laptop which is causing the problem.  I tried installing Desktop Manager 6 onto another laptop running XP Pro and it seems to be fine on there.  I've not really got the time to mess around with this much more though so would prefer just to downgrade back to the previous version on this laptop if someone could point me in the right direction to get hold of the setup file.
    Many thanks.

    Skeets181 wrote:
    I also want to revert back to previous OS. Can you give me the site addy where you downloaded. Thanks
    Skeets
    Device OS, or the Desktop Software.
    Please be specific about what you need.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • How can I get hold of the hWnd for a CWgraph control?

    I wish to plot the area between two cursors on a CWGraph in inverse colour. I believe I can do this if I can get the hWnd of the control. Can I get hold of the hWnd in VB or do I have to go to VC and CW++. (I hope not 'cos I REALLY don't like MFC)
    Paul Rocca

    I have attached here a screenshot of the effect we need to be able to demonstrate. Any ideas for a way of doing something like this in Measurement Studio would be much appreciated.
    Attachments:
    Doc2.doc ‏41 KB

  • How can I get hold of the receipt for my Mac bought in NY, Soho

    Hi, does anyone know how or where to get hold of the receipt emailed me when purchased my Mac - trouble with email.

    I have attached here a screenshot of the effect we need to be able to demonstrate. Any ideas for a way of doing something like this in Measurement Studio would be much appreciated.
    Attachments:
    Doc2.doc ‏41 KB

  • HT201272 My laptop pc got stolen, how can I get hold of all the itune music I purchased, or at least get a list for insurance?

    My laptop pc got stolen, how can I get hold of all the itune music I purchased, or at least get a list for insurance?

    Yu can try this program.  If unsuccessful, the contents of the iPod will be deleted if yu update/restore with the iPod in recovery mode.
    RecBoot: Easy Way to Put iPhone into Recovery Mode | Jaxov

  • Any way of getting hold of InCopy CS4?

    I work for a small publishing department within a much larger institution with no IT budget and no way of upgrading to intel macs so that we can upgrade to CS5 (unless someone wins the lottery). We produce corporate reports to very tight deadlines and have identified InCopy as a way to shorten our production processes and give us some work/life balance back. HOWEVER, we can't get hold of InCopy CS4 any more.
    It is exceptionally frustrating that Adobe is effectively forcing us to upgrade to CS5 - which we are not in a position to do for another couple of years. We're not a cutting edge design agency, but we are subject to some of the same pressures/requirements. Doesn't seem to be a very good way of encouraging people to use your products, if you ask me!

    Nice folks there. I met a few of them last night at the NYC InDesign user group meeting.
    If they can help, that's great.
    Bob

  • Getting hold of the servlet context within a filter

    How can I get hold of the servlet context from within a filter?

    The Filter has a FilterConfig that contains the ServletContext.
    class myFilter implements Filter {
       private FilterConfig config;
      public void init(FilterConfig filterConfig)
              throws ServletException {
            this.config = FilterConfig;
        public void doFilter(ServletRequest request,
                         ServletResponse response,
                         FilterChain chain)
                  throws java.io.IOException,
                         ServletException {
              ServletContext context = this.config.getServletContext();
    }

  • How to get hold of the JavaFX applet in some java code called from it

    I have a scenario where I am trying to reuse some java libraries that existed before and used the Applet API. In order to give a new UI to these APIs I am redesigning the front end using JavaFX. I can create instances of java classes from these old libraries. Methods on these old classes take java.applet.Applet as an argument.
    When the JavaFX applet is deployed as an applet, how can one get hold of the corresponding Applet object?
    Thanks in advance.

    When run as an applet, FX.getArgument("javafx.applet") will return the JApplet instance.

  • Trying to get hold of my own course pdf for performance and tuning 11g, would oracle have list of classes i have taken?

    Tyring to find my own course pdf for oracle performance and tuning 11g that I took thru Oracle.
    I am studying for 1z0-064 currently using 10g perf tuning book.
    Would Oracle have list of Oracle classes that i have taken.
    If they do, is there any way to get hold of the pdf from the class that I took?
    I realize that this is a stretch.
    Roger

    Roger,
    This is a question that you'd need to contact Oracle University Support about - Oracle University Contact Information. They should be able to help you.
    Regards,
    Brandye Barrington
    Oracle Certification Program

  • Hi, I have an iphone 5 and unfortunately got sat on and is now bent, it worked fine bent for 3 months as the glass did not break, today how ever the screen has stopped working. Is it possible to get hold of another casing and have the electronics changed

    Hi, I have an iphone 5 and unfortunately got sat on and is now bent, it worked fine bent for 3 months as the glass did not break, today how ever the screen has stopped working. Is it possible to get hold of another casing and have the electronics changed ?

    You didn't look hard enough:
    Out-of-Warranty Service
    If you own an iPhone that is ineligible for warranty service but is eligible for Out-of-Warranty (OOW) Service, Apple will service your iPhone for the Out-of-Warranty Service fee listed below.
    iPhone model
    Out-of-Warranty Service
    iPhone 5s, iPhone 5c,
    iPhone 5
    $269
    iPhone 4S
    $199
    iPhone 4, iPhone 3GS,
    iPhone 3G, Original iPhone
    $149

Maybe you are looking for