Custom menu buttons adding submenu buttons?

HEEEELLLLLLLLPPPPPPPP
I made these custom buttons but is there a way to add a submenu of 7 buttons to one of the buttons so that the other buttons appear below the top custom button on hover?
http://www.eurotechengineering.co.uk/

Thanks Gramps.
I think I put it in the wrong place.
This is my source code:
<script type="text/javascript">
// Google Internal Site Search script- By JavaScriptKit.com (http://www.javascriptkit.com)
// For this and over 400+ free scripts, visit JavaScript Kit- http://www.javascriptkit.com/
// This notice must stay intact for use
//Enter domain of site to search.
var domainroot="www.google.com"
function Gsitesearch(curobj){
curobj.q.value="site:"+domainroot+" "+curobj.qfront.value
}</script>
    <input name="q" type="hidden" />
    <input name="qfront" type="text" style="width: 180px" /> <input type="submit" value="Search" />
</div>

Similar Messages

  • Using a custom menu button on the slide to open and close TOC in Captivate 7

    HI
    I have a custom menu button. When the user clicks I want to show TOC, ( I see there is a state to show TOC) but when the user clicks the same menu button again on that slide how can I hide the TOC. ie toggle between hide and show.
    thanks

    I described some possible scenarios: Toggle Shape buttons - Captivate 6 - Captivate blog

  • Making a horizontal menu button stay in same state when I move cursor down to submenu buttons?

    Hello! I realized as I was typing the subject of this post that it was near impossible to describe without being confusing. So I'm going to let some screenshots do most of the talking. **DISCLAIMER: Ignore all formatting besides the "Parks" button for now**
    First picture, the cursor is not on the "Parks" button. Second picture, I have rolled over the "Parks" button, changing the color of it (to the "rollover" state color) and revealing the submenu buttons. Third picture, I have moved the cursor down to the submenu buttons, and the main "Parks" button goes back to that original color. How do I get it to stay in the other color when I am rolling over submenus? In other words, I want the "Parks" button to stay light blue when I rollover/click the other menu options.
    A good example of what I mean can be found on the header menu of http://www.generalassemb.ly
    Thanks! Hope this wasn't too confusing.

    KGLAD - sorry i couldnt get that to work when i applied it to my own objects / instances...
    there must be an easier way...
    I am playing an FLV on my main stage and was trying to use the generic operators defined in flash for the play / pause buttons:
    mc_MyVideo.playButton = mc_Play;
    mc_MyVideo.playButton = mc_Pause;
    Then i tried to modify this code to swap the buttons between each other on stage:
    mc_Play.onPress = function(){
                mc_Pause._x = 339.55;
                mc_Pause._y = 12.2;
                this._x = -100;
                this._y = -100;
    mc_Pause.onPress = function(){
                mc_Play._x = 339.55;
                mc_Play._y = 12.2;
                this._x = -100;
                this._y = -100;
    the buttons work fine controlling mc_MyVideo when both are shown in different locations on the stage and without any other code.... but the moment i try to assign another function to either of them they stop controlling mc_MyVideo.
    the closest i came was with an attachMovie function... when i pressed mc_Play it would start the movie and attach "mc_Pause" at the same time... thats the farthest i got...
    - Pat

  • Lightroom trial doesn't show complete menu selections or import button.  Also get error message on launch:  An error occurred when attempting to change modules.  I am unable to find/see the following file to try renaming the SLCache and SLStore files:  Sy

    Lightroom trial doesn't show complete menu selections or import button.  Also get error message on launch:  An error occurred when attempting to change modules.  I am unable to find/see the following file to try renaming the SLCache and SLStore files:  System Library/Application Support/Adobe.  Any ideas?  I only have 16 days left on the trial and have been unable to get it to work on my Macbook Pro.  This is all I am seeing after Lightroom opens.  Thanks!

    Thanks to both of you for attempting to help.  I finally figured out what was wrong . . . it was a Permissions problem.  Very frustrating, but after scouring the troubleshooting tips I finally found the one that solved my problem.  I had to add a User and give it Read/Write privileges to Lightroom.  The file I had to add the User to was Hidden on my Mac, so that added an even bigger challenge to the mystery.  Only a few days left on my trial version!  I hope I have time to try it out!

  • Menu Buttons and remote buttons in DVDSP 4.2.1

    Hi
    Sorry, this is the first real DVDSP project for me that involves menus and chapters. I used template from the program. I deleted the 3 bottom buttons and added text in a different place for play and scene menu. I then drew a button box around the text to make the text a button. Got all the navigation set. However there no highlight on the preview so you don't know which button your pushing. I burnt a DVD to test everything.
    I have COD's FCS tutorials but the DVDSP isn't giving me what I need.
    So what did I do wrong? My scene selection menu is all text buttons, no graphics at all.
    Also when playing the DVD on my TV, the menu on my remote didn't work. I had to push the title button on the remote. Am I supposed to map the remote buttons as well.
    Thanks for any help. Be nice to find a video tutorial with basics like scene selection and laying out an highlighting buttons. I"m totally lost here! ;-(
    Allen

    Thanks.. I know it use to be there but could not find it in the new version.. will test it out...
    I've put a snap shot of the project at :
    http://gallery.mac.com/herstik#100124
    Can DVSP4 also allow me no next jump to menus???
    I could only ever set it up to next jump through the movies... for a total of 99 tracks...
    After that I need to make menus into movie tracks.. but these are not navigable...
    Cheers
    Thanks for the help...

  • Adding a button to a JInternalFrame titlebar

    hi ,
    i was looking for a way to add an additional button to the titlbar of my JInternalFrame , i found some very useful codes here but i still got a little problem , after i added the new button the title of my JInternalFrame becomes "..."
    i would like to hear any suggestion you guys have ,
    here is my code :
    import javax.swing.*;
    import javax.swing.plaf.basic.BasicInternalFrameUI;
    import javax.swing.plaf.metal.MetalInternalFrameTitlePane;
    import java.awt.*;
    public class InternalFrameTest extends JFrame{
        public InternalFrameTest() {
            super();
            JInternalFrame jInternalFrame = new JInternalFrame("InternalFrameTest",true,true,true,true);
            myTitleBar(jInternalFrame);
            jInternalFrame.setSize(400,400);
            jInternalFrame.setVisible(true);
            JDesktopPane desktop = new JDesktopPane();
            desktop.add(jInternalFrame);
            getContentPane().add(desktop);
            setSize(500, 500);
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            setLocationRelativeTo(null);
            setVisible(true);
        private void myTitleBar(JInternalFrame internalFrame){
            BasicInternalFrameUI basicInternalFrameUI = (BasicInternalFrameUI)internalFrame.getUI();
            MetalInternalFrameTitlePane northPane = (MetalInternalFrameTitlePane)basicInternalFrameUI.getNorthPane();
            JButton iconifyButton = null;
            JButton maximizeButton = null;
            JButton closeButton = null;
            Component[] components = northPane.getComponents();
            for( int i=0; i < components.length; i++ ){
                if( components[i] instanceof JButton ){
                    if( i == 0 ){
                         iconifyButton= (JButton)components;
    }else if( i == 1 ){
    maximizeButton= (JButton)components[i];
    }else{
    closeButton= (JButton)components[i];
    northPane.remove( components[i] );
    //create the additional button
    JButton additionalButton = new JButton("+");
    additionalButton.setFont(new Font("Arial",Font.BOLD,9));
    additionalButton.setPreferredSize(new Dimension(14,14));
    additionalButton.setMargin(new Insets(0, 0, 0, 0));
    //create a new buttons panel
    JPanel buttonsPanel = new JPanel();
    buttonsPanel.setOpaque(false);
    buttonsPanel.setMaximumSize(new Dimension(-1, 14));
    //adding the buttons to the buttons panel
    buttonsPanel.add(additionalButton);
    buttonsPanel.add(iconifyButton);
    buttonsPanel.add(maximizeButton);
    buttonsPanel.add(closeButton);
    //adding the panel to the north pane of the internal frame
    northPane.setLayout(new BorderLayout());
    northPane.add(buttonsPanel,BorderLayout.EAST);
    public static void main(String[] args) {
    new InternalFrameTest();
    thanks in advance ,
    oz

    In general, it is very bad practice to access internal structures of UI delegates. Every time you find yourself casting getUI() result to a specific class and accessing the internal components, you are digging a very nasty hole. In this case, just adding the button is not enough - the internal frame title pane has a custom layout manager that knows nothing about it.
    You will have to dig much deeper and create your own UI delegate for internal frames to handle all the cases (including theme support, rollover effects, layout and RTL). Another option is to use Substance LAF that provides an API to add custom buttons to title panes [1]. This example shows how to do this for top-level frames, but the same would work for internal frames as well.
    [1] https://substance.dev.java.net/docs/api/SetRootPaneCustomTitleButtons.html

  • Custom functionality to the telephony buttons which can trigger calls

    Hi everyone,
    I need to add a custom functionality to the telephony buttons which can trigger calls. This will be added to the telephony buttons consult, transfer, warm transfer, dial pad, conference.
    Any idea as to how to proceed with this?
    Thank you in advance.
    Binno Don Thomas

    Hi,
    The buttons are controlled by ToolBar profile in your webclinet profile.
    For creation of the toolbar profile go to
    SPRO >> Customer Relationship Management >> Interaction Center WebClient >> Basic Functions >> Communication Channels >> Define Toolbar Profiles
    If you want to create the button itself for use in the toolbar profile you can go to
    SPRO >> Customer Relationship Management >> Interaction Center WebClient >> Customer-Specific System Modifications >> Define Toolbar Buttons
    Hope this Helps.
    Regards,
    Rajiv

  • How do you redirect the user to a custom page after the "Save" button is clicked?

    In SharePoint 2010, I could add the following code to a save button to redirect the user to a custom page.
    <input type="button" value="Submit" class="btnStyle" name="btnSave" onclick="javascript: {ddwrt:GenFireServerEvent('__commit;__redirect={/SitePages/Thankyou.aspx}')}" />
    However, how do you do this for a save button in SharePoint Online? The code of a save button in SharePoint Online looks like
    <input type="button" value="Save" name="ctl00$ctl33$g_175de2e0_43c1_4005_bac5_0ab02439686f$ctl00$toolBarTbl$RightRptControls$ctl00$ctl00$diidIOSaveItem" onclick="if (!PreSaveItem()) return false;if (SPClientForms.ClientFormManager.SubmitClientForm('WPQ1')) return false;WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions(&quot;ctl00$ctl33$g_175de2e0_43c1_4005_bac5_0ab02439686f$ctl00$toolBarTbl$RightRptControls$ctl00$ctl00$diidIOSaveItem&quot;, &quot;&quot;, true, &quot;&quot;, &quot;&quot;, false, true;javascript: {ddwrt:GenFireServerEvent('__commit;__redirect={/SitePages/Thankyou.aspx}')}))" id="ctl00_ctl33_g_175de2e0_43c1_4005_bac5_0ab02439686f_ctl00_toolBarTbl_RightRptControls_ctl00_ctl00_diidIOSaveItem" accesskey="O" class="ms-ButtonHeightWidth" target="_self">

    Not exactly what you are asking for, but if you are creating the link then you could add "?Source=" to the URL.
    http://yourServer/sites/yourSite/Lists/TestList/NewForm.aspx?Source=/SitePages/Thankyou.aspx
    Mike Smith TechTrainingNotes.blogspot.com
    Books:
    SharePoint 2007 2010 Customization for the Site Owner,
    SharePoint 2010 Security for the Site Owner

  • Adding a button to standard OWL

    Hello Gurus,
    How do we add a custom button to the Accounts OWL and act on click of it?
    I see that the UI is not extensible like that.
    The requirement is to select a number of customers from the list and click the button. The button click should call an action on the account business object.
    Can we add an embedded component below the list, add a button and on click of that, call action on the BO. How do we get the selected rows (customer IDs)?
    Any suggestions are appreciated.

    Hi Mahesh,
    the Account-BO is not an ESF2-Object. Therefore you won't have the possibility to add an action on Account-BO. The action-feature is only available on ESF2-Objects (like Service Request, Activity etc.). -> a Button in an EC would be an option, BUT I am not sure, if it is even possible to get the selected rows from the standard.
    A more heavy aproach would be to build your own Account OWL and show this instead of the standard OWL. This would have much more dev. effort, but provides you all freedom for custom action. But you would need to rebuild all the standard functionality (I guess you cannot rebuild everything there from PDI).
    Best regards
    Tom

  • Adding a button to results page of a test in Captivate 6...

    I'm working in Captivate 6 and I don't seem to be able to add a button to the results page of a test.  Adding a button is not an option.  I need to insert Javascript in the button in order to get back to our Learning Management system.  Please help!

    Welcome to the forum,
    Have a look at: http://blog.lilybiri.com/want-a-button-on-question-slide-in-captivate It also explores shape buttons on the score slide.
    Lilybiri

  • Code placement for drop down menu within an animated button

    I have a main menu comprised of 7 buttons; 6 of which are all
    straight forward with an animation. (The animation is that when the
    buttons are rolled over the button extends itself out to the right.
    On the rollout the button returns to its original state.) The 6 all
    function fine.
    The 7th menu button is the same idea but with the edition of
    a two button drop down menu that appears when the main button is
    rolled over. The roll over part is fine. My problem is moving the
    cursor off the main button to get to the sub-menu items without
    having them disappear once the cursor if off the main 7th button.
    Within the time line of the 7th button (all of the buttons
    are movie clip buttons) I put an invisible button, removing the
    sections over both the main button and the sub buttons. I have
    tried the following:
    (I should point out that the labels within the button for the
    animation are an _up, _over and _out states...the buttons animate
    out in the _over label and animate back to the original position in
    the _out label,)
    The code and where I have (unsuccessfully) tried placing it
    are as follows:
    1.) On the invisible button itself (within the main button):
    on (rollOver) {
    gotoAndPlay("_out");
    2.) On the Actions layer (within the main button):
    invisible_btn.onRollOver = function () {
    gotoAndPlay("_out");
    3.) On the Actions layer (on the main timeline...which is
    where the code for the other 6 buttons is and running as should):
    btnMusic_mc.invisible_btn.onRollOver = function () {
    btnMusic_mc.gotoAndPlay("_out");
    4.) Just a slight variation of #3 (still on the Actions layer
    of the main timeline):
    btnMusic_mc.invisible_btn.onRollOver = function () {
    brnMusic_mc.invisible_btn.gotoAndPlay("_out");
    The result for all four of these options has been the same.
    In rolling over the main button (btnMusic_mc) it does animate out
    as it should, exposing the two sub buttons. But moving the cursor
    off the btnMusic_mc neither allows me to reach the sub buttons nor
    does the btnMusic_mc animate back to its first position (as it
    should). It just snaps back into that position.
    Clearly I am missing something here. Any thoughts would be
    appreciated.

    Here is what it should read, and does on Safari:
    Rates and Hours
    FAQ - Yoga
    FAQ - Reiki
    FAQ - Massage
    No, it shouldn't and it doesn't. It should look like :
    Rates, Hours, Reservations
    Rates and Hours
    FAQ - Yoga
    FAQ - Reiki
    FAQ - Massage
    FAQ and Reserve - Training
    Here's the correct part :
    <select>
              <option value="">Rates, Hours, Reservations</option>
              <option value="http://yogareikimassage.com/MG/Rates.html*_top">Rates and Hours</option>
              <option value="http://yogareikimassage.com/MG/FAQ_-_Yoga.html*_top">FAQ and Reserve - Yoga</option>
              <option value="http://yogareikimassage.com/MG/FAQ_-_Reiki.html*_top">FAQ and Reserve - Reiki</option>
              <option value="http://yogareikimassage.com/MG/FAQ_-_Massage.html*_top">FAQ and Reserve - Massage</option>
              <option value="http://yogareikimassage.com/MG/FAQ_-_Personal_Training.html*_top">FAQ and Reserve - Training</option>
    </select>
    The <select> item was missing. And if you don't want the first line in the menu (Rates, Hours, Reservations) then don't enter it in the first place.
    BTW, it's not a dropdown menu. It's a selection list in a form.

  • Adding a Button to a Form

    I am brand-new to Oracle Forms, but have experience in VB and PL/SQL. Anyway, I have created a sample form based of a simple view. It will run client-server and I can also run it (recompiled) via Forms Server on my Solaris-based 9iAS Apps Server.
    When I go to add a simple button to the form, I see 12 identical buttons stacked up and acting as 1 large button. Same thing for any inerface item. What is going on?
    Using Forms 6i by the way.

    Check the number of records displayed in the datablock that you're adding the button to. It's probably set to 12.

  • Adding interactive buttons in Acrobat X Standard disables the Commenting and markup tools

    Why does adding interactive buttons to PDFs in Acrobat X Standard disable the Commenting and markup tools in the PDFs, but only when they are viewed in the Reader, not when opened in Acrobat?  When the buttons are removed, the Commenting and markup tools are re-enabled in Reader.
    Thank you.

    Which version of Reader are you testing with?

  • Adding share buttons

    has anyone had any success adding share buttons, such as add this, etc.

    Hi Robert,
    I have a tutorial on my site:
    http://allaboutiweb.com/index.php/2008/08/add-social-bookmarking-to-your-iweb/
    +I may receive some form of compensation, financial or otherwise, from my recommendation or link.+

  • How can i get my iphone to come back on after using menu and off with buttons to switch off?

    Hello!
    I used the menu and on/off botton to swicth off my iPhone and now cannot get it back on. Can someone help me get it back on?
    It was freezing all the time.

    If Lyssa's reply didnt work, try holding the power button and home button at the same time for atleast 45 seconds. This SHOULD fix the problem.

Maybe you are looking for

  • Only one device at a time can access wireless

    Whenever I access the wireless network at home with a laptop or iPod, it kicks my wife off of the iMac's access. Basically, only one device can use the wireless network at a time. I'm not that comfortable with network issues, but I'm not a total noob

  • Home Hub 3 Wireless Problems (V100R001C01B031SP09_...

    Dear all, I am a new BT infinity customer but have had about 5 different providers and about 7/8 wireless routers in the past - never had FTTC. BT infinity on a wired connection works great and I get approximately 65mbps (prediction 76mbps) which I'm

  • Photo booth effects in imovie

    Is there a feasible way to use effects from photo booth in imovie? I would like to have the background-effect and use my isight-camera. There is no effect to choose. Unfortunately the quality is too bad if I record directly from photo booth. I did no

  • CRM order

    Hi Friends, in the CRMD order screen( t-code: CRMD_ORDER) beside to fields sold-to-party,ship-to-party and bill-to-party address is coming ...with out street and with street. Can any body tell me exactly from which table it is picking up that address

  • CC to CS6 exporting issue

    I am trying to export an XML or AAF file from Premiere Pro CC in order to open in Audition and Premiere CS6 to do colour correcting and audio mixing. CC will not save/export my transitions (split screens, linear wipes). Is there any way around this?