How can i create a panel menu?

As i know,configrator is only can create an "About" menu.
How can i create more menu?
Thanks!

Those panels are created with Extension Builder programically. You need to program in ActionScript to create the menus.

Similar Messages

  • How can you create a spry menu bar with no background colour?

    How can you create the first level of a spry menu bar to have no colour? I have a coloured background right now and the colour matches when you load the site in Internet explorer but does not match in Firefox. Any suggestions are welcomed on how to fix this.
    Thanks!
    HK

    Here is the site:
    http://partnersnaturally.ca/
    I am learning with code, (obviously) so any feedback would be nice. I use dreamweaver CS4, but when I originally designed the site it was in a much older version of dreamweaver. I wonder if that could also be a cause. (besides human error)
    Thanks again,
    HK

  • How can I create own side menu in DW

    I have created a sample below of what I am trying to achieve...
    Problems I have:
    1) H2 text in menu wraps around when there is no need.
    2) need to have blue menus change on hover.
    3) need to have content in document area load on clicking the menu section/div - not the link within it
    4) document area should fill space remaining on right.
    Now I have tried the section onclick event but it fails miserably.
    In order to resolve the above issues I have stripped the below code back to basics with in-document css.
    I'd like to understand though why the :hover does not work on either the h2 OR the section/div.
    I've looked at the spry accordion and several online accordians but they are not what I want.
    Thank you in advance for any feedback.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    #pageWrapper {
    background-color: #F00;
    height: 100%;
    width: 100%;
    #wrapper960 {
    width: 960px;
    background-color: #0F0;
    margin-right: auto;
    margin-left: auto;
    #header {
    background-color: #C9F;
    #footer {
    background-color: #C0F;
    clear:left;
    /*Define Accordion box*/
    .accordian {
    background-color: #CCC;
    overflow: hidden;
    width:930px; overflow:hidden;
    /*.horizontal section{ width:5%; height:400px;}*/
    .accordian section{ width:5%; height:400px;}
    .accordion section:hover {background-color:#444;}
    .Menu {
    width: 35px;
    background-color: #06F;
    float: left;
    margin-right: 5px;
    height:500px;
    .Menu: hover {
    background-color: #FFF;
    .Menu h2{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    #documentArea {
    background-color: #FFF;
    float: left;
    overflow: hidden;
    </style>
    </head>
    <body>
    <div id="pageWrapper">
    <div id="wrapper960">Content for  id "pageWrapper" Goes Here
            <div id="header">This area is reserved for logo</div>
        <div class="accordian horizontal">
        <section class="Menu" onclick="">
            <h2><a href="#about">About Us</a></h2>
        </section>
        <section class="Menu">
            <h2><a href="#about2">Our Services</a></h2>
        </section>
        <section class="Menu">
            <h2><a href="#about3">Portfolio and Gallery</a></h2>
        </section>
              <div id="documentArea">
            <h2>Document Area</h2>
        </div>
      </div>
         <div id="footer">This area is reserved for footer</div>
      </div>
    </div>
    </body>
    </html>

    terryfoster wrote:
    Thank you Osgood but one issue still remains which is the main one.
    I want the menu to activate on clicking the bar - not the hyperlink in it.
    It's very good and I dont want to appear ungrateful, but that was the point of this exercise.
    Terry
    You just need to place the jQuery event activator on the h2 tag to achieve that (see code below). 'rel' just allows jQuery to identify which container to activate when an event trigger is clicked.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    .html, body {
        height: 100%;
    #pageWrapper {
    background-color: #F00;
    height: 100%;
    width: 100%;
    #wrapper960 {
    width: 960px;
    background-color: #0F0;
    margin-right: auto;
    margin-left: auto;
    #header {
    background-color: #C9F;
    #footer {
    background-color: #C0F;
    clear:left;
    /*Define Accordion box*/
    .accordian {
    background-color: #CCC;
    overflow: hidden;
    width:930px;
    /*.horizontal section{ width:5%; height:400px;}*/
    .accordian section{
    height:400px;
    .accordion section:hover {background-color:#444;}
    .Menu {
    width: 40px;
    background-color: #06F;
    float: left;
    margin-right: 5px;
    .Menu:hover {
    background-color: #FFF;
    .Menu h2{
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    white-space: nowrap;
    .Menu h2 a{
        text-decoration: none;
    display: block;
    height: 100%;
    .content {
    background-color: #FFF;
    float: left;
    width: 795px;
    height: 400px;
    display: none;
    .active {
    display: block;
    </style>
    <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
    <script>
    $(document).ready(function() {
    $('.Menu').css('cursor', 'pointer');
    $('.Menu').click(function() {
    var selectPanel = $(this).attr('rel');
    $('.active').slideUp(300, function() {
    $(this).removeClass('active');
    $('#'+selectPanel).slideDown(300, function() {
    $(this).addClass('active');
    </script>
    </head>
    <body>
    <div id="pageWrapper">
    <div id="wrapper960">Content for  id "pageWrapper" Goes Here
    <div id="header">This area is reserved for logo</div>
    <div class="accordian horizontal">
    <section class="Menu" rel="documentArea_1">
    <h2><a href="#" >About Us</a></h2>
    </section>
    <section  class="Menu" rel="documentArea_2">
    <h2><a href="#">Our Services</a></h2>
    </section>
    <section class="Menu" rel="documentArea_3">
    <h2><a href="#">Portfolio and Gallery</a></h2>
    </section>
    <div id="documentArea_1" class="content active">
    <h2>About Us</h2>
    </div>
    <div id="documentArea_2" class="content">
    <h2>Our Services</h2>
    </div>
    <div id="documentArea_3" class="content">
    <h2>Portfolio and Gallery</h2>
    </div>
      </div>
    <div id="footer">This area is reserved for footer</div>
      </div>
    </div>
    </body>
    </html>

  • How can I create a call menu on Unity Express?

    Hi everyone...
    Is anybody  know where can I find a tech note for a menu answering option in Unity Express.
    thanks

    Hello Juan
    please refer to this link, let me know if this help
    call-flow section and scrpting through achieve this
    http://www.cisco.com/en/US/products/sw/voicesw/ps5520/products_tech_note09186a008041d950.shtml
    Br,
    Nadeem 
    Please rate all useful post.

  • How can I create tabbed panels using Dreamwaever CC, similar to Spry version available in CS6?

    I used Spry tabbed panels in a site. Need to recreate that page on another site using Dreamweaver CC. CC has no Spry components anymore. Can anyone suggest a 3rd party product or alternative method to make similar panels in a page without having to hand code html-css-java?

    Haven’t begun to try it yet. Looking at some tutorials.
    But I appreciate the heads up.
    Bill Liedlich
    TerraGroup Corporation
    Tactical Water Purification Systems
    Po Box 8839
    Allentown, PA 18105 USA
    p  610-821-7003
    f   610-821-7025
    [email protected]
    [email protected]<mailto:[email protected]>
    www.tacticalwater.com<http://www.tacticalwater.com/>
    CONFIDENTIALITY NOTICE: This electronic mail transmission, its contents and any attachments to it, are privileged and confidential, and/or may contain legally privileged and confidential information and is intended only for the review of the party or parties to whom it is addressed.  Any dissemination, distribution, copying or forwarding of this message, its contents or attachments to other than the intended recipient(s) is strictly prohibited.  If you are not one of the intended recipients, or have received this transmission and its contents in error, please immediately return it to the sender.  Unintended transmission shall not constitute a waiver of any "Confidentiality Notice" privilege.

  • How can I create an internal hyperlink in iWeb? Would like to put an interactive menu at the top of a page.

    How can I create an internal hyperlink in iWeb? Would like to put an interactive menu at the top of a page.

    Do you meant a link to one of your other pages or to a location on one of your pages?  If it's the latter those are called anchors and iWeb does not support them.  However, there are workarounds for that.  See this blog: How to use anchors in iWeb.  If you don't have a lot of widgets on the page it can work fairly well.
    OT

  • How can I create a file brows menu and save option?

    How can I create a file brows menu, if I wont my user to choose a picture from his PC.
    And how can I save my user settings?(this is application going to be only on my users pc)

    You can launch a file selection dialog with FileReference. You can save settings using a SharedObject (like a cookie).
    http://livedocs.adobe.com/flex/3/html/help.html?content=17_Networking_and_communications_7 .html
    http://livedocs.adobe.com/flex/3/html/help.html?content=lsos_3.html
    http://livedocs.adobe.com/flex/3/html/help.html?content=lsos_5.html
    If this is a Flex app, you will only be able to select a file from the local machine and upload to server, you won't be able to open the file in the Flex app, due to security sandbox.
    If this is an AIR app you will not have this restriction.
    If this post answers your question or helps, please mark it as such.

  • How can I create a GIF file ?

    Does anybody know, how can I create a Gif file with LV.
    I had used the print option (Print to HTML file) from LV but I can't use it
    when I
    create an application with appbuilder.
    Does anybody know another way to carry it out?
    Thanks in advance

    You understood me correctly but the properties of the documentation tool
    doesnt exist
    after building the application (Runtime Version). Only the Menu "File /
    Print Window" option is present. Therefor I looked for another way to do it.
    "Dennis Knutson" schrieb im Newsbeitrag
    news:506500000005000000A24C0000-1004225886000@exch​ange.ni.com...
    > I was talking about the properties of the documentation tool which
    > creates an html file and allows for the selection of GIF as an image
    > format. The GIF files are the front panel, diagram, and icon. You
    > didn't specify what you are trying to print but if you need something
    > else, let us know.

  • TS2756 How can i create a new usb connection (service)  on my iMac for sharing internet from my iPhone5 ( i seem have to deleted it )

    How can i create a new usb connection (service)  on my iMac for sharing internet from my iPhone5 ( i seem have to deleted it )
    i know its not a problem whit my carrier o data plan or sharing preferences on the ipone because when i use it un my laptop it works perfectly through
    the usb and even works on the Imac through wifi and bluethood tethering but NOT through usb!!.
    the problem is that trying to make it work i deleted the "profile" usb iphone on the network prefereces panel. Now i only have 3 options: ethernet / wifi / bluetooth
    but not the usb iPhone i used to have.
    And when i try to add a new one i dont get a USB option.
    can some one help me please??
    this is how it looks (after the bluetooth PAN i used to have USB iPhone option)

    The question would be more appropriate in the Mac forums as it is not really related to the iPhone.

  • How can I create a toolbar

    How can I create a tool bar with a functions defined by the user .? For example on the case of explorer on windows there exists a tool bar which can capable to opt tools which been pre determined .How can this be make possible in my application using Labview ?

    Well, a pop up menu is not like a tool bar, but you can find one example here.
    In general, if you want the menu to open more screens, you will need to create and call those as subVIs.
    If this still doesn't help you, I suggest you explain your problem in more detail, and maybe post a screenshot of the what you want to get (no BMPs, please).
    To learn more about LabVIEW, I suggest you try searching this site and google for LabVIEW tutorials. Here and here are a couple you can start with. You can also contact your local NI office and join one of their courses.
    In addition, I suggest you read the LabVIEW style guide and the LabVIEW user manual (Help>>Search the LabVIEW Bookshelf).
    Try to take over the world!

  • How can I create an icloud account on my PC?

    I have windows 7 and itunes 10.5 and have downloaded and installed the icloud control panel.  When I try to sign in, I get a message that my apple ID is valid, but is not am icloud ID.

    lunarplexus wrote:
    how can i create my iCloud account on my Windows PC
    It is not possible to create an iCloud account from a PC.
    Creating an iCloud account FAQ:
    http://support.apple.com/kb/HT4436

  • How can i create a new Adminstrator user account ?

    How can i create a new Adminstrator user account ?

    Go to the System Preferences>Users.
    Click the lock if and enter your password, if necessary.
    Then click on the "+" symbol below the accounts list.
    From the "New Account" menu, select"Administrator" and fill in the rest of the information.
    And finally click the "Create Account" button.
    Done. A new Administrator user account.

  • How can i create a new password?

    I forgot my password, how can i create a new one?

    On Lion or Mountain Lion, you use the following technique to reset the Administrators password:
    Boot to your Recovery Partition, by holding down the Option key while starting, and then selecting the Recovery HD as the boot choice.
    Once booted, at the top of the screen is a menu ..., select Utilities / Terminal from the menu bar.
    In the Terminal window, type “resetpassword” (without the quotes) and press return. A “Reset Password” window will open. Select your boot volume (your SSD drive) if it is not already selected. Select your administrators username from the menu labeled “Select the user account” if it is not already selected. Follow the prompts to reset the password. Restart the computer from the apple menu.

  • How can I create a new folder in Word for Mac ?

    How can I create a new folder in Word for Mac?

    You don't do this in Word. You do it in the OS X Finder.
    All you need do in Word is open the file, then select Save As from Word's File menu. Change the destination to your new folder then click on the Save button.
    The Finder method is much faster if you have a number of files you want to move. Just remember that to open those moved files in Word, you will have to change the directory from which you will open those files.

  • How can I create a new folder in an external disk that is connected via USB to my Mac?

    How can I create a new folder in an external disk that is connected via USB to my Mac?

    Just like you would create a new folder anywhere. Open the drive's icon from your desktop or the Finder, and click shift-command-N. (Or use the Finder menu if you prefer - File - New Folder).
    If you can't create a folder, your drive may be the wrong format (you can't write to a Windows/NTFS formatted drive, for example). You'll have to back up any files you have on there, and then use Disk Utility to reformat it to Mac Extended (if it will only be used on a Mac) or MS-DOS format (if you want to share it with a PC).
    Matt

Maybe you are looking for

  • I have PROBLEM!! My windows XP doesn´t show my Ipod Shuffle (2.gen) ...

    My USBs are ok.. But when i connect IPOD to PC, it´s doing nothing.. I can´t see my IPOD in Itunes, i don´t know what to do.. Please, help me.. It´s the problem with dock station ?

  • How to run windows from an external usb drive

    Hi, I've just install windows using bootcamp. after that i restore that windows installed bootcamp volume to an GUID partitioned external HDD. Now it is shown in startup disc, but when i select that (external HDD) volume it is unable to start. I don'

  • Setting up bank charges in the DME file

    Hi, Our client had made a payment run in APP and later got a statement from the bank in which the "Bank Charges" field was mentioned as :Shared" (i.e. bank charges shared by both the client and their vendor). However the client says that the charges

  • What is the best iPod for me?

    I have an iPod Touch 4th Generation and when iTunes stops covering it, I want to get a new device for music. I really don't play games on it, but I need something that has a lot of storage for my music, has good sound, and fairly inexpensive. I was l

  • UNIX script inline stored procdure with BEGIN & END ?

    Hello, is there a way to create an "inline" stored procedure similar to the way this sql is being implemented? #!/bin/ksh sqlplus -s > junk1 /nolog <<EOF connect uid/pass@tdb column num_rows 9999 select count(*) from add_pool_summary; exit num_rows E