Enh. request: shortcuts support for button labels

Hi Apex team,
it would be nice to enhance shortcuts support for button labels in the next release. There are a lot of standard buttons like 'Cancel', 'Apply Changes', 'Delete', etc. that require translation for each page they appear in global applications.
Thanks.

Hi Arno,
I had a similar issue with trying to create a Nav bar with dynamic content. My solution was to leave all the standard buttons in place and to use setVisible(x) to make them appear or not as required.
BTW have you noticed that rollover behaviour isn't consistant ie works for FIRST/LAST etc but not for FIND/QUERY.
Regards
Andy

Similar Messages

  • How to set Shortcut keys for button in Apex

    Hi
    Could anyone help me on how to set shortcut keys for buttons in Apex.
    I need to use say ALT + S to submit the page.
    The following thread pertaining to HTML DB refered to use ACCESS key. but that couldnt work in my case.
    Re: operation of the app. with the keyboard
    Any pointers on achieving this would be helpful.
    Thanks
    Vijay

    Hi Vijay,
    I’m afraid you must do it using javascript key listener. You can’t use action() on template based buttons because they are actually not HTML buttons but images with hyperlink.
    Key listener checks which key has been pressed down and invoke some JS function. For example, write this code in page header:
    <script>
    document.onkeydown=keyCheck;
    function keyCheck(e){
         var KeyId = (window.event) ? event.keyCode : e.keyCode;
         switch(KeyId){         
              case 113:
                   doSubmit('SAVE');
                   break;                    
              case 118:
                   alert('Hello');
                   break;
    </script>
    This script will submit page with request 'SAVE' if you press F2 or will show alert message if you press F7. Modify it to your issue.
    Regards,
    Przemek

  • Key support for buttons

    I have a button on a simple animation. but I have been asked
    to provide key support for the buttton
    Attached to my button is the script:
    on (release, keyPress "<Space>") {
    gotoAndPlay(2);
    The mouse release works fine but pressing space does nothing.
    Can anyone suggest something?
    Thanks
    Iain

    This is not a supported type for primary key.
    Laurent

  • Unicode dingbats for button labels?

    I really want to use unicode dingbats as my button labels, but Flex won't play ball.  Well, not on Windows anyway.  It works fine on Mac.
    I found a ttf with the unicode dingbats in it called Symbola and embedded it into the swf (as "Symbolax" to make sure it was picking up the embedded version and not the system one).  It works fine if I use it for an mx:Text, but it doesn't work as a button label.  Example:
        <mx:Button width="30" height="100" label="&#x276f;" textRollOverColor="#ffffff" fontFamily="Symbolax"/>
        <mx:Text text="characters are fun &#x276f;" fontFamily="Symbolax" />
    Results in:
    You can see that the Text control is using the embedded font, but the button label isn't.  On Mac, it works fine without embedding any fonts.  Help!

    Sorry, I just noticed that your button width isn't really wide enough for the text label and it is displaying a tool tip. The toolTip uses the default Arial font (I think), so you'll need to do some CSS-ery to display the tool tip in your specified font if you want it to appear correctly. A slightly better example is probably:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:Style>
            @font-face {
                src: url("Symbola.otf");
                fontFamily: Symbolax;
                fontWeight: normal;
            Button {
                fontFamily: Symbolax;
                fontWeight: normal;
                textRollOverColor: white;
            Label {
                fontFamily: Symbolax;
            ToolTip {
                fontFamily: Symbolax;
        </mx:Style>
        <mx:Button label="&#x276f;" width="30" height="100" />
        <mx:Text text="characters are fun &#x276f;" />
    </mx:Application>
    Peter

  • Feature request:  keymapping support for basic GVIM style editing

    Maybe this isn't the right forum, but it seems to be the only mechanism for providing
    feedback. I'm getting used to the workshop environment and like a lot of the
    features it provides. Tab completion of methods, parameter info, import automation
    are all very nice modern features. I come from a Unix background and cut my teeth
    coding on VI and GVIM off the command prompt. A feature that would really sell
    me on an IDE and many that I know, would be some support for VI keymappings.
    Once you are used to an editor that doesn't make you run to the mouse or the arrow
    keys every time you need to move the cursor, anything less feels slow and taxing.
    If basic support for "VI like" operation could be added, I think you'd find more
    people like myself willing to spend time in the IDE for its other features. GVIM
    offers a rich set of features, of which about 10 would suffice for most of what
    I do.
    1. insert/navigate modes so you can use ijkl instead of arrow keys.
    2. support for '/' as a search prompt as well as 'n' and 'N' to jump between
    findings.
    3. support for regular expressions on the search line
    4. support for regular expressions via a VI style substitute command {range}:s/search/replace/
    5. :w for write or "save"
    6. :e to open a file
    7. 'A' to jump to the end of a line and enter insert mode.
    8. 'D' to delete beyond the cursor to the end of the line.
    9. :line-number to jump to a line number.
    10. 'x' to delete a character and 2x for two etc...
    Okay, my list goes beyond ten if I continue, but if I could perform basic editing
    without having to go to the arrows or the mouse or a separate window of gvim,
    I'd be a happy customer.
    Thanks,
    Morgan

    Morgan,
    The engg team has confirmed that its a goal to support this in the next
    version.
    Thanks for the suggestion. Keep them coming!
    -Anurag
    "Raj Alagumalai" <[email protected]> wrote in message
    news:[email protected]...
    Hello Morgan,
    I have forwarded the information to our engineering team for evaluation.
    Regards,
    Raj Alagumalai
    WebLogic Workshop Support
    PS: Wasn't sure if you had come across the kit available at
    http://dev2dev.bea.com/products/wlworkshop81/workshop_ext.jsp
    "Morgan Hall" <[email protected]> wrote in message
    news:[email protected]...
    Worth noting, I just found viPlugin for Eclipse on Sourceforge.net.
    From
    the looks
    of the documentation, it will act as a layer on top of any JDT editor oran editor
    that extends ITextEditor, which might be an Eclipse class. Hope thathelps your
    development team.
    "Raj Alagumalai" <[email protected]> wrote:
    Thanks for the feedback Morgan. I will make sure that this information
    is
    forwarded to our engineering team. We love to hear what our customers
    feel
    about the product.
    Regards,
    Raj Alagumalai
    WebLogic Workshop Support
    "Morgan Hall" <[email protected]> wrote in message
    news:[email protected]...
    Maybe this isn't the right forum, but it seems to be the only
    mechanism
    for providing
    feedback. I'm getting used to the workshop environment and like alot of
    the
    features it provides. Tab completion of methods, parameter info,
    import
    automation
    are all very nice modern features. I come from a Unix background andcut
    my teeth
    coding on VI and GVIM off the command prompt. A feature that wouldreally
    sell
    me on an IDE and many that I know, would be some support for VIkeymappings.
    Once you are used to an editor that doesn't make you run to the mouseor
    the arrow
    keys every time you need to move the cursor, anything less feels slowand
    taxing.
    If basic support for "VI like" operation could be added, I think
    you'd
    find more
    people like myself willing to spend time in the IDE for its otherfeatures. GVIM
    offers a rich set of features, of which about 10 would suffice formost of
    what
    I do.
    1. insert/navigate modes so you can use ijkl instead of arrow keys.
    2. support for '/' as a search prompt as well as 'n' and 'N' to jumpbetween
    findings.
    3. support for regular expressions on the search line
    4. support for regular expressions via a VI style substitute command{range}:s/search/replace/
    5. :w for write or "save"
    6. :e to open a file
    7. 'A' to jump to the end of a line and enter insert mode.
    8. 'D' to delete beyond the cursor to the end of the line.
    9. :line-number to jump to a line number.
    10. 'x' to delete a character and 2x for two etc...
    Okay, my list goes beyond ten if I continue, but if I could performbasic
    editing
    without having to go to the arrows or the mouse or a separate windowof
    gvim,
    I'd be a happy customer.
    Thanks,
    Morgan

  • [Request] Full support for AVRCP

    I just bought a 3GS and it's my first iPhone, i love it, but it does have it's limitations that many phones from the past 5+ years have.
    Full support for AVRCP in 3.1 please!. I can play/pause but can't skip/prev and it's annoying since i got a S305 headset and i ride a bike and listen to music on the way to work and i want to skip a song but i can't since it isn't supported yet.

    Let Apple know directly here: http://www.apple.com/feedback/iphone.html

  • [Feature Request] Better support for new buttons in JUNavigationBar

    In my project I use a home made sub-class of JUNavigationBar, which contains some new functionality apart from a new button as well. This button allows me to refresh the currently selected row.
    However, since I added this button though a simple this.add(), some of the functionality in JUNavigationBar may get confused.
    For example, when I have removed some of the standard buttons but left my own button in place (setHasXXX()), the component index (calculated in JToolBar) and the array index for the buttons in JUNavigationBar may not match. This occasionally causes an ArrayIndexOutOfBoundsException.
    In short, what I'm asking for, is a better way to manage buttons on JUNavigationBar. Even making the array of buttons and related methods and such protected in stead of private (so that my sub-class could handle it) would be a good start.

    Hi Arno,
    I had a similar issue with trying to create a Nav bar with dynamic content. My solution was to leave all the standard buttons in place and to use setVisible(x) to make them appear or not as required.
    BTW have you noticed that rollover behaviour isn't consistant ie works for FIRST/LAST etc but not for FIND/QUERY.
    Regards
    Andy

  • Feature request: Replaygain support for FLAC files

    Hi guys,
    When converting some of my mp3's to FLAC, I noticed that the REPLAY_GAIN_TRACK tags are not used by the Walkman app on my Z3C. It works perfectly for mp3 files though. This is a real obstacle for me as I do not like having to change the volume all the time when playing different kinds of music.
    So my request would be to extend the replaygain support to FLAC files. I think anyone who uses FLAC files would consider that a very welcome addition, and it should be really easy to do!

    No, the album art actually works for both mp3 and FLAC. What I'm referring to is the REPLAY_GAIN_TRACK tag that you can attach to your files (for mp3 you could use e.g. the program called mp3gain). This allows you to normalize the volume of each track to for instance 92dB. When you do this, you will find that each track plays at a pleasant loudness without having to change the volume all the time. Or to put it differently, if this tag is not supported (like for FLAC at the moment), then I'm listening to one track and when the next one starts it may be way louder or quieter, meaning I have to reach for my phone and change the volume. It really is a very nice feature to have, and since Sony has it working for mp3 it seems very easy to extend this support to FLAC as well.
    Are you having issues with album art though? Perhaps I could help you then.

  • Support for Single Labeled Domain

    Question - When will Microsoft stop supporting "Single Label Domains"?  Now with Windows Server 8 in the horizon, I would like to know if it will let you upgrade your current AD infrastructure if it is setup as a Single Label Domain.

    I'm sorry, but I truly don't know. The reason that I don't know, is I've never tested it or let an AD infrastructure remain as a single label name for this length of time. I've fixed a number of them in the distant past with renames. I'm not aware of anyone
    currently with a single label name until I saw this thread.
    From what I see, I don't really think so if it hasn't caused any issues up to this point.
    Besides, why do you want to bump the levels up? Is there something you are trying to introduce that requires the levels at 2008 R2? If it's DNS based, it may fail anyway due to the single label name, because the basis of the single label name is DNS *thinks*
    it's a TLD, such as "COM," "NET," etc. That's why it's problematic. DNS is hierarchal and requires a minimum of a two level domain name.
    So if you have a computer, called computer1, and your domain name is DOMAIN. Then the computer's FQDN is computer1.domain. But that looks like a domain name. Make sense?
    Anyway, I'm sure you've heard this and read that in my blog. I'm curious ... Will you be planning on renaming your domain?
    Ace Fekay
    MVP, MCT, MCSE 2012, MCITP EA & MCTS Windows 2008/R2, Exchange 2013, 2010 EA & 2007, MCSE & MCSA 2003/2000, MCSA Messaging 2003
    Microsoft Certified Trainer
    Microsoft MVP - Directory Services
    Complete List of Technical Blogs: http://www.delawarecountycomputerconsulting.com/technicalblogs.php
    This posting is provided AS-IS with no warranties or guarantees and confers no rights.

  • Enh request: add Export for sql results of worksheet

    Please implement "Export" on right-click in sql worksheet results (shown after running a query), in a similar way TOAD does.
    Export should save all query results (not just the ones shown in worksheet) in the format specified by user (tab-delimited, OpenOffice Spreadsheet etc), including column name.
    OpenOffice Spreadsheet would add formatting to spreadsheet columns based on database columns data type and would but the colum names (1st row) in bold, as TOAD does with export to Excel.
    Note that current Select All, Copy and Paste in a separate file doesn't work for all rows, doesn't add any formatting and has problems on some rows (breaks tab-delimiting).
    Thank you

    Thank you for your reply Frank.
    This won't solve the issue. An export option on right-click would be more useful, as it can have more options and would include column headers. Some formats to support at the begining:
    * tab-delimited text file
    * open spreadsheet document
    http://www.oasis-open.org/committees/office/faq.php
    (this one would auto-format the column contents to date, numbers etc. depending on column types in database)
    I'd like similar functionality with TOAD's "SaveAs" option for query results, which must be licensed/installed separately now to complement JDeveloper.
    This functionality can be reused in JDeveloper to export data in tables browsed in Connections Navigator.

  • JWS has only 1 bold font for button label

    The label on a button should be Monospaced and BOLD,
    but it is always the same font (Dialog?) no matter
    which font I have specified. The same program shown
    as an applet by the browser is correct (shows different
    fonts just as I have specified).
    Plain fonts are shown correctly both by JWS and the
    browser.
    Monospaced-Bold is available in JWS as I can see from
    another applet of mine.
    Peter

    The problem has got the bug id 4487363.

  • Customer request: better support for Flash-heavy web sites!?  Feasible?

    The company I work for (a SUN partner) is currently engaged in a desktop virtualisation project at a customer who is in the health care sector. Of course Sun VDI isn't the only thing they have been looking at. But so far we've always come out on top.
    PanoLogic and their "Pano Cube" thin-clients were looked at but never really considered. The argument being "Nobody is using that!" and they don't want to play "Star Trek" and "boldly buy things nobody has bought before". So it was "Thank you and bye bye PanoLogic". However ... PanoLogic is on their radar now and they might still go back one day ...
    Next up was VMware View. They didn't like what they saw. So for now they will keep their ESX and vSphere servers but VMware View is out of the game for now.
    So right now there is still us with our Sun VDI / Sun SSGD offer and a competitor with their Citrix offerings. So far we've always managed to tip the balance in our favor.
    This Wednesday though we had a few of customer's managers visit us. They wanted to see a Sun VDI 3.1 live demo. All was fine, all was well, and we had the impression that they were so close to giving the "go ahead", when one of the pro-Citrix guys opened two web sites in his VDI demo session:
    http://www.adiacom.ch
    http://www.2advanced.com
    Both sites are extremely extremely Flash-heavy.
    And of course: The performance was sub-optimal. We were running this on a Sun Ray 2, 1600 x 1200 pixels. Even though the sound was tip top in both the Windows XP and in the Linux sessions (they admit that in all the other products they have tried so far the sound was choppy or there was even no sound at all .... ) the video was slightly out of sync. And the web site "2advanced.com" took too long to load.
    So now all of a sudden the ability to play these two web sites "tip top" on a Sun Ray 2 is THE killer argument for them. It doesn't even matter that all other solutions they have looked at can't show those two web sites at all, now it's all of a sudden that Sun Rays and Sun VDI just "aren't good enough" at playing those two web sites.
    Customer is king. Customer is always right.
    So ... anyone here from Sun have any suggestions how we might improve performance of those two web sites inside the VDI sessions? Is there anything we could tweak and tune inside VDI 3.1 to get the max performance out of our setup?
    Or are there any products in the pipeline like new Sun Ray clients with improved multimedia performance that I could tell them about so we could keep them interested in Sun's products ... ?
    Edited by: DJ. on Oct 30, 2009 6:22 AM -- typos corrected.

    Greetings oh Master :)
    We don't have flash acceleration for LinuxI know. And yet the "adiacom.ch" web site performed better on Firefox & Ubuntu than on Win XP-SP3 & MSIE 8.
    only XP and W2K3.I know
    Are you using the MS-RDP severSun VDI 3.1 ... I get the VDI login mask, I login, I pick a Windows XP desktop from the available pools, and Windows XP appears. The desktops are provided via VMware vSphere.
    viewing the site via IEUnder Windows XP, yes.
    and have the Flash acceleration bits installed?I remember installing various multimedia bits that can be found in the "Supplemental" sub-directory of the SRWC 2.2 ZIP file: "SunMMR" and "SunWinUSB". But now that I look at the web page you linked to I am a bit confused .... Did I install an old version? I will have to check that again and make sure this stuff is really really installed.
    Thanks for that link!

  • Request: AHCI Support for Samsung 830 SSD on gx660r

    Hi Svet,
    i have bought a Samsung 830 SSD for my gx660r notebook, but i realized that it is not recognized in the BIOS in AHCI mode.
    The MSIHQ Flashing Tool says the following about my BIOS:
    Mainboard:  MS-16F1
    PCB Version:  To be filled by O.E.M.
    BIOS Version: E16F1IMS VER3.0J
    BIOS Date:  28.03.2011
    EC-FW Version:
    Could you provide me with a BIOS that works with my Samsung SSD?
    I already donated some bucks.
    And can you give me a hint how i can rescue my system in case the update fails?
    As far as i know, my notebook does not have m-flash (at least i've seen no reference to m-flash), is there another way to restore the backup bios in case something goes wrong?
    BTW: Im using the latest version of the flashing tool, but it does not offer the mode 2 (where i can point to a single bios file). Can you provide the modded bios as a zip/rar file so i can use it with mode1?
    Many thanks,
    Sascha

    Quote
    Hi Svet,
    i have bought a Samsung 830 SSD for my gx660r notebook, but i realized that it is not recognized in the BIOS in AHCI mode.
    The MSIHQ Flashing Tool says the following about my BIOS:
    Mainboard:  MS-16F1
    PCB Version:  To be filled by O.E.M.
    BIOS Version: E16F1IMS VER3.0J
    BIOS Date:  28.03.2011
    EC-FW Version:
    Could you provide me with a BIOS that works with my Samsung SSD?
    I already donated some bucks.
    Yep, check PM
    Quote
    And can you give me a hint how i can rescue my system in case the update fails?
    As far as i know, my notebook does not have m-flash (at least i've seen no reference to m-flash), is there another way to restore the backup bios in case something goes wrong?
    Nope, in a case of bad flash there is no recovery.
    Else if everything goes fine, you can restore original BIOS if you want to do this for some reason.
    Quote
    BTW: Im using the latest version of the flashing tool, but it does not offer the mode 2 (where i can point to a single bios file).
    To prevent using the wrong flasher[which can kill the notebook],
    Tool automatically Disable Mode2 when notebook is detected.
    Quote
    Can you provide the modded bios as a zip/rar file so i can use it with mode1?
    Yes, ofc. Check PM

  • How to Add shortCut  key to  button or form In SAP BusinessOne

    Hi
    How to assign short Cut  key to  button or form ,in SAP BusinessOne using  VB.net.
    Thanks,
    Y.
    Edited by: Yughandar on Mar 10, 2011 9:32 PM

    Hi
    To set shortcut key for button , try this
    in your srf change the button caption like this
    caption="&amp;Del line"
    this will set shortcut key (Alt+d) for the button
    Regards
    Arun

  • I want to make the keyboards numerical keys shortcuts for buttons.

    I want to make the keyboards numerical keys shortcuts for buttons, without a modifier key is this possible ? e.g. press '1' on the keyboard button 1 is pressed on the GUI.

    The number keys are not valid hot keys for our controls. The easiest workaround would be to use fhe F keys instead (F1 for button 1, etc.) However, if you are set on the number keys you could implement this with a panel callback. You could have a panel callback that monitors all keypress events and then, depending on the key pressed, calls the code that would be called with a button press of the button for that key.
    Best Regards,
    Chris Matthews
    Measurement Studio Support Manager

Maybe you are looking for

  • Make new paragraph tag available in all documents in a book

    I'm very new to FM10, so please excuse my ignorance. All I want to do is make a custom paragraph available in all the chapters of my book. I created a variation of Heading2 (and gave it the paragraph tag of H2), in one chapter and use it extensively

  • Weblogic 7.0 SP1 JDBC Multipooling does not appear to fail over consistantly

    We are running Weblogic Platform 7.0 SP1 on a Sun with Solaris 8 O/S We have a connection multipool set up associated with a Data Source. The multipool has two connection pools, each pointing to a seperate but Identical database. The multipool is cre

  • Display resolution settings

    I have a macbook hooked up to an Epson powerlite home cinema 720 and have had the display preferences set to 1280x720. I shut down the computer last night and when I woke up this morning the display was set to 800x600, I went to reset the display pre

  • 6233 Search contact in last name AND first name

    Hi, the 6233 does not search Contacts in both first names AND last names. It only searches only in what come first. Exemple : searching for "Paul" does not find "Smith Paul" Do I need a firmware update to fix this ?? Thanks for your answer !

  • The pagedef is invalid

    hi,all: My environment is Jdeveloper 11.1.1.2.0,WebLogic 11g.The question is when I first go to the Home page,It's OK,but if I open any other page,then select the Home page.refresh the page. a error appear: 类型为迭代程序绑定定义的对象名hand_hadf_common_pages_view_