Styling: spacesNavigationPanel region to show currently Active Menu

Hello Friends,
I have a Navigation based on spacesNavigationPanel.regionModel and i have done some styling to it to reduced it's height and background color, highlighted color, but i am not able to show the currently active .... I don't know if i have done it right way or not but my menu is working for height and background and highlighted but i have no idea for currenly active menu... Please any one suggest me .... Below is the code that i used:
.WCSiteTemplateTopNavPanel{
height:24px !important;
background-image:none !important;
.WCSiteTemplateTopNavPanel af|menu{
  height:16px !important;
.WCSiteTemplateTopNavPanel af|menu::bar-item{
height:16px !important;
padding:3px 10px 3px 10px !important;
margin:0px !important;
text-align:center;
.WCSiteTemplateTopNavPanel af|menu::bar-item:highlighted, .WCSiteTemplateTopNavPanel af|menu::bar-item:depressed{
height:16px !important;
background-color:red!important;
}jdev: 11.1.1.6.0
Thanks

BUMPED

Similar Messages

  • Manual menu shows two active menu items on one page

    Hi--I'm having an issue where a manually-created menu shows two active menu items on the same page (as if two pages were active at the same time).
    You can see the issue on my test site here:
    http://teknationnewsite.businesscatalyst.com/telecommunications-services.html
    On the left hand menu, even though only the Telecommunications Services page is active, the menu shows an active state for the menu item below it also. How can I fix this? The states look like they are created correctly in the states panel.
    Thanks,
    Jennifer

    Okay, never mind. I am an idiot. It was a linking issue. I can't figure out how to delete this thread, however, so just please ignore.

  • How can I show an active page on menu?

    I am working in DW CS3 and using a Spry menu and want to be able to show the active page on the menu. Have looked at previous discussions but am still very confused. New to DW and not very code editing proficient. Please help.

    Place the following in the HEAD section of your document
    <script src="SpryAssets/SpryDOMUtils.js" type="text/javascript"></script>
    <script type="text/javascript" language="javascript">
    function InitPage(){
    Spry.$$('#MenuBar1 li').forEach(function(node){
         var a=node.getElementsByTagName("a")[0]; // finds all a elements inside the li, but we only want the first so [0]
         if(a.href == window.location){
              Spry.Utils.addClassName(node,"activeMenuItem");
    Spry.Utils.addLoadListener(InitPage);
    </script>
    <style type="text/css">
    .activeMenuItem {
         background: #F00;
         font-weight: bold;
    </style>
    and make sure that SpryDOMUtils.js is in your SpryAssets folder.
    Ben

  • JavaScript:  How do you pass the currently active doc to a dialog in a menu item?

    I'm using Adobe Acrobat 11.0 Standard on Windows 7, and I'm having trouble with the menu item that I'm creating.  The menu item calls a dialog that prompts the user to select a page in the currently active document.  The problem is, I can't figure out how to pass the currently active document to the dialog.  I scoured the rest of the documentation, did searches on Google and here in the Adobe forums, but haven't turned anything up.  The AcroJS API gives the following solution (found under app/methods/execDialog):
    This function attaches the Doc object to the dialog box, then passes the dialog box to the app.execDialog method. The dialog4 object and this function can be at the document level.
       function dotheDialog(dialog,doc)
            dialog.doc = doc;
            var retn = app.execDialog( dialog )
    Finally, the following script can be executed from a mouse-up action, for example.
        dotheDialog( dialog4, this );
    I did this exact thing, but in the dialog, the value of this.numPages still comes out as undefined, indicating that the current document still hasn't been passed.  My own code looks like this:
      function dotheDialog(dialog, thisDoc){
        dialog.doc = thisDoc;
        var retn = app.execDialog(dialog);
      app.addMenuItem({
        cName: "Test Dialogue Box",
        cParent: "Edit",
        cExec: "dotheDialog(templateDialogue, this);"
    where templateDialogue is the name of my own dialog, rather than dialog4.  I'm not sure what the retn variable that they declare in the documentation is for, but I've tried it with and without that part, and it doesn't seem to make a difference.  Does anyone know how to do this?

    Sorry, here it is.  It's also just a small modification of something directly from the API, which is why it still has the date bit in it.
    var templateDialogue = {
      initialize: function (dialog) {
        // Create a static text containing the current date.
        var todayDate = dialog.store()["date"];
        todayDate = "Date: " + util.printd("mmmm dd, yyyy", new Date());
        dialog.load({ "date": todayDate });
      commit:function (dialog) {    // called when OK pressed
        var results = dialog.store();
        var inBounds = (parseInt(results["tPag"]) < this.numPages);
        if(!inBounds){
          app.alert({
            cMsg: "Please enter a valid number for the page from which to make the template." +
            "\n" + parseInt(results['tPag']) + " = parseInt(results['tPag']) !< this.numPages = " +  // I put this in to see the value of this.numPages,
            this.numPages,                                                                           // and it continues to be undefined.
            cTitle: "Page out of Bounds",
            nIcon: 0, nType: 0
        }else{
          var nButton = app.alert({
            cMsg: "Your template is named " + results["tNam"] + " and is made from page " + results["tPag"],
            cTitle: "javascript",
            nIcon: 3, cType: 0
      description:    {
        name: "Personal Data",    // Dialog box title
        align_children: "align_left",
        width: 350,
        height: 200,
        elements:
            type: "cluster",
            name: "Add a page to this documents templates.",
            align_children: "align_left",
            elements:
                type: "view",
                align_children: "align_row",
                elements:
                    type: "static_text",
                    name: "Template Name: "
                    item_id: "tNam",
                    type: "edit_text",
                    alignment: "align_fill",
                    width: 300,
                    height: 20
                type: "view",
                align_children: "align_row",
                elements:
                    type: "static_text",
                    name: "Generating Page: "
                    item_id: "tPag",
                    type: "edit_text",
                    alignment: "align_fill",
                    width: 300,
                    height: 20
                type: "static_text",
                name: "Date: ",
                char_width: 25,
                item_id: "date"
            alignment: "align_right",
            type: "ok_cancel",
            ok_name: "Ok",
            cancel_name: "Cancel"
    Side Question:  Out of curiosity, how would you abort if the user clicks cancel?  I get the feeling that they don't cover it because it's something you're supposed to already know how to do, but...I don't.  Would you just put whatever action you want to take into an if ( button == "Ok" ) type statement so that cancel does nothing?

  • Active menu moves left on mouseover in IE8

    I am trying to create a vertical dropdown menu. Naturally everything works fine in Firefox, Safri and Chrome. When I mouse over a tab that has submenues the colored bar jumps to the left.
    Second question: When I select a link in the sub-menu it opens in a new tab even thouse I have included target="self" in the URL. Any way to stop this?
    Site is at http://home.comcast.net/~kpickard/liloption/
    Here is the CSS code I am using.
    Any help appreciated.
    /* The outermost container of the Menu Bar, a fixed width box with no margin or padding */
    ul.MenuBarVertical
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 11px;
        cursor: default;
        width: 250px;
        font-family: Arial, Helvetica, sans-serif;
        text-decoration: none;
        visibility: visible;
        z-index: 1000;
        overflow: visible;
        font-weight: normal;
        margin-left: 0px;
        padding-left: 0px;
        height: 17px;
    /* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
    ul.MenuBarActive
        z-index: 0;
        width: 250px;
        visibility: visible;
        overflow: visible;
        height: 17px;
        font-family: Arial, Helvetica, sans-serif;
        font-size: 10pt;
        left: auto;
        position: absolute;
        clear: left;
        float: none;
    /* Menu item containers, position children relative to this container and are same fixed width as parent */
    ul.MenuBarVertical li
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: 250px;
        background-color: #b6aca7;
        padding: 0;
        margin: 0;
        z-index: 1000;
        overflow: visible;
        height: 17px;
    /* Submenus should appear slightly overlapping to the right (95%) and up (-5%) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
    ul.MenuBarVertical ul
        list-style-type: none;
        position: absolute;
        z-index: 1000;
        cursor: default;
        width: 250px;
        left: -1000em;
        top: 0;
        margin: 0% 0% 0 105%;
        padding: 0;
        visibility: visible;
        overflow: visible;
        height: 17px;
    /* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
    ul.MenuBarVertical ul.MenuBarSubmenuVisible
        left: -5px;
        width: 250px;
        background-color: #75995c;
        z-index: 1000;
        overflow: visible;
        visibility: visible;
        height: 17px;
    /* Menu item containers are same fixed width as parent */
    ul.MenuBarVertical ul li
        width: 250px;
        background-color: #75995c;
        visibility: visible;
        z-index: 1000;
        overflow: visible;
        height: 17px;
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Outermost menu container has borders on all sides */
    ul.MenuBarVertical
        width: 250px;
        z-index: 1000;
        overflow: visible;
        visibility: visible;
        height: 17px;
    /* Submenu containers have borders on all sides */
    ul.MenuBarVertical ul
        z-index: 1000;
        overflow: visible;
        visibility: visible;
        width: 180px;
        background-repeat: no-repeat;
        height: 17px;
    /* Menu items are a light gray block with padding and no text decoration */
    ul.MenuBarVertical a
        display: block;
        cursor: pointer;
        color: #000;
        text-decoration: none;
        width: 250px;
        padding-bottom: 0px;
        padding-left: 0px;
        z-index: 1000;
        visibility: visible;
        overflow: visible;
        height: 17px;
        padding-top: 1px;
        font-size: 10pt;
        font-family: Arial, Helvetica, sans-serif;
        background-color: #b6aca7;
        text-indent: 35px;
    /* Menu items that have mouse over or focus have a blue background and white text */
    ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus
        background-color: #b6aca7;
        color: #FFF;
        width: 250px;
        font-weight: bold;
        z-index: 1000;
        visibility: visible;
    /* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
    ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible
        background-color: #75995c;
        color: #FFF;
        overflow: visible;
        z-index: 1000;
        width: 250px;
        height: 17px;
    SUBMENU INDICATION: styles if there is a submenu under a given menu item
    /* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenu
        background-repeat: no-repeat;
        visibility: visible;
        z-index: 1000;
        overflow: visible;
    /* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
    ul.MenuBarVertical a.MenuBarItemSubmenuHover
        background-position: 95% 50%;
        background-repeat: no-repeat;
        visibility: visible;
        overflow: visible;
        z-index: 1000;
        width: 250px;
        right: 100px;
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarVertical iframe
        position: absolute;
        z-index: 1000;
        overflow: visible;
        visibility: visible;
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarVertical li.MenuBarItemIE
            display: inline;
            f\loat: left;
            background: #FFF;

    Welcome to our humbke abode. Because this is your first time here, I shall be gentle.
    Your modified SpryMenuBarVertical.css is a complete mess!
    Please copy and paste this code in a new document ensuring that you use an UNTOUCHED SpryMenuBarVertical.css
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css">
    <style>
    ul.MenuBarVertical, ul.MenuBarVertical li, ul.MenuBarVertical ul, ul.MenuBarVertical ul li {
         width: 250px;
         font-family: Arial, Helvetica, sans-serif;
    ul.MenuBarVertical a {
         background-color: #b6aca7;
         color: #333;
         padding: 0.1em 0.75em;
    ul.MenuBarVertical a:hover, ul.MenuBarVertical a:focus, ul.MenuBarVertical a.MenuBarItemHover, ul.MenuBarVertical a.MenuBarItemSubmenuHover, ul.MenuBarVertical a.MenuBarSubmenuVisible {
         background-color: #75995c;
         color: #FFF;
    ul.MenuBarVertical a.MenuBarItemSubmenu, ul.MenuBarVertical a.MenuBarItemSubmenuHover {
         background-image: none;
    </style>
    </head>
    <body>
    <ul id="MenuBar1" class="MenuBarVertical">
      <li><a href="index.htm">Home</a></li>
      <li><a href="about.htm"  class="MenuBarItemSubmenu">About</a>
        <ul>
          <li><a href="about/filmmakers.htm">- Film Makers</a></li>
          <li><a href="about/csni.htm">- CSNI</a></li>
        </ul>
      </li>
      <li><a href="organize.htm">Organizing a Show</a>      </li>
      <li><a href="schedule.htm">Scheduled showings</a></li>
      <li><a href="sponsor.htm">Sponsorships</a></li>
      <li><a href="endorse.htm">Endorsements</a></li>
      <li><a href="history.htm">History of Laconia State School</a></li>
      <li><a href="media.htm" class="MenuBarItemSubmenu">Media</a>
        <ul>
          <li><a href="trailer1.htm">- Trailer #1</a></li>
          <li><a href="trailer2.htm">- Trailer #2</a></li>
          <li><a href="nr1.htm">- News Release #1</a></li>
          <li><a href="nr2.htm">- News Release #2</a></li>
        </ul>
      </li>
      <li><a href="contact">Contact / Ordering</a></li>
    </ul>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    </html>
    Also notice the modified menu list, I have removed the # which was causing your second problem
    Gramps

  • Applet very slow and shows no activity, but its running

    I have a new applet for the users, but I am reluctant to implement until I get some others opinions. It is very slow (30 - 40 seconds)
    Before it outputs a screen with about 20 lines, it reads 90 different html files. It looks at the forth rec of each to extract a name. It also gets the file size to determine if the record needs to be on the screen.
    Anyway, it does 4 reads on 90 files. = 360 reads. Oops, it also reads and loads a 80 record file at the beginning. So total is 440 reads.
    It takes 30 - 40 seconds. Which is not horrible, but it is not good. What really bothers me is that the applet screen shows no activity. At the bottom is shows "done" and "100%". Task Manager shows no activity. But if you just let it sit there, it will finally fill the screen. Pretty amazing to me. I would much rather see a "progress bar" moving on the bottom like other screens. Actually, a progress bar would solve it, because the users are not in a big hurry anyway.
    I am using "openStream" and "readLine" for the files.
    Any opinions?
    import javax.swing.*;
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;
    import java.io.*;
    import java.util.*;
    public class urlaa extends JApplet
    //zz  implements Runnable, ActionListener
          implements ActionListener
    // zz added
        private JLabel item;
        private JList itemList;
      int par;
      int errorflag = 0 ;
      int orgsize = 14900 ;
      String par1;
      String s;
      String e1;
      String e2;
      String e3;
      String w1;
      String w2;
      String w3;
      String w4;
      int i = 0;
      int len ;
      int size ;
      String stringsize ;
      URLConnection conn ;
      int i2 = 0 ;
      int k = 0;
      int current = 0;
      String s1 ;
      String s6 ;
      String s7 ;
      String s8 ;
      String printline ;
      String pageLink;
      String arr[]  = new String[150] ;
      String arr2[] = new String[150] ;
      String arr3[] = new String[150] ;
      int arr4[] = new int[150] ;
      String inputLine;
      Thread runner;
      public void init()
             String parameter = getParameter("par1");
             if (parameter != null)
                 par = Integer.parseInt(parameter);
             else
                 par = 99;
    // zz         Button goButton = new Button("Go");
    // zz         goButton.addActionListener(this);
    // zz         add(goButton);
    // zz   added
            this.item = new JLabel();
            this.addButton();
            Container container = this.getContentPane();
            this.itemList = this.getList();
            container.add(this.getPanel());
            URL u;
            InputStream wis = null;
            DataInputStream dis;
            int rcnt = 0;
            int rcn2 = 0;
           //    1)  read filelist.txt file
           //         and load into a table.
           //    2)  close the filelist.txt file
           //    3)  Use the tabled file names to
           //         read and see if the bio
           //         has been done
           //  1) Read filelist.txt and load table
            try
            u = new URL("http://www.classof1961.mysite.com/filelist.txt");
            catch (MalformedURLException e)
              errorflag = 1 ;  // set error flag to stop while loops
              e1 = ("FILELIST.TXT MalformedURLException: " + e.getMessage()) ;
            try
                u = new URL("http://www.classof1961.mysite.com/filelist.txt");
                wis = u.openStream();
            catch (IOException ioe)
              errorflag = 1 ;  // set error flag to stop while loops
              e1 = ("FILELIST.TXT IOException : " + ioe.getMessage()) ;
    //      does not work     size = wis.getContentLength() ;
                // Convert the inputStream to a buffered DatainputStream.
                dis = new DataInputStream(new BufferedInputStream(wis));
                // Read 1st record to set up while loop
                   try
                     s1 = dis.readLine() ;  // get 1st rcd
                   catch (IOException ioe)
                     errorflag = 1 ;  // set error flag to stop while loops
                     e3 = ("FILELIST.TXT IOException : " + ioe.getMessage()) ;
                   while (s1 !=  null)
                   {  // load file names loop
                   if (errorflag == 0)
                   {  // if errors
                    arr[i] = s1 ;
                    i++ ;
                    try
                    s1 = dis.readLine() ;
                    catch (IOException ioe)
                      errorflag = 1 ;  // set error flag to stop while loops
                      s1 = null ; // force end of loop
                      e3 = ("load table read failed" + ioe) ;
                    rcnt++ ;
                    if (rcnt > 100)  // test code
                    {                // test code
                      errorflag = 1;
                      s1 = null ;
                      e3 = "Load table is looping!!" ;
                   }  // end of error check loop
                   }  // end of table load loop
               int lasttableentry = i ;  //
                   // CLOSE the filelist.txt file
                   try
                    wis.close();
                   catch (IOException ioe)
                    errorflag = 1 ;  // set error flag to stop while loops
                    e3 = ("close of filelist.txt file failed" + ioe) ;
    //   End of filelist read and load and close
    //      ptr to whats new names in table arr
            i = 0 ;
    //      While more names in table,
    //        Connect and Open file
    //        Read file until 4th rcd (rel 3rd rcd)
    //          if rcd has date, then move it to table
    //          else
    //          bump to next file name
              w1 = arr[i] ;
              w2 = w1.substring(1, 4) ;   // ONLY USED FOR CHK FOR XXXX
    //    ______________  start of major loop  _____________
            boolean morenames = true ;
            while (morenames)
            {  // Name table loop
            if (errorflag == 0)
            {  //if no errors
              try
                u = new URL(w1);
                try
                  URLConnection conn ;
                  conn = u.openConnection();
                  size = conn.getContentLength();
                catch (IOException e)
                  errorflag = 4 ;
                  morenames = false ;
                  e1 = ("file size logic failed " + w1) ;
              catch (MalformedURLException e)
                    errorflag = 1 ;  // set error flag to stop while loops
                    morenames = false ;
                    e1 = ("next whats new url error : " + w1) ;
    // compile error                break ;
              try
                  u   = new URL(w1) ;
                  wis = u.openStream();
              catch (IOException e)
                errorflag = 1 ;  // set error flag to stop while loops
                morenames = false ;
                e2 = ("next whats new open error :  " + w1) ;
    //   compile error            break ;
    //            Convert the inputStream to a buffered DatainputStream.
                  dis = new DataInputStream(new BufferedInputStream(wis));
                if (errorflag == 0)
                {  //if no errors
                       try
    //  does not work                       String s2 = dis.readLine(3) ;
                         s1 = dis.readLine() ;
                         s1 = dis.readLine() ;
                         s1 = dis.readLine() ;
                         s1 = dis.readLine() ;
                       catch (IOException e)
                         errorflag = 1 ;  // set error flag to stop while loops
                         morenames = false ;
                         e2 = "whats new file MalformedURLException: " ;
                       // file is larger than original non-bio file size
                       if (size > orgsize)  //  if file size > original file size
                       String s2a = s1.substring(0, 5);
                       String s3 = "                       " ;
    //                 Only look at title records to get the name
                       if (s2a.equals("<titl"))
                          int k2 = 7 ;
                          int l = k2 + 1 ;
                            while (!s1.substring(k2, l).equals("<"))
                              k2++ ;
                              l++ ;
                          s3 = s1.substring(7, k2) ;
                       else
                          s3 = "               " ;
    //                 s3 now has blanks or the name
                       arr2[k] = w1 ;    // move name into arr2 (link to bio)
                       arr3[k] = s3 ;    // move name into arr3 (bio name)
                       arr4[k] = size ;  // move in file size
                       k++ ;
                       } // end of if length > 36
                } // end of chk for error flag zero (no errors)
                  //  now we have to close this whats new file
                   // CLOSE the current whats new file
                   try
                    wis.close();
                   catch (IOException ioe)
                    errorflag = 1 ;  // set error flag to stop while loops
                    morenames = false ;
                    e3 = ("close of the current whats new file failed" + ioe) ;
                  //  end of the close
              rcn2++ ;
              if (rcn2 > 100)  // test code
              {                // test code
                 errorflag = 2;
                 morenames = false ;
                 e3 = "Searching files is looping!!" ;
              i++ ;           // bump to next whats up name
              w1 = arr[i] ;   // load it into work string
              if (i > lasttableentry)
                morenames = false ;
              } // end of error checking loop
             else
                  morenames = false ;
            } // end major name table loop
                   // CLOSE the last whats new file
                   try
                    wis.close();
                   catch (IOException ioe)
                    errorflag = 1 ;  // set error flag to stop while loops
                    e3 = ("close of last whats new file failed" + ioe) ;
    // end of init
    //     _________________ other methods  ______________________
    // zz added
        private JList getList() {
            // Create a List
            JList tempList = new JList(arr3);
            tempList.setVisibleRowCount(3);
            // Enable single selection
            tempList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
            return tempList;
        private JButton addButton() {
            JButton button = new JButton("Select Item below and click here to go to the bio");
            button.addActionListener(this);
            return button;
        private JPanel getPanel() {
            // set layout to GridLayout 3 rows and 1 columns, no separations
            JPanel panel = new JPanel(new GridLayout(3,1,0,0));
            JScrollPane spane1 = new JScrollPane(this.itemList);
            panel.add(this.addButton());
            panel.add(spane1);
            panel.add(this.item);
    //       panel.add(new JLabel("Example List"));
            return panel;
    //   _______________  actionPerformed method  ____________________
         public void actionPerformed(ActionEvent evt)
           s8 = "actionPerformed";
    // zz added
            String command = evt.getActionCommand();
            // Get the selected value from the list and update the JLabel
            item.setText((String)itemList.getSelectedValue());
    //  try to redirect to selected url
      try
             int idx  = itemList.getSelectedIndex() ;
             String urlvalue = this.arr2[idx] ;
             URL u = new URL(urlvalue);
             this.getAppletContext().showDocument(u, "_self");
         catch(Exception e)
    }

    jagossage wrote:
    But if you just let it sit there, it will finally fill the screen. Pretty amazing to me. The onus is on you, the developer, to decide how to distract your users as they wait for your code to finish. Why should you expect something to do it for you?
    I would much rather see a "progress bar" moving on the bottom like other screens.Ah, I think I see where you're confused. The progress bar and applet loading subtitles, etc are Java's way of presenting the progress of loading the applet. Once it's fully loaded, though (which it is when your code starts running), it hands off control to you. It's in your hands at that point.

  • External Video: Show Current Frame

    This isn't hugely important but since starting with FCP I have wanted to be able to show external video whenever I'm parked on a frame - i.e. not moving video. I often want "All Frames" off because it can choke on the full resolution/framerate I'm trying to assess.
    For the longest time I thought External Video / Show Current Frame was supposed to do this but just wasn't working. It eventually occurred to me that you have to shift-f12 every time you want the output updated.
    Is there a way to tell FCP to "show current frame" whenever I pause playback or step through frames?

    Another strategy is to turn off 'mirror on desktop'. That reduces the processor overhead significantly which is very useful on low power machines yet you get all your images sent to the external monitor.
    The check box can be found in: Menu Bar>Final Cut Pro>Audio/Video Settings> A/V Devices>
    Scrubbing in the Canvas works and the current frame will show up in Canvas when you stop messing around. Canvas is only bypassed when you play the timeline.
    good luck.
    x

  • Write-protect mode is currently active. The editor is now in read-only mode

    How do i get the portal out of write protect mode.   No matter what i change to do, i get the message
    Write-protect mode is currently active. The editor is now in read-only mode.
    this shows up in the log
    10/06/10 16:21:21 -  ERROR: Not deployed. Deploy Service returned ERROR:
                         java.rmi.RemoteException: Cannot deploy application sap.com/com.sap.pct.bi.tct.BI_Administration..
                         Reason: <--Localization failed: ResourceBundle='com.sap.engine.services.deploy.DeployResourceBundle', ID='Exception during
    deploy: Import aborted - write protect mode is active.

    Hi David,
    Do the following steps:
           1.       Start the Visual Administrator .
           2.       Choose Global Configuration   u2192Server  u2192Services u2192com.sap.portal.pcd.gl .
    The properties of the service are displayed:
                                a.      Pcd.Pl.WriteProtectActivated defines whether or not write-protect mode is activated. By default it is set to false .
                                b.      Pcd.Pl.WriteProtectCause  describes the reason that write-protect mode is activated. This information appears in the log files.
           3.       Deactivate write-protect mode by entering false  as the value for Pcd.Pl.WriteProtectActivated .
           4.      C lick Update and then click Save .
    A confirmation dialog box opens.
           5.       To apply the changes to all cluster elements, click Yes .
           6.       To reset the default values, click the Reset Default Global Properties icon .
    This will deactivate the write protect mode.
    Thanks and Regards,
    Syam.

  • "Show Pop-Up Menu" behavior problems

    Greetings—
    The "Show Pop-Up Menu" under Add Behaviors is grayed-out and
    won't allow additional links to be added to the templates. I'm
    currently on DW MX 2004.
    Thank you

    > Does anyone have any suggestions what to do so this
    selection is not
    > grayed
    > out?
    The functionality has been REMOVED as a primary function in
    CS3. It will
    allow you to edit a LEGACY MENU, but not create a new menu
    from scratch.
    This is a good thing. The DW menus were indescribably
    horrible.
    In their place, use the Spry menus, or -
    Check the uberlink and MacFly tutorials at PVII -
    http://www.projectseven.com/
    and the Navbar tutorial/articles at Thierry's place
    http://tjkdesign.com/articles/dropdown/
    Or this one (more recent article):
    http://tjkdesign.com/articles/Pure_CSS_Dropdown_Menus.asp
    Or to get it done fast, go here -
    http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Moni057" <[email protected]> wrote in
    message
    news:f3na5s$9lv$[email protected]..
    >I just got CS3 (and un-installed DW8) and I have learned
    that the "Show
    >Pop-Up
    > Menu" behavior is depreciated. The problem I'm having is
    it is Grayed out
    > (And
    > yes, I made sure I had a 'link' selected when I tried to
    choose this
    > behavior)
    Is there a setting in the Preferences that I missed or is CS3
    just teasing
    > me w/a remembrance of this easy to use pop up menu
    maker? Any help is
    > appreciated :)
    >
    > Thanks,
    > Monica
    >
    > [email protected]
    >
    > ps: I do know about the "Spry assets" but I want to see
    if the above
    > option is
    > possible first. thanx :)
    >

  • How do we know currently active call time in 6680?

    How do we know currently active call time? Whenever we receive or make a call, how can we know the call duration in Nokia 6680?

    Hello!
    Just take a look on page 27 of Manual.
    Recent calls: Connect -> Log -> Recent calls.
    Steps to activate call duration as follows: Connect -> Log -> Options -> Settings -> Show call duration. Select Yes.
    Andrey
    6150, 8310, 2100, 6310, 6310i, 6230, 6600, 6630, 6700, E60, N80, E61, N93
    N95, E61i, E71, E72,8600, 5800, N8

  • Shortcut Remapping: Show Current Song

    I've been able to navigate to the currently paying song just fine. But one of my FAVORITE shortcuts in iTunes is Cmd-L, Show Current Song. It shows me the song that is playing, in whatever venue it is playing it in, be it playlist or album or whatever. As the current Mac shortcut for Focus on the search bar has 2 Keymappings, would it be possible to remap Cmd-L to Show Current Song?

    Updated: 2015-07-23Hello!
    Your idea has been submitted a while ago but unfortunately hasn't gathered enough kudos (25 per year). In order to keep an overview of the active ideas in this forum, we will close this idea for now. However this does not mean that your idea has been declined by Spotify.
    If you still feel strongly about your request, we encourage you to post your idea in a little different form again! Maybe now is the right time to receive the support of our community for your suggestion! ;)
    Do you have any further questions on how the idea exchange is managed? Just click here!

  • Error code: the tag "img" doesn't have an attribute: "onload" in currently active versions.

    I'm having trouble creating new pages from a template all of a sudden. It's giving me the error code listed above. Any ideas?

    Seems like you are using the dreaded DW pop-up menus. They
    flunk big time
    in many ways. Please read this -
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    There are much better ways. Check the uberlink and MacFly
    tutorials at
    PVII -
    http://www.projectseven.com/
    and the Navbar tutorial/articles at Thierry's place
    http://tjkdesign.com/articles/dropdown/
    Or this one (more recent article):
    http://tjkdesign.com/articles/Pure_CSS_Dropdown_Menus.asp
    Or to get it done fast, go here -
    http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "lucille4" <[email protected]> wrote in
    message
    news:ghc6gm$gs$[email protected]..
    > Using Dreamweaver to build a nav bar, the program adds
    an onload attribute
    > to
    > the img tag which then won't validate.
    > The error is "the tag: img doesn't have an attribute:
    onload in currently
    > active versions". It seems to only insert this code when
    you check the box
    > to
    > show the down image initially. Any thoughts on why it
    does this? You can
    > remove
    > this onload attribute and it still seems to function
    properly.
    >
    > <td><a href="mam_rentals.html" target="_top"
    >
    onClick="MM_nbGroup('down','group1','rentals','b_rentals-sel.gif',1)"
    >
    onMouseOver="MM_nbGroup('over','rentals','b_rentals-over.gif','',1)"
    > onMouseOut="MM_nbGroup('out')"><img
    src="b_rentals-sel.gif" alt="Rentals"
    > name="rentals" border="0"
    >
    onload="MM_nbGroup('init','group1','rentals','b_rentals.gif',1)"></a></td>
    >

  • How to detect what keyboard is currently active on desktop?

    Hi there, I'm working on a virtual keyboard (window with buttons as keys) for my swing application. When I show keyobard window I would like to adjust the layout of my virtual keyboard to system keyboard that is currently active on desktop. But I don't know how to detect what keyboard is currently active. How to detect this? Thank you.

    I answered my own question - see
    http://forums.ni.com/t5/LabVIEW/Loading-and-Running-a-VI-on-a-cRIO-from-a-PC/td-p/796657
    On the Real-Time CompactRIO Properties > VI Server, you must check the box for TCP/IP protocol, which by default is unchecked.
    Also, when you make a Build Specification for a VI and set it to run on startup, you can still enter the VI name (not c:\ni-rt\startup\startup.rtexe) as the VI Path on the Open VI Reference.

  • How do you turn off show current song?

    hi does anyone here know how to turn off "show current song" in the Edit menu?
    its driving me crazy!!
    thanks

    drat ... i should have checked over there anyway.
    hmmmm. i've played with that a bit (now that i've found it), and i'm not sure precisely how to do that, or if it's possible. (other people feel free to leap in at this point.)
    if you're doing a serious information-editing run while you're playing music in the background, you could try this workaround. create a temporary ordinary playlist, and drag in to that the songs that you want to edit info on. do the editing in that playlist. a song change going on in a different playlist (or the main library) won't adjust your view in the playlist that you're working in.
    once you've finished the editing, you could just delete the playlist (or empty the contents of the playlist).

  • I just downloaded the latest version of iTunes on my PC, Window 8 and now it won't recognize my iPhone 4. The device never shows in the menu bar

    I just upgraded to 11.1.4.62 and now my iTunes won't recognize my iPhone 4.  The device never shows in the menu bar

    Hello there.
    The following Knowledge Base article provides some great, in-depth steps for troubleshooting your issue:
    iOS: Device not recognized in iTunes for Windows
    http://support.apple.com/kb/ts1538
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

Maybe you are looking for

  • Upgrading suspect hard drive on SL510. How to do this without install disks ?

    Hi, My SL510 (supplied Fall 2010) has always had problems with HDD. Latest issue took a complete re-image to resolve followed by 0.5 day to restore files from back-up). I no longer have any trust in the HDD, but the rest of the machine works fine.  A

  • Network Setting Changes Since iCloud Switch

    There are changes in Network Prefs since switching over to iCloud. Can someone validate that these are correct? Under the WINS tab, I have: netBios Name: IMAC-B64C2E Workgroup: WORKGROUP Under the Proxies tab I have: Web Proxy (HTTPS) checked? and Us

  • Log files in bdump and udump

    Respected Sir Its very serious because log files in bump and udump are created frequently and they take too much space. The problem is that i am not able to understand or solve these problem.I am pasting few log here. BDUMP-> Dump file h:\oracle\prod

  • Windows 8 PDF Printing

    I cannot print any pdf file using acrobat on my windows 8 HP Envy touchsmart

  • Running query

    Hi all , oracle 11g.2 under OL 5.6 from yesterday i do i delete statemant of 33.000,000 record in my tables i apply it vie crontab and i put log file so i can know th number of records that deleted after commit; but today morning i can't found any th