Toolbar buttons GUI Issue in JRE 1.4.0_01.

I have migrated my project which is working well in JRE 1.3 to JRE 1.4.0_01.
I am facing a issue in my Graphical User Interface. In JRE1.4.0_01, all the tool bar buttons are showing in seleted state(Kind of poped up). When I move the mouse over those tool bar buttons, they become normal(Unselected state). I just removed JRE1.3 and included JRE1.4.0_01 in my project.
Does anyone have a suggestion to fix this issue? Appreciate your time.
Radha

Hi,
Not sure if I can help as I'm only new to java. I had the same problem when I changed from 1.3 to 1.4. Took me a while to fix the problem. I my case, which may be different to yours, I was using an instance of JButton which provided a rollover effect using a mouse listener. Like your problem, my buttons started with a border selected around them as if the mouse had entered the button area. To fix the problem I simply used the setBorderPainted(false) when I created the button and then when the mouselistener picked up an entered event I set the border Painted to true. When it was exited, the border was replayed with an empty border.
Hope that helps
Adrian

Similar Messages

  • Issue with custom toolbar button in alv and leave screen

    Hi,
    in one subscreen (say screen 100)i have an alv with custom ADD  toolbar button..so in the user_command event handler ,i call a antoher screen(dialogue)..like if i click on ADD button ,it should display dialogue screen(say 200) and after entering input in dialogue screen i click on CONINUE to retrun to screen 100..problem is for the first time i click on ADD button its working fine ,succesffyuly returned to screen 100...but for the second time i click on add button , i have to click on twice the CONTINUE button to retrun to screen 100..when debuggin i found the user_command event routin is executin twice ..any solution..
    Thanks,
    srini

    Apparently handler is set for every new ALV instance. This you get by executing CREATE OBJECT alv... every time PBO is raised. Ensure you are executing this statement only once duirng program lifetime. Then the system will match event handler only with one ALV instance (executing it once).
    if r_alv is not bound.
       CREATE OBJECT r_alv ...
       SET HANDLER ...
    endif.
    Regards
    Marcin

  • Adobe Acrobat 8 Plug-in GUI issues in Mac OS 10.4.11 using XCode 2.5

    I am trying to port my plug-in to Acrobat 8. I have been maintaining this plug-in from Acrobat 5 on both PC and Mac. I am now having some trouble with the UI components of the Plug-in on the Mac. I can load and debug my plug-in on Acrobat 8, however my toolbar does not show up. Also, the modal dialog box that needs to launch does not. I am having trouble locating an example, or some documentation.
    For the Toolbar button, I am using the following code from the Stamper example.
    void *GetStamperToolButtonIcon(void)
    #ifdef MAC_PLATFORM
    extern CFBundleRef gPluginBundle;
    AVIconDataRec iconData;
    // Find a resource in the plugin bundle by name and type.
    CFURLRef pingURL = CFBundleCopyResourceURL( gPluginBundle,
    CFSTR("StamperIcon"),
    CFSTR("png"),
    NULL );
    ASFile asf = NULL;
    ASPathName aspn = ASFileSysCreatePathName (NULL,ASAtomFromString("CFURLRef"),
    pingURL, NULL);
    ASFileSysOpenFile(NULL, aspn, ASFILE_READ, &asf);
    ASUns32 dataSize = ASFileGetEOF(asf);
    ASUns8 *data = (ASUns8 *)ASmalloc(dataSize + 1);
    ASFileRead(asf, (char *)data, dataSize);
    ASFileClose(asf);
    iconData.dataStm = ASMemStmRdOpen((char *)data, dataSize);
    iconData.eColorFormat = kAVIconColor;
    return AVAppCreateIconBundle6(kAVIconPNG, &iconData, 1);
    #elif WIN_PLATFORM
    return(AVCursor)LoadBitmap(gHINSTANCE, MAKEINTRESOURCE(IDB_BITMAP1));
    #endif
    This works for the stamper, and correctly displays the Stamper Icon in the toolbar, but when I try to create a new PNG file with the same name, the button no longer works. Also, if I try to change the name of the PNG file to "MyTool.png" and then the reference from CFSTR("StamperIcon") to CFSTR("MyTool") the button no longer works. Does anyone have any insight? In my research, I have come across SafeGetResource, and using the resource chain, however, I can not get this to work either.
    The Modal Dialog I am trying to display is in a RSRC file, and it does not launch when I call sADMDialog->Modal() like it does in Acrobat 7, 6, and 5. Are there any Mac examples of plug-ins that use ADM, or platform specific Modal Dialog Boxes?
    I have read the SDK documentation, but I can not find any code samples.
    Any help would be greatly appreciated,
    Thank You,
    Austin

    As of now I am unable to link up the objective c cocoa code when I build the plug-in. I can compile but not link. The error I get is below. Note that is that there is a -framework Carbon flag, but no -framework Cocoa flag. I have modified the Stamper example plug-in provided with the SDK and I can not find how to tweak the project settings to use the cocoa framework. If I can not figure out this linking problem, I will create a small project demonstrating the issues I am having and I will post it.
    Ld "/Applications/Adobe/Acrobat 8 SDK/Version2/PluginSupport/Samples/MacShoomTool8/mac/BuildResults/obj/MacShoomTool8/MacSh oomTool8_debug/MacShoomTool8.build/Default/MacShoomTool8_debug.build/Objects-normal/i386/M acShoomTool8" normal i386
    cd "/Applications/Adobe/Acrobat 8 SDK/Version2/PluginSupport/Samples/MacShoomTool8/mac"
    /Developer/usr/bin/g++-4.0 -o /Applications/Adobe/Acrobat\ 8\ SDK/Version2/PluginSupport/Samples/MacShoomTool8/mac/BuildResults/obj/MacShoomTool8/MacSh oomTool8_debug/MacShoomTool8.build/Default/MacShoomTool8_debug.build/Objects-normal/i386/M acShoomTool8 -L/Applications/Adobe/Acrobat\ 8\ SDK/Version2/PluginSupport/Samples/MacShoomTool8/mac/BuildResults/obj/MacShoomTool8/MacSh oomTool8_debug/Default -F/Applications/Adobe/Acrobat\ 8\ SDK/Version2/PluginSupport/Samples/MacShoomTool8/mac/BuildResults/obj/MacShoomTool8/MacSh oomTool8_debug/Default -F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Cocoa.framework -F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Cocoa.framework/Headers -F. -F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Cocoa.framework/Versions/A -F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Cocoa.framework/Versions/Curr ent -F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Cocoa.framework/Versions/A/He aders -F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks/Cocoa.framework/Versions/Curr ent/Headers -F/Developer/SDKs/MacOSX10.4u.sdk/System/Library/Frameworks -filelist /Applications/Adobe/Acrobat\ 8\ SDK/Version2/PluginSupport/Samples/MacShoomTool8/mac/BuildResults/obj/MacShoomTool8/MacSh oomTool8_debug/MacShoomTool8.build/Default/MacShoomTool8_debug.build/Objects-normal/i386/M acShoomTool8.LinkFileList -framework Carbon -framework ApplicationServices -arch i386 -exported_symbols_list Symbols.exp -Wl,-Y,1455 -bundle -mmacosx-version-min=10.3 -Wl,-dead_strip -isysroot /Developer/SDKs/MacOSX10.4u.sdk
    /Developer/usr/bin/../libexec/gcc/i686-apple-darwin8/4.0.1/ld: Undefined symbols:
    _objc_msgSend
    .objc_class_name_NSObject
    /Applications/Adobe/Acrobat 8 SDK/Version2/PluginSupport/Samples/MacShoomTool8/mac/BuildResults/obj/MacShoomTool8/MacSh oomTool8_debug/MacShoomTool8.build/Default/MacShoomTool8_debug.build/Objects-normal/i386/S hoomToolUI.o reference to undefined _objc_msgSend
    /Applications/Adobe/Acrobat 8 SDK/Version2/PluginSupport/Samples/MacShoomTool8/mac/BuildResults/obj/MacShoomTool8/MacSh oomTool8_debug/MacShoomTool8.build/Default/MacShoomTool8_debug.build/Objects-normal/i386/S hoomToolController.o reference to undefined .objc_class_name_NSObject
    collect2: ld returned 1 exit status

  • So how do I REALLY get the toolbar buttons to just show icons (and not text)?

    On my Bookmarks toolbar, my bookmarks "buttons" show icon AND text. I just want to show icon, not text. When I go right-click.....customize, the window "customize toolbars" opens. Down in the bottom left corner the "show" option dropdown is already set to "icons" (and only icons). But it's just not so. The toolbar buttons show icons AND text. If I cycle through that dropdown just for kicks, it doesn't change; I can choose "icons (only)" all day long, but the toolbar buttons still show text.

    Either of the following Add-ons allow you to show icons only and/or to have multiple rows on the Bookmarks Toolbar. Set the options on either after installation.
    *Multirow Bookmarks Toolbar Plus - https://addons.mozilla.org/en-US/firefox/addon/multirow-bookmarks-toolbarplus/
    *Roomy Bookmarks Toolbar - https://addons.mozilla.org/en-US/firefox/addon/roomy-bookmarks-toolbar/
    Other - Check your Plugins and update as needed.
    #Check your Plugins - https://www.mozilla.org/en-US/plugincheck/
    #'''''Adobe Shockwave for Director Netscape plug-in, version 11.6.4.634''''' (this old version has security issues)
    #*http://kb.mozillazine.org/Shockwave
    #*Download, save, close all browsers, run the installer you downloaded - http://get.adobe.com/shockwave/thankyou/

  • Shortcuts for Telephony Toolbar Buttons in IC WebClient 7.0

    Hi, experts!
    I have a requirement to customize shortcuts for keys to access multi-channel toolbar buttons. Couldn't you tell me where can I find this customizing? Or what is the transaction code for this customizing?
    Thanks in advance,
    Fanil.

    Hi Fanil,
    You can maintain the Toolbar settings in the below path.
    SPRO>CRM>IC Webclient>Basic Functions>Define Tool Bar profile (Or use the existing one if suits for your requirement).
    Assign the defined Toolbar profile to your Business role, Ex If you are using IC Agent Business Role run Transaction code CRMC_UI_PROFILE (Customer Relationship Management  Interaction Center WebClient  Define Business Roles), select the IC_Agent Business role and assign the defined Tool bar profile in assign function profile (Function profile id is WBAR).
    Hope this solves your issue.
    Thanks
    Lingaraj M

  • How can I add custom toolbar buttons to load different TOCs?

    In my WebHelp output, I want to have custom buttons on the toolbar that when clicked load a specific TOC in the left navigation pane. For example, when the user clicks the PC button, the PC TOC loads in the left pane. When the user clicks the VM button, the VM TOC loads in the left pane. All of the help files are managed in one project and some files will appear in both TOCs.
    I think this should be possible but not sure how to make it happen. Is there some JavaScript that I should add to the custom toolbar item to load the TOC on click? How do I specify the TOC that I want to show for each button?
    BTW - I'm using RoboHelp 8 (8.0.2) to generate WebHelp output. Thanks in advance for your help!

    Hi there
    If you were to upgrade to RoboHelp 9 it would simplify your issue. Version 9 offers a new feature called Dynamic User-Centric Content (DUCC) and provides a nifty little drop-down selector in the Navigation Mini-toolbar.
    As you are on version 8 the only way I can fathom you would manage this is by generating two different outputs. Each output would use its respective TOC. The Toolbar button in each project could be configured to open the other project.
    You might first decry having to manage two outputs and all the files. But if you pick apart DUCC and the way it is configured by Adobe, it works in much the same manner. It's just hidden from your initial view.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Acrobat PDFMaker toolbar button disparity

    I am printing to PDF an Outlook email message using the Acrobat PDFMaker toolbar button.  The document generates but is displaying the date of the Outlook pst file instead of the date the email was created.  Conversely, if I attempt to print the same email from Outlook (File>Print>AdobePDF) the date listed on the resulting PDF is the actual date the email was generated.  I suspect there is some issue with the PDFMaker toolbar.  Is there an explanation or patch for this issue?  I am using Adobe Acrobat Pro 9.

    Also please note that PDFMaker is a invention created by adobe to work specifically with MS Office. And will work on all version up to Office2004 on Mac.
    However, In its infinite wisdom, and not realizing the wrath and backlash they would receive from Office Mac Users, dumped all VBA support in Office2008. Well, PDFMaker is a Casualty of that along with other such goodies as Solver in Excel and many other Macro based commands. MS has received such heat that they absolutely promise it will be back in Office 2010, 11, 12 whatever the next version is, at possible sacrifice of new features.
    So if your trying to use with Office 2008 it won't work, you can't get it to work.
    Besides, now in Office2008 you can actually create a PDF directly from the Save As command. And has solved a problem or bug Adobe has never figured out how to fix where if you created a PDF from a word document, would break the pdf into chunks depended upon whether you used Page and section Breaks. And would only create a PDF of the first sheet in an Excel spread sheet. A problem Adobe hasn't fixed in 13-14 years at least.
    As to quality of the PDF created I have no idea. but they look great for the web.
    So I can see why Jon threw in his comment about being removed in 9.

  • Applying ALV toolbar button funtionality in user developed button .

    Can any body tell me the step by step approch of getting  ALV toolbar button funtionality in user developed button in application toolbar ?  That is i develop one button on application toolbar and on click on this i want any one toolbar button  funtionality  on my developed button . how can i do this?

    Hi,
    To create a button on ALV list display, Like to create a "BACK" button on your ALV tool bar,, you need to first define & create a pf status then call it in your REUSE.. fm,,
    below code will explain you all the things,,
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
          EXPORTING
            i_callback_program       = sy-repid
            i_callback_pf_status_set = 'SET_PF_STATUS'   
            i_callback_user_command  = 'USER_COMMAND'
            i_grid_title             = text-001
            is_layout                = s_layout
            it_fieldcat              = i_fcat
            i_save                   = lf_save
            is_variant               = s_disvariant
          TABLES
            t_outtab                 = i_pernr[]
          EXCEPTIONS
            program_error            = 1
            OTHERS                   = 2.
    *       FORM USER_COMMAND                                             *
    FORM user_command USING ucomm LIKE sy-ucomm
    selfield TYPE slis_selfield.
      CASE ucomm.
        WHEN 'BACK'.
          leave to screen 0.
      ENDCASE.
    ENDFORM.                    "user_command                              " USER_COMMAND
    * Form Set_pf_status
    * Notes: Called by FM REUSE_ALV_GRID_DISPLAY
    FORM set_pf_status USING rt_extab TYPE slis_t_extab.
      SET PF-STATUS 'BACK_BUTTON'.
    ENDFORM. "Set_pf_status
    First you shuld to create a GUI status for your screen dispalying the list (For this copy a GUI status from a standard program and paste it in 'BACK_BUTTON')
    then in Application Toolbar ,, Just create a button as BACK ,, Keep the FUNCTION CODE as BACK ..
    I think you got the idea, how to use any GUI for ALV list ..

  • GUI issues in MARS

    Dear Friends,
    I have a MARS 100 appliance running ver 6.0.6 and some gui issues.
    I have to click on GO button the browser twice or thrice and only then it opens the page. This behaviour happens randomly with clicking different pages like Query page, Incident page and so on. So what i do is click on the Incidents page, if the progress bar below on the browser window freezes and never moves saying "Waiting", i then click on the Go button and then the page opens!! Sometimes i have to clock on go button multiple times.
    Has anyone else faced this issue?
    thanks a lot
    Gautam

    THe following
    is the sysstatus information
    sysstatus - 21:32:44 up 18 min,  1 user,  load average: 4.00, 4.20, 3.20
    Tasks: 175 total,   3 running, 172 sleeping,   0 stopped,   0 zombie
    Cpu(s): 37.7% us, 11.7% sy,  0.0% ni, 35.4% id, 15.0% wa,  0.2% hi,  0.0% si
    Mem:   4154060k total,  4137392k used,    16668k free,     2504k buffers
    Swap:  4200988k total,    31968k used,  4169020k free,  2866712k cached
      PID USER      PR  NI  VIRT  RES  SHR S %CPU %MEM    TIME+  COMMAND
    3305 pnadmin   18   0  239m 108m 7476 S 74.7  2.7   4:32.00 pnesloader
    3508 oracle    16   0 1329m 645m 642m R 44.1 15.9   2:00.48 oracle
    3335 pnadmin   16   0  560m 143m  15m S 21.1  3.5   5:55.85 pnparser
    3037 oracle    18   0 1358m 731m 700m D  9.6 18.0   3:41.65 oracle
    2805 pnadmin   18   0 1063m 333m  14m S  1.9  8.2   4:36.50 java
    2886 oracle    15   0 1343m  75m  73m S  1.9  1.9   0:10.28 oracle
    3320 pnadmin   18   0 98.7m  37m 8984 S  1.9  0.9   0:38.36 process_postfir
        1 root      15   0  3324  568  480 S  0.0  0.0   0:01.02 init
        2 root      RT   0     0    0    0 S  0.0  0.0   0:00.03 migration/0
        3 root      34  19     0    0    0 S  0.0  0.0   0:00.00 ksoftirqd/0
        4 root      RT   0     0    0    0 S  0.0  0.0   0:00.04 migration/1
        5 root      34  19     0    0    0 S  0.0  0.0   0:00.00 ksoftirqd/1
        6 root      RT   0     0    0    0 S  0.0  0.0   0:00.01 migration/2
        7 root      34  19     0    0    0 S  0.0  0.0   0:00.00 ksoftirqd/2
        8 root      RT   0     0    0    0 S  0.0  0.0   0:00.03 migration/3
        9 root      34  19     0    0    0 S  0.0  0.0   0:00.00 ksoftirqd/3
       10 root       5 -10     0    0    0 S  0.0  0.0   0:00.00 events/0

  • IR toolbar buttons not scrolling

    I have a fairly wide interactive report that is getting cut off on the right-hand side in Theme 4. Not unexpected, but the browser isn't giving my any scroll bars, which kind of was a surprise. This means I've got data that can't be seen. In an attempt to counter this, I added a div tag with an overflow style to force the region to scroll. This worked as I expected nicely, but what I didn't expect was for the toolbar buttons, (Go and Actions), not to scroll.
    Has anyone run into this?
    I've set up a quick app. to help show what I'm seeing.
    [http://apex.oracle.com/pls/apex/f?p=58111:2|http://apex.oracle.com/pls/apex/f?p=58111:2]
    I don't see this same behavior on apex.oracle.com; is this an issue that was addressed in 4.1? If so, is there a work around? I'm not sure when we'll upgrade to 4.1.1
    Our version:
    Application Express 4.0.2.00.07
    Thanks!
    Joe
    Edited by: JLiljedahl on Mar 20, 2012 9:32 AM
    Looks like an IE issue. FF 11 is fine, IE 8 isn't. Although I don't see this issue with 4.1.1 on oracle.com in IE...

    Post Author: mewdied
    CA Forum: .NET
    This will move where it looks for the images, but not where it looks for the javascript files that do the exporting and printing.  Only way to specify where the crystalreportviewer directory is located is in CR XIr2 with fixpack 2.2 or later.  In the release notes there is documentation on what you need to setup to do this.

  • Restoring toolbar buttons?

    This is not new question, I just clicked to check on something and lost all my info and could not retrieve it at all so I am starting over with my one major problem so it is not a new question but MY ONE and terribly important question. I believe this first developed when I upgraded to this Firefox version (3.6.13) I lost all of URL-bar! There was just enough space for star and flag(add-ons) but not even 1 mm of space for typing. I read at one spot that it was part of a Windows change that they never told would be an alteration of showing info in FF. I have used blue button for File, Edit, etc toolbar and that is fine just as soon not have that toolbar but went through the safe mode routine not to get menu-bar but would not have taken the action if I knew that my buttons were in danger as I need all my text buttons as well as ALL my toolbar buttons. I have the all text ones, thankfully, but not a one of buttons and I use so very many not one of those is showing anywhere. I have checked to see if they could be at end of any toolbar but they have disappeared completely.
    My crisis is that now I have URL bar back after doing "Firefox safe mode and reset of toolbars and controls" and now the text buttons are in place but not even one button. I use custom buttons2 and cute buttons SVG but have never used the SVG one as yet _at least I do not recall using that. I am in desperate shape as I simply cannot remain sane without access to my buttons! Please help! As far as next line-I already answered that and I do not want to close down FF for fear that this condition will become permanent.Quite frankly, after typing this 2 times for the first time I was asking and these areas seem redundant to me so I feel that I have explained repeatedly and hope that I have not left out important info this time but I think you have sufficient info to be able to give me some suggestions. Thanks in advance.

    to my surprise, as I was attempting to get help on this problem-here I am back at my own problem that I was attempting to solve some time ago. I was also surprised to see that 40 people have this problem and 5 this week. I wonder if it isn't more but is phrased in a slightly different way but all through-none shows that any response was helpful. My being back to resolve this shows that I am still trying to solve me issue.
    I now have gotten my buttons in place but I do not have the text that goes with those buttons and some just take a place with a block that has no identification at all. Please tell me how I can take each and every one of those buttons to get them back to normal. This is slightly different from my original problem.
    This is top importance for me. I am up to date with my Firefox 3.6.15 version, use XP64bit Professional, and it has been recommended that I move this to Windows 7-the PC was bought as an XP downgrade from 7 but the Dell tech support person felt that it would be better to do a clean install of 7 after saving my info but since I am having trouble with this loss of usefulness without doing any big change of my PC. So, I need your suggestions on how to fix these buttons and also your tips regarding the jump to 7. I made the decision to get XP after 7 was out because this is business computer and I have my hands full taking care of other new things on my PC and did not want to get used to a new OS at the sane time. I feel that I am still in same situation but if he is right that there must be some sort of malware that I could get rid of by doing this clean install-well, I am trying to talk myself into this and would like to know your thoughts. You have helped me in the past and "the-edmeister" seems to know things that I cannot assess in advance. I don't want to find myself in a place that I wish I had not taken when there is no way back but by same token, it may be the best change to make at this time. Hoping for some new suggestions. I am afraid that you will say that I must reset every button again but whatever is said, I know that I will do whatever it is.

  • Toolbar buttons work in preview, not in generated webhelp

    I'm using RH 8.0.2 to generate webhelp.
    I took advantage of a few snippets from Peter Grainge's site and have 3 new toolbar buttons for my project:
    Here's where I need help.
    1. Report an Issue links to a sharepoint site on our network.  The link works fine, but displays inside the topic frame.  What is the proper Inline JavaScript to open the sharepoint page in a new window?  For ease of reply, say the link is http://www.mysite.com/issues/default.aspx
    2. Send link by Email sometimes creates a draft email when I click it in the preview pane, but I haven't figured out the reproducible conditions.  It doesn't seem to work in the generated files however. A similar issue seems to occur for the Copy Link to Clipboard button - sometimes works in preview, but not in generated webhelp.
    Notes:
    The Javascript I used for Send Link by Email, from Grainge's snippet 39, is:
    window.location=('mailto:[email protected]?Subject=Useful Information&body=This page might be useful to you: ' + window.parent.frames[1].frames[1].document.title +' ' + escape(window.parent.frames[1].frames[1].document.location))
    Note, this script throws an error as you preview, 'window.parent.frames.1.frames.1.document is null or not an object.
    The Javascript I used for Copy Link to Clipboard, from Grainge's snippet 114, is:
    function CopyURL()
    var myHerf=parent.frames[1].bsscright.location;
    var title=parent.frames[1].bsscright.document.title;
    if(window.clipboardData)
    var tempCurLink=title + "\n" + myHerf;
    var ok=window.clipboardData.setData('Text',tempCurLink);
    alert("Press Ctrl + V to Paste the link in your email");
    Any help appreciated!

    Hi there
    When you visited the page where you downloaded, I'm guessing you failed to also take a look at the link on the page designed to help with this?
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Simple Dynpro Toolbar Button Enabling???

    Hi,
    I have created a simple dynpro with a GUI Status object. By default all toolbar buttons are disabled, though I have assigned function codes to some of them. How to enable them?
    Kind regards,
    Heiko

    Hi,
    Check whether its activated and have u assigned funtional types to the respective buttons. and also check this link
    http://help.sap.com/saphelp_bw31/helpdata/en/9f/dba99935c111d1829f0000e829fbfe/content.htm

  • Photoshop CC Toolbar buttons sticking.. getting stuck on single click

    Toolbar buttons get stuck in dropdown menu with single click... it's extremely irritating especially being in photoshop all day. I have to click the intended tool button twice in order to get rid of the drop down menu options. I realize it should do this when I double click or hold down click.. but not when I simply want to select a tool with a single click.  I've tried everything. Please help!

    Try resetting the tools:
    Also try changing the mouse settings such as double click speed..
    Benjamin

  • Sample script to pop-up txt box on mouse-over on skin toolbar button?

    RH9,WebHelp Pro
    I am completely new to scripting. I have customised a toolbar button in the skin and while it is easy enough to place a hyperlink to be activated on click, I would also like to display a text caption when the user rolls over the button before clicking.
    Can anyone provide or point me to an example of the required syntax?
    Thank you.

    Hi,
    You have to modify the title attribute of the link. The browser will show that text when you hover the link. I believe that WebHelp uses the text of the button as the title.
    If that doesn't work for you, you can use the onMouseOver event to show and hide a tooltip. Check out Walter Zorn's tooltip script: http://edwardsmark.com/proofOfConcept/walterZorn/ It has some good examples of how to set up the script.
    Greet,
    Willam

Maybe you are looking for