Navigation Bar Button Control

How can i know which button(available inside the navigationBar like "insert", "delete"....) i was click.
Because i need to make the save button of navigationBar only will appear when i click the insert button. Pls help !!

Did you find answer for this? Have you looked at stadard data loss pop in component controller fo BT.

Similar Messages

  • How can I use my Html/CSS Navigation bar to control an Edge Stage?

    I have an HTML/CSS navigation bar set up in my EDGE created page. The Navbar is not created in edge. I would like to use these buttons to control the stage. 
    Inside the stage the main timeline has labels and stop actions every 1.5 secs to create a horizontally sliding site.
    The labels are as follows: home, work, blog, profile, and contact. I can easily use a symbol created inside edge for example:
    sym.play("home");
    and animate a 6000px width symbol across my 1000px stage in 1000px increments.
    I do not want to use a symbol inside of edge to do this because I cannot create the effect that the html/css navbar has on mouseover inside of edge.
    So I am interested in knowing if I can use this bar to control my main timeline so I don't have to sacrifice design for functionality.
    currently the link list is setup with the standard hyperlink. What code would I use to play the stage on click of the html navbar?
    Many thanks to anyone who can help with this!
    Here is the code for the navbar:
    <div id="menu"><ul class="block-menu">
                        <li><a href="/home" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>
                        <li><a href="/demos" class="three-d">
                                  Work
                                  <span class="three-d-box"><span class="front">Work</span><span class="back">Work</span></span>
                        </a></li>
                        <li><a href="/deals" class="three-d">
                                  Blog
                                  <span class="three-d-box"><span class="front">Blog</span><span class="back">Blog</span></span>
                        </a></li>
                        <li><a href="/about" class="three-d">
                                  Profile
                                  <span class="three-d-box"><span class="front">Profile</span><span class="back">Profile</span></span>
                        </a></li>
            <li><a href="/about" class="three-d">
                                  Contact
                                  <span class="three-d-box"><span class="front">Contact</span><span class="back">Contact</span></span>
                        </a></li>
              </ul>
    <span class="block-menu"></span></div>
    Full HTML:
    <!DOCTYPE html>
    <html>
    <head>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
              <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
              <title>Untitled</title>
    <!--Adobe Edge Runtime-->
        <script type="text/javascript" charset="utf-8" src="workapp_edgePreload.js"></script>
        <style>
            .edgeLoad-EDGE-57204389 { visibility:hidden; }
                  .block-menu {
                                  display: block;
                                  background: #000;
                        .block-menu li {
                                  display: inline-block;
                        .block-menu li a {
                                  color: #fff;
                                  display: block;
                                  text-decoration: none;
                                  font-family: 'Passion One',Arial,sans-serif;
                                  -webkit-font-smoothing: antialiased;
                                  -moz-font-smoothing: antialiased;
                                  font-smoothing: antialiased;
                                  text-transform: uppercase;
                                  overflow: visible;
                                  line-height: 20px;
                                  font-size: 24px;
                                  padding: 15px 10px;
                        /* animation domination */
                        .three-d {
                                  -webkit-perspective: 200px;
                                  -moz-perspective: 200px;
                                  perspective: 200px;
                                  -webkit-transition: all .07s linear;
                                  -moz-transition: all .07s linear;
                                  transition: all .07s linear;
                                  position: relative;
                                  .three-d:not(.active):hover {
                                            cursor: pointer;
                                  .three-d:not(.active):hover .three-d-box,
                                  .three-d:not(.active):focus .three-d-box {
                                            -moz-transform: translateZ(-25px) rotateX(90deg);
                                            -webkit-transform: translateZ(-25px) rotateX(90deg);
                                            -o-transform: translateZ(-25px) rotateX(90deg);
                                            transform: translateZ(-25px) rotateX(90deg);
                        .three-d-box {
                                  -webkit-transition: all .3s ease-out;
                                  -moz-transition: all .3s ease-out;
                                  -ms-transition: all .3s ease-out;
                                  -o-transition: all .3s ease-out;
                                  transition: all .3s ease-out;
                                  -webkit-transform: translatez(-25px);
                                  -moz-transform: translatez(-25px);
                                  -o-transform: translatez(-25px);
                                  transform: translatez(-25px);
                                  -webkit-transform-style: preserve-3d;
                                  -moz-transform-style: preserve-3d;
                                  -ms-transform-style: preserve-3d;
                                  -o-transform-style: preserve-3d;
                                  transform-style: preserve-3d;
                                  pointer-events: none;
                                  position: absolute;
                                  top: 0;
                                  left: 0;
                                  display: block;
                                  width: 100%;
                                  height: 100%;
                        .front {
                                  -webkit-transform: rotatex(0deg) translatez(25px);
                                  -moz-transform: rotatex(0deg) translatez(25px);
                                  -o-transform: rotatex(0deg) translatez(25px);
                                  transform: rotatex(0deg) translatez(25px);
                        .back {
                                  -webkit-transform: rotatex(-90deg) translatez(25px);
                                  -moz-transform: rotatex(-90deg) translatez(25px);
                                  -o-transform: rotatex(-90deg) translatez(25px);
                                  transform: rotatex(-90deg) translatez(25px);
                                  color: #FFE7C4;
                        .front, .back {
                                  display: block;
                                  width: 100%;
                                  height: 100%;
                                  position: absolute;
                                  top: 0;
                                  left: 0;
                                  background: black;
                                  padding: 15px 10px;
                                  color: white;
                                  pointer-events: none;
                                  -moz-box-sizing: border-box;
                                  box-sizing: border-box;
        </style>
    <!--Adobe Edge Runtime End-->
    </head>
    <body>
    <div id="menu"><ul class="block-menu">
                        <li><a href="/home" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>
                        <li><a href="/demos" class="three-d">
                                  Work
                                  <span class="three-d-box"><span class="front">Work</span><span class="back">Work</span></span>
                        </a></li>
                        <li><a href="/deals" class="three-d">
                                  Blog
                                  <span class="three-d-box"><span class="front">Blog</span><span class="back">Blog</span></span>
                        </a></li>
                        <li><a href="/about" class="three-d">
                                  Profile
                                  <span class="three-d-box"><span class="front">Profile</span><span class="back">Profile</span></span>
                        </a></li>
            <li><a href="/about" class="three-d">
                                  Contact
                                  <span class="three-d-box"><span class="front">Contact</span><span class="back">Contact</span></span>
                        </a></li>
              </ul>
    <span class="block-menu"></span></div>
    <div  id="Stage" class="EDGE-57204389">
    </div>
    </body>
    </html>

    I've come across this from the Edge API:
    Edge.getComposition(compId)
    Anyone having trouble with this same issue should try this:
    var targetComp = AdobeEdge.getComposition('TARGETCOMPID');
       targetComp.getStage().play();
    in their trigger or event handler.
    How I got it to work:
    <li><a href="javascript:var targetComp = AdobeEdge.getComposition('EDGE-57204389');
       targetComp.getStage().play();" class="three-d">
                                  Dynamic
                                  <span class="three-d-box"><span class="front">Dynamic</span><span class="back">Artisans</span></span>
                        </a></li>

  • Bad navigation bar buttons/links when viewing in browser

    i've created my own nav bar, but when i view it online, the buttons/links are out of line
    i.e. the page you view has the buttons below or above the horizontal of all the other buttons.
    this looks scruffy!
    everything is kosher when viewed in iWeb. none of the buttons overlap. i'm using standard web fonts (helvetica, courier).
    i'm scratching my head wondering what's gone wrong.

    here's one:
    www.drewpower.com
    i realised, after posting, that the offending button is the page title button you are on.
    e.g. when you're on 'links', the 'links' button is duff.
    my solution? well as they're redundant, i took em out.
    but any feedback would be helpful.
    ta!

  • How do I customize the font in the tooltip hoverbox that shows when over the navigation bar buttons (back, forward,..home, url/site button, google "G" button ?

    I'm doing userchromecss customization of firefox 3.0.19 on slackware linux 12.2 and none of the css lines I've tried would ever change (in size and style) the font inside the hover box. I've tried same css lines on thunderbird and seamonkey and they work, but not on firefox. Here are the css lines I've tride:
    */ set text font of hover box */
    .tooltip:hover {
    font-size: 9pt !important;
    font-family: Tahoma !important;
    Result : no change in tooltip font
    */ set text font of hover box */
    .tooltip {
    font-size: 9pt !important;
    font-family: Tahoma !important;
    Result : no change in tooltip font
    */ set text font of hover box */
    tooltip {
    font-size: 9pt !important;
    font-family: Tahoma !important;
    Result : no change in tooltip font
    ...and more , but still no change in tool tip font.

    The code works for me on Linux for the toolbar buttons and for long lines on chrome pages like about:config<br />
    If it isn't working for you on the toolbars then your Linux distribution may be disabling it somehow.

  • Navigation Bar - links

    I have an application with a button in the navigation bar which opens an URL. In this URL are a number of (3 or 4) user preference values which are derived from tables held within the database.
    Currently I am running an "On Create Session" application process which loads up some hidden fields on page 1 of the app. These are then referenced by a javascript function to link to the dynamically created URL. Within this js function I am using a html_GetElement('P1_PARAM').value to build up the URL string and this works just fine... for page 1.
    I don't want to load up hidden fields on every page to allow the Navigation Bar buttons to work from each page so I guess application level items would be the practical objects to use here.
    The problem I am having then lies in the fact that the application items are not rendered in the html and so therefore are not going to be seen by the html_GetElement() function.
    Can anyone point me in the right direction here.
    Thanks in advance,
    Mike

    Hi Mike,
    I think that the value of any Application Item is rendered.
    1. If you check the session state that item is not shown, but is there.
    I set Page region/Title to “Name   F111_TEST” and it’s there
    2. If you use Debug can see that the value of the Application Item “0.20: ...F111_TEST session state saving same value: Hello Konsta”.
    3. Define an Application Item and do Application Computation on Before Regions for instance. Set Static Assignment 20 for instance. The VAT in Bulgaria is fixed to 20%.
    4. In Page Attributes/HTML Header:
    <script language="JavaScript" type="text/javascript">
    <!--
    function sumVAT(){
    function getVal(item){
    if(document.getElementById(item).value != "")
    return parseFloat(document.getElementById(item).value);
    else
    return 0;
    document.getElementById('P306_VAT').value =
    getVal('P306_SALES_PRICE') * &F101_TEST. / 100;
    //-->
    </script>
    5. You probably have tried getVal(' F101_TEST ') instate &F101_TEST.
    The example above shows that Application Items are rendered and one could use them in JavaScript. I will be happy if you send a complete solution for Navigation bar.
    Good luck
    Konstantin
    [email protected]

  • "Reload current page/Stop loading current page" seems to be missing from Navigation Bar customization. How do I get it back?

    I am loading Firefox on a new computer, and I can't find the Navigation Bar button for "Reload current page/Stop loading current page". Is there any way to get it back as a choice under Navigation Bar customization or to create a new function? CTRL-R used to work for this function, but I'd like to have the button on the Navigation Bar.

    View Page Source has been moved to the "Web Developer" sub-menu. You can use any of the following to View Page Source:
    *CTRL+U
    *Right-click a blank area of the page and choose "View Page Source"
    *Firefox button > Web Developer > View Page Source
    *Using the Menu Bar: Tools > Web Developer > Page Source
    *ALT+T+W, release ALT key, letter O key
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • Bug on Google search shortcut on navigation bar

    Hi,
    There is a bug on that shortcut. When you Slide up from multitasking button(I don't know how it is called) it doesn't show the Google logo on screen and it opens current tasks window and Google search both.
    It works for other navigation bar buttons well.

    Its supposed to work from the center bottom, in other words the home key not other location 
    https://support.google.com/websearch/answer/2819541?hl=en
    Android 4.1+ devices: Touch the Google Search bar at the top of any Home screen. On certain devices, you may be able to swipe your finger up from the bottom of the screen or touch & hold the Home button.
    http://www.google.com/landing/now/#getitandroid
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • Navigation Bar is lost!?!

    Short version: created new website with iWeb08. Published to .mac just fine - links and all. FTP'd and uploaded to webhosting server and navigation bar is gone, all that remains is a bullet point. The hosting company said the custom java links are the problem, but if that is so, why does .mac show my page correctly? I have deleted/uploaded 3 times and checked the /Scripts folder and feed.xml - they are on the host site. Problem is both with Firefox and IE(boo!). Anyone have anything to help? I am a total newbie to this - last apple was a IIe.... and I have never created a site before.

    Nope, that one is completely new to me. I can't seem to find that folder. I don't have Mac Lion so it shouldn't be hidden, but searching for the
    ~/Library/Mozilla/Firefox/Profiles/<profile folder>
    ~/Library/Application Support/Firefox/Profiles/<profile folder>
    doesn't turn anything up, Using the finder doesn't seem to point me to a firefox folder where I can find it. I tried to add an extension so that I may get the folder I get a "The add on could not be downloaded due to a connection failure on addons.moxzilla.org" message. (I don't have any other extensions also.)
    I don't have a customized toolbar, it's just the usual one. I miss having my back and forward buttons lol.
    I've had this happen before but it's always been fixed by checking the navigation bar button. :/

  • Navigation Bar Entry Subtemplate Definition

    Is there a substitution string that represents the link for an Navigation Bar Entry?
    I want to control the display of the entries in the navigation bar. The Navigation Bar SubTemplate Definition and #BAR_BODY# substitution string allow you to control the display of the bar as a whole.
    Entries in the Navigation Bar Entry Subtemplate Definition display correctly for each entry in the Navigation Bar, but unless you can also include the link itself, it is all rather pointless!
    Thanks
    Roger

    Scott
    I want to change the spacing between the navigation bar entries so that instead of looking like:
    Print Logout NavHere NavThere
    they look like (for example):
    Print - Logout - Navhere - Navthere
    I thought I would be able to do this by editing the Page Template. The Page Template definition page contains Subtemplates for Navigation Bar and Navigation Bar entry. Making changes to the Navigation Bar Subtemplate controls the whole bar and would allow, for example:
    < Print Logout Navhere Navthere >
    by setting the Subtemplate to
    < #BAR_BODY# >
    I thought I would be able to achieve what I want by changing the Navigation Bar Entry Subtemplate definition to, for example:
    #BAR_LINK# -
    Unfortunately, I don't know what the correct substitution string is to include the actual link entry in the template. It's not #BAR_LINK#, which I made up.
    If this isn't the purpose of the Navigation Bar Entry Subtemplate definition, what is it for?
    Don't worry about the actual formatting of the link, I just want to know how to wrap some standard HTML around each entry in the Navigation Bar.
    Thanks
    Roger

  • Code for enabling navigation bar

    hi experts
    what are the code to enable navigation bar button like next, last, firts etc.
    thanks
    Regards
    Gorge

    Hi Gorge,
    The navigation elements are menu items,. you have to enable the menu UID in your form and catch the menu events, but don't forget to check for the formtype/formuid of the form where teh menu event occurs (Application.ActiveForm)
    Regards
    Ad

  • Workaround to change lollipop navigation bar?

    I am creating themes with Theme Creator. I realize that it does not support Lollipop yet, and know that it's already in the works and there is no use complaining. However, it is clear that some theme creators have found a way to change the navigation bar buttons. I have installed themes like Clean Foggy and Mad Max on my Z1s with Lollipop and, for better or worse, they change the navigation bar. The is even a line in the permissions list indicating that they do so, complete with a Lollipop icon, so this is clearly a functionality that is available. So if it is not available through Theme Creator, what other program must I download to access it? Must it be changed completely through code as a from-scratch Android app?

    Hi Khaled, Theme-creator-v0_0_3-BETA will not completely support lollipop, Only some features will work. Some colors will not change.It will be supported in next version of theme-creator. Regards,
    Shreyas.

  • Why has the "Reload current page" control been moved to the navigation bar Firefox 29? I would like to be able to place it where I had it in Firefox 28.

    After getting the Firefox 29 download I tried to rearrange my buttons\controls to where I was used to having them in Firefox 28 and prior. I noticed, in particular, that the "Reload current page" control is no longer available to be set in front of the navigation bar where I've had it for years now. The reason I chose Firefox in the first place was because I could customize it to my liking. I know you can simply right click and "Reload" the tab or just get used to going to the end (right side) of the navigation bar but that defeats the purpose completely for me.
    Here's an analogy; Ford decides they will now replace current model cars in the US with British standard style vehicles. Every car sold by Ford will now be right-hand steer. While this may seem like a "no biggy" to some, others, especially those of us who are inclined to drive standard transmission vehicles, may be a bit resistant to that change. Not sure if I successfully made my point or not but hopefully I did.
    Initially I thought I'd start by "Has someone fallen and hit their head?' or "Did Steve Ballmer suddenly take over Mozilla, in particular the build of Firefox 29, because this one smells like a Windows 8 (aka the aroma of a full sewer tank on a hot day)?" It is understood that updates are required and as an IT guy, I've been around for many a faux pas where the kinks just need to be worked out. They happen. Maybe some consideration will be made with Firefox 30 to those of us in the states that are used to left-hand steer vehicles.
    I may be missing something here, and will gladly fall on my sword if that is the case, but there is no indication that I've seen from the Mozilla sight that the "Reload current page" control can be manipulated in any way as of Firefox 29. On the bright side, I now have a good reason to go back and review some of the browsers I discounted back in the day when I decided to go with Firefox.

    As far as I know, [https://addons.mozilla.org/firefox/addon/classicthemerestorer/ the Classic Theme Restorer add-on] is the only way move the Reload button outside the address bar.
    # Install [https://addons.mozilla.org/firefox/addon/classicthemerestorer/ Classic Theme Restorer] and restart Firefox when prompted.
    # Open the Add-ons Manager (Ctrl+Shift+A; Mac: Command+Shift+A), then the Extensions category.
    # Next to Classic Theme Restorer, click the Options button.
    # On the Main tab, make sure "Movable back-forward button" and "Hide urlbars stop & reload buttons" are checked. You might also want to check "Combine stop & reload buttons". Close the options window when done.
    # Right-click an empty area of the tab bar and choose Customize.
    # Drag the Back/Forward, Stop and Reload buttons onto the navigation toolbar.
    # Click the Exit Customize button in the lower right corner when done.
    That being said, I should point out that you can reload pages in other ways.
    * Right-click any tab and choose Reload.
    * Right-click an empty area of the page and choose Reload.
    * Press F5.
    * Press Ctrl+R (Mac: Command+R).

  • Navigation bar two buttons

    I understand that a navigation item can have a left and right button item. But what if I want to add two buttons on the right side by side? It's not segment control, but two buttons instead, is there any easy way to do this?

    I think I can add two buttons to the navigation bar. Now the question is, how do I make them look like the same as the UIBarButtonItem? Those are not inherit from UIView and thus cannot be added as a subview of anything...
    The custom button I created looks a lot different. Any way to make them look similar to UIBarButtonItem?

  • With version 5 of Firefox, if I open more than 1 session, most of the time I cannot see anything in the navigation bar and my back and forward buttons do not work.

    I open 1 session of Firefox 5.0.1 and everything seems to work fine. Then I open a second session of Firefox and most of the time the navigation bar does not show the page that I am on and the back and forward buttons do not work. When this happens, the first session always remains working. I am an internet marketer so I have at least 2 or 3 sessions going at any given time.

    A possible cause is a problem with the file places.sqlite that stores the bookmarks and the history.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • How can I create a navigation bar in the template so I can change the down state of a button on a page made from the template in DW3?

    We're creating pages from a template in DW3. The template includes a header, footer and a navigation bar. We've made the navigation bar an editable region so that we can change the down state of the buttons on pages where it is required. However, when we make a new page from the template and try to change the behaviors of the buttons in the navigation bar it will not allow us to make those changes. 

    Have you considered using CSS styled text/list menus instead of image rollovers.  It isn't hard really and it's actually a much better choice for   web accessibility and for search engines to find and follow your links.   Here are some links to several CSS menu systems you can try:
    CSS Express Drop-Down Menus (tutorial)
    http://www.projectseven.com/tutorials/navigation/auto_hide/
    CSS Tab Designer creates 60+ CSS Styled Button and Tab Menus  (download)
    http://www.highdots.com/css-tab-designer/
    List-O-Rama  (DW Extension)
    http://www.dmxzone.com/go?5618
    CSS  Menu Maker (On-Line Menu Generator)
    http://www.cssmenumaker.com/
    Pop-Menu  Magic2 by PVII (DW extension purchase)
    http://www.projectseven.com/products/menusystems/pmm2/index.htm
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

Maybe you are looking for

  • [SQL Question] ORA-00936: missing expression --- Possible Error on subquery

    I have one query that is basically three subqueries together. If I separate them, they run correctly, but once I put them together I get the Oracle error: ORA-00936: missing expression select associate_id, application_id, entity_id, profile_id, langu

  • Hosting flash lite in windows CE environment

    We want to host an SWF file in a windows CE application created with C++ in Microsoft Visual Stuidio. The application communicate with the hardware and are allready created. Were can I found more information about the Flash ActiveX control for window

  • Reinstall + FrontRow

    Hi, Today I have changed my MacBook Pro Hard Drive, and I made a clean Install of Tiger 10.4.6, with the CD that I had with the machine. The installation finished, I dont find FrontRow and my remote doesn't work... Have you an issue, FrontRow isn't o

  • How to make a T-code to be displayed after starting SAP

    Hi all, plz let me know how to make our own t-code to be displayed after starting SAP screen.

  • Burned DVDs Unable to Play

    Just before Christmas I received a call from the grandson of a lady for whom I did a video. He said the DVD would not play in his DVD player and when he took it to a video production place they told him it was blank. (nitwits. . .it's not blank) Orig