Doubt using thr Read Tag .vi

I,m having some difficulty trying to understand the following:
The manuals I´ve read tell that to use the Read Tag.vi it´s not necessary to previously start the Tag Engine using the Engine Launch.vi.
But, when I try to read the value of a discrete tag using the Read Tag.vi, the error output turns on. Because of this I decided to start the Tag Engine usung the Engine Launch.vi before reading the tag but, to my dismay, the error persisted.
Seeing this happen make me start to think that the problem was that the engine hasn´t yet initialized when the Read Tag.vi ran; so, I decided to wait an certain amount of time - in this case, 4000 ms would suffice - before reading the tag value and, with this, no error occurred. Could anyone pelease
tell me if my assumption is correct ? If not, why is this happening ?
PS :
It´s necessary to wait the time interval just the first time the tag is read. Afterward, no errors occur.

Hi Giovani,
I believe you are correct in your work so far.
The tag engine takes some time to start. I seem to remeber an applicatin with 6000 tags taking a minute or more to start up.
You can use the "Get Engine Status.vi" to determine when the engine is up and running. This will work more reliably that a fixed wait time.
So,
You are correct!
Ben
Ben Rayner
I am currently active on.. MainStream Preppers
Rayner's Ridge is under construction

Similar Messages

  • "Read Tag" to slow

    Hi...
    I'm using the "Read Tag.vi" from the DSC module to read the tag from an OPC server.
    The "Read Tag.vi" is placed in a loop so it should run al the time and i think a have managed to set the deadband for the tag to 0 in the "Tag configuration editor". The tag is a value from 0 to 32000, and i'm measuring a temperature, so the measuring changes all the time. 
    The problem is that it is not reading the tag unless the tag value changes a specific amount. I thought that it was the deadband, but it's not it. When i use another client it works fine and it update all the time.
    Thanks.
    Carsten Toft
    Aalborg University Esbjerg, DK
    Message Edited by Toft on 11-10-2005 12:13 PM

    There is a deadband in two places. One for the tag and one for the I/O group. Double click on a tag. Go to the Connection tab. Press the Edit button under the I/O group name. Set the deadband value on the popup window to 0.

  • How to use the HTML tags in the reports.

    hi.
    can any one tell me how to use the HTML tags in the reports.
    i m using the forms 10 g rel 2 and reports 10 g rel 2 and application server 10g rel 2.

    Set the Contains HTML Tags property of an object to Yes, then the tags in the object's text (if any) will be used to format the object.

  • 500 error while trying to access a jsp which makes use of tiles tags

    Hi all,
    when im trying to access a jsp which makes use of tiles tags, im getting the following error.
    status 500:
    org.apache.jasper.JasperException: The absolute uri: http://struts.apache.org/tags-tiles cannot be resolved in either web.xml or the jar files deployed with this application
    what might be the problem?
    Thanks in advance.

    Hi all,
    sorry...got the reason for the above error..missed to include the tld file in WEB-INF.

  • How to use logic:present tag in struts el tag

    Hi
    I am trying to use struts el tags in the jsp page.I am struggling with the following exception: Cannot find bean: "result" in any scope.I couldn't understand why this error is coming even i had the property "result" in my ActionForm.
    ActionForm:
    package com.finocus.cam.struts.bean;
    import java.util.List;
    import javax.servlet.http.HttpServletRequest;
    import org.apache.struts.action.ActionError;
    import org.apache.struts.action.ActionErrors;
    import org.apache.struts.action.ActionMapping;
    import com.finocus.cam.common.ValidateFormat;
    public class DetailsForm extends org.apache.struts.action.ActionForm {
         private final static String LOG_TAG = DetailsForm.class.getName() + ".";
         private static final long serialVersionUID = 1L;
         // VARIABLES DECLARATION
         private String name = null;
         private String searchField = null;
         private String searchCriteria = null;
         private String phonenumber = "";
         private String email = "";
         private List results = null;
         private String adminUserName = "";
         private String adminUserEmail = "";
         public DetailsForm() {
         // GETTER AND SETTER METHODS
         public String getName() {
              return name;
         public void setName(String name) {
              this.name = name;
         public String getSearchCriteria() {
              return searchCriteria;
         public void setSearchCriteria(String searchCriteria) {
              this.searchCriteria = searchCriteria;
         public String getSearchField() {
              return searchField;
         public void setSearchField(String searchField) {
              this.searchField = searchField;
         public String getEmail() {
              return email;
         public void setEmail(String email) {
              this.email = email;
         public List getResults() {
              return results;
         public void setResults(List results) {
              this.results = results;
         public String getPhonenumber() {
              return phonenumber;
         public void setPhonenumber(String phonenumber) {
              this.phonenumber = phonenumber;
         public String getAdminUserEmail() {
              return adminUserEmail;
         public void setAdminUserEmail(String adminUserEmail) {
              this.adminUserEmail = adminUserEmail;
         public String getAdminUserName() {
              return adminUserName;
         public void setAdminUserName(String adminUserName) {
              this.adminUserName = adminUserName;
         // DUMPING THE VALUES IN THE CONSOLE
         public void dumpValues() {
              StringBuffer sb = new StringBuffer();
              sb.append("Name'");
              sb.append(name);
              sb.append("SearchField");
              sb.append(searchField);
              sb.append("searchCriteria");
              sb.append(searchCriteria);
              sb.append("'");
              sb.append(" ");
              System.out.println(sb.toString());
         // RESET() METHOD IS USED FOR STORE FORM'S CURRENT VARIABLES DECLARATION
         public void reset(ActionMapping actionMapping, HttpServletRequest request) {
              System.out.println("reset() method is called");
              this.email = null;
              this.searchCriteria = null;
              this.searchField = null;
              this.results = null;
         // VALIDATE() METHOD IS USED TO VALIDATE THE FORM DATA
         public ActionErrors validate(ActionMapping actionMapping,
                   HttpServletRequest request) {
              ActionErrors errors = new ActionErrors();
              System.out.println("Validate()is called");
              // Determine if name has been entered.
              if (getName() == null || getName().length() == 0
                        || getName().equals(" ")) {
                   errors.add("accountText", new ActionError("searchText.error"));
              } else if ((getSearchField().equals("name") == true)
                        && (ValidateFormat.isValidText(getName()) == false)) {
                   errors.add("validAccountName", new ActionError("validName.error"));
              if (getSearchField() == null || getSearchField().length() == 0) {
                   errors.add("accountSearchField", new ActionError(
                             "searchField.error"));
              } else if ((getSearchField().equals("email") == true)
                        && (ValidateFormat.isValidEmail(getName()) == false)) {
                   errors
                             .add("validAccountEmail", new ActionError(
                                       "validEmail.error"));
              } else if ((getSearchField().equals("phonenumber") == true)
                        && (ValidateFormat.isValidPhoneNoFormat(getName()) == false)) {
                   errors.add("validPhoneFormat", new ActionError(
                             "validPhoneFormat.error"));
              if ((getSearchField().equals("searchallfields"))
                        && ((ValidateFormat.isValidText(getName()) == false)
                                  && (ValidateFormat.isValidEmail(getName()) == false) && (ValidateFormat
                                  .isValidPhoneNoFormat(getName()) == false))) {
                   errors.add("validNameEmail",
                             new ActionError("validNameEmail.error"));
              return errors;
    Action class:
    package com.finocus.cam.struts.action;
    import java.util.ArrayList;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    import javax.servlet.http.HttpSession;
    import org.apache.struts.action.ActionForm;
    import org.apache.struts.action.ActionForward;
    import org.apache.struts.action.ActionMapping;
    import com.finocus.cam.db.CAMDbAccess;
    import com.finocus.cam.struts.bean.DetailsForm;
    public class DetailsAction extends org.apache.struts.action.Action implements
              com.finocus.cam.common.CAMConstants {
         private final static String LOG_TAG = DetailsAction.class.getName() + ".";
         // Global Forwards
         public static final String GLOBAL_FORWARD_search = "login";
         // Local Forwards
         public static final String SUCCESS_search = "success";
         private boolean dumpRequestParams = true;
         public DetailsAction() {
         public ActionForward execute(ActionMapping mapping, ActionForm form,
                   HttpServletRequest request, HttpServletResponse response)
                   throws Exception {
              System.out.println("SearchAccount execute() is called");
              HttpSession session = request.getSession(true);
              ArrayList results = null;
              DetailsForm search = (DetailsForm) form;
              String name = search.getName();
              String searchField = search.getSearchField();
              String searchCriteria = search.getSearchCriteria();
              // Dumping the values of input patameters
              if (dumpRequestParams == true) {
                   request.setAttribute("SearchCriteria", searchCriteria);
                   request.setAttribute("SearchField", searchField);
                   request.setAttribute("Text", name);
                   search.dumpValues();
              // Perform search based on what criteria and search Field was entered.
              CAMDbAccess dbAccess = CAMDbAccess.getInstance();
              if (null != searchCriteria && searchField != null) {
                   System.out.println("Search Criteria =" + searchCriteria
                             + "Selected Option =" + searchField);
                   if (searchCriteria.equals(Search_Account) && searchField != null) {
                        results = dbAccess.searchByAccountInfo(name, searchCriteria,
                                  searchField);
                        System.out.println(" Search criteria :Exact Match was selected.<BR>");
              // Place search results in SearchForm for access by JSP.
              search.setResults(results);
              // Forward control to this Action's input page.
              return mapping.findForward(SUCCESS_search);
    My jsp page:
    <%@ taglib uri="/WEB-INF/tld/struts-bean" prefix="bean" %>
    <%@ taglib prefix="logic" uri="http://struts.apache.org/tags-logic-el" %>
    <%@ taglib uri="/WEB-INF/tld/struts-html" prefix="html" %>
    <html:html>
    <head>
    <title>Search Page</title>
    </head>
    <body colorants="LightGreen">
         <table width="100%" bgcolor="LightGreen">
              <tr>
                   <td align="left"><font color="brown"><h3><b>Search Info</b></h3></font><hr></td>
              </tr>
                   <tr>
              <td align="left"><h4><font color="brown"><b>Search Text:</b></font><%=request.getAttribute("Text")%></h4></td>
                   </tr><tr>
              <td align="left"><h4><font color="brown"><b>Search Field:</b></font><%=request.getAttribute("SearchField")%></h4></td>
              </tr><tr>
                   <td align="left"><h4><font color="brown"><b>Search Criteria:</b></font><%=request.getAttribute("SearchCriteria")%></h4></td>
                   </tr><tr>
                   <html:form action="/results.do">
                        <td><center><html:submit value="AllSearchOptions " /></center></td>
                        </html:form>
                   </tr>
              <tr>
                   <td align="left"><font color="brown"><hr><h2><b>Search Results</b></h2></font></td>
              </tr>
              <tr>
              <td>
              <table border="1" cellspacing="1" cellpadding="3" width="70%"
                   bgcolor="white">
                   <logic:present name="searchbyaccount" property="results">
                   Results exists
                        <c:if test="${size==0 }">
                   <center><font color="red"><b>No Results Found</b></font></center>
                   </c:if>
                   <br>
                        <c:if test="${size>0}">
                        Size is greater than ZERO
                             <table border="1" cellspacing="1" cellpadding="3" width="70%"
                                  bgcolor="white">
                                  <tr>
                                      <th>Customerid</th>
                                       <th>First Name</th>
                                       <th>Last Name</th>
                                       <th>Email</th>
                                       <th>phone Number</th>
                                       <th>Details</th>
                                  </tr>
                                       <c:forEach var="result" items="${results}">
                                        <c:out value="${result}"/>
                                       <tr>
                                            <td><bean:write name="result" property="customerid"></bean:write></td>
                                            <td><bean:write name="result"
                                                 property="accountAdminFirstName"></bean:write></td>
                                            <td><bean:write name="result"
                                                 property="accountAdminLastName" /></td>
                                            <td><bean:write name="result" property="accountability" /></td>
                                            <td><bean:write name="result" property="accountAdminPhone" /></td>
                                            <td><html:form action="/accountDetails.do">
                                                      <html:submit value="Details" />
                                            </html:form></td>
                                       </tr>
                                  </c:forEach>
                             </table>
                        </c:if>
              </logic:present>
              </table>
              </td>
              </tr>
         </table>
    </body>
    </html:html> Please refer me where i done a mistake.Thanks in Advance

    hi all,
    I am doing programs in sturts. My program
    My program purpose is to retrieve data from the
    database.My database is MySql. I know that we can
    write connection code in Action Class, it is ok for
    some less prog's if i want to use the sane connection
    code in more Action Classes it is vasting time and
    so.I don't think it's a good idea to put database code in Action classes. (That's one of the biggest drawbacks of Struts - it's completely tied to Actions, HTTP, and the Web.) Better to move that code into plain old Java objects and let the Actions call them.
    You'll be able to test them without the container or Struts, and you'll be able to reuse those objects in other, non-Web contexts.
    So i want to use <data-sources> tag that is available
    in struts-config.xml. I know that thre is tag withThis is the wrong place to configure a connection pool, too. Struts should have nothing to do with it. What if you change Web frameworks to WebWork or Spring? The connection pool should be configured in the container that hosts your app, not Struts.
    this name, but the problem is i don't know how to use
    this tag. If any budy know how to use this please
    tell me the syntax or any example.
    plese... reply soon..Don't do it. Think about doing it in your container, not Struts.
    %

  • How to use my own tag in XMP

    I have translated HTML to PDF. It is working properly if I use only DC Metadata.
    But if I write other tag in XMP and load this file in PDF, I cannot see right information.
    I want to use my own tag such as "co-author" and "related paper".
    I define this kinds of tags as namespace and XML Schema.
    Then I want to use this tag in PDF. But I don't know how to do after this.
    How can I do? How can I use my own tag(element or attribute) in XMP?
    Actually I don't have much experience to deal with XMP.
    please help.

    Will you clarify where you are looking for your custom information.
    It should display in Acrobat.
    Acrobat 7 File menu > Document Properties... > Additional Metadata... > Advanced > {list of namespaces}
    Your tags should appear under the namespace you used.

  • Problem in Iterating using logic:iterate tag

    Hi ,
    I am using <logic:iterate> tag to iterate through a list of contents.
    When the List size is 1222, all the Contents in the List are displaying properly.
    When the size execdes 1223, the JSP is not displaying properly.
    I am not getting any exception also.
    I have added try and catch. Still it is not showing any exception.
    When the size is more than 1300, Some contents are not displaying in JSP.
    Can any one provide some inputs, so that I can crack my issue.
    The JSP code :
              <logic:iterate id="someXXXX" property="someXXX" name="someXXX" indexId="count" scope="request">
              <tr>
    <td><html:text name="someXXXX" property="someXXXX"
                             size="50" maxlength="50" onchange="setDirty()" indexed="true"/> </td>               
    <td height="15" align="center"><html:checkbox property="someXXXX" name="someXXXX" indexed="true" onclick="setCheckboxFlag(this)" />               
                   <td width="4"> </td>               
              </tr>
              <html:hidden property="someXXXX" name="someXXXX" indexed="true" />
              </logic:iterate>
    Thanks,
    RamaKrishna

    get the records and store them in a collection. Store the collection in session. take the first 10 records as a subset and pass it to the iterate tag. use the hidden field to keep the last record number in the jsp. So when you first see the jsp the first 10 records will be shown and when user clicks for next records send the hidden field value to the server and take next 10 records as subset and pass it to iterate tag. This is how you can do this. but if you have thousands of records storing them in the session is not recommended. you can pull them directly from the database.

  • Read Out Loud won't read tags, reads content instead

    Hi,
    I have a PDF generated through a third party library, and it is a tagged PDF (running it in PAC 1.3 and 2.0 says it passes accessibility test) and when I use the Read Out Loud feature on it in Adobe Acrobat Pro XI and Adobe Reader, it ignores all the tags (including any Alternate and Actual text fields) and reads the content of the PDF instead of the tags. It even reads the header and the footer which are marked as Artifacts, which is strange as Artifacts should never be read out loud. When I run NVDA and have it read the PDF, it reads it normally as expected (reads only the tags, and follows the Alternate/Actual text fields).
    http://www.sendspace.com/file/4ouw92
    Here's an example of the file. I would expect the Read Out Loud feature to start with "I don't know", but instead it says DEVELOPMENT (an artifact) and then I D N, then I expect it to get to the last line of text before the footer and then simply continue to the second page, but it will instead read the header and the footer before it moves on to the next page. Any reason why it behaves like this? Why it ignores the tags and why it doesn't ignore the artifacts?
    Thanks,
    Dejan

    Hi "a C student",
    Thank you for your reply.
    In order to make a sample of the pdf I changed actual code to produce the PDF I have linked to in my original post, and I didn't actually check that it passes PAC 1.3 and 2.0, as I simply believed that my code change did exactly the same thing that the production code does. It of course did not, and I gave you a "possessed" PDF Sorry about that. Here is a new sample, this time done a bit better
    http://www.sendspace.com/file/ndajik
    In PAC 1.3 it only warns about bookmarks, in 2.0 it fails the font embedding which should not be an issue and says PDF/UA identifier is not set - this might be the issue, but I do not know how to set it, I understood that all I need is to have the Title, Language and some other metadata fields set for the PDF to be PDF/UA compliant.
    Anyway, I hope this sample works out better for you
    Thanks,
    Dejan

  • How to read tags from pdf to print in different printers (PCL or PS)

    Hello from Spain.. I would apreciate some help who to read tags from pdf to discriminate PDF Production tag for send print PDF to printer job using driver PCL or PS. I get trubles when print PDFs files made by PDFcreator (Ghostscript, intermediate PDF from PS) in PCL job printer. I need to eval tags from PDF for send command line os javascript inside Adobe Acrobat to print in the correct job printer: PCL or PS...
    Thanks.

    As noted you cannot access the "Tag" of a PDF but you can access the meta data of a PDF and one of the items recorded in the meta data is the "producer". This meta data tag is supposed contain the name of the program that produced the PDF. One can access this through the "info" property or the "metadata" property of the doc object.
    var cProducer = this.info.Producer; // get the producer application for this PDF;
    console.show();
    console.clear();
    console.println("This PDF was created by " + cProducer);
    Be aware that the user can easily modify the Producer information with Acrobat, JavaScript, or other application after the PDF has been created.

  • JDev 11, Should we use f:verbatim tag in ADF faces pages?

    When you type something in a facet in a jspx page it automaticaly get into an f:verbatim tag.
    yet in the code it has a warning:
    Using f:verbatium tag can cause undesirable results when used with PPR navigation. For inlining styles or javascript, af:resource should be used instead.
    Also if you use call and return from a dialog page, the page is procken
    [http://adfbugs.blogspot.com/2009/08/returning-from-dialog-to-page-that-has.html]
    Is this a bug? or we should not use f:verbatim?

    You shouldn't be using f:verbatim to just display text on your page instead put the text into one of the output components - such as outputText or the formatted outputText.

  • Hi, I have quick question about use of USEBEAN tag in SP2. When I specify a scope of SESSION for the java bean, it does not keep the values that I set for variable in the bean persistent.Thanks,Sonny

     

    Make sure that your bean is implementing the serializable interface and that
    you are accessing the bean from the session with the same name.
    Bryan
    "Sandeep Suri" <[email protected]> wrote in message
    news:[email protected]..
    Hi, I have quick question about use of USEBEAN tag in SP2. When I
    specify a scope of SESSION for the java bean, it does not keep the
    values that I set for variable in the bean persistent.Thanks,Sonny
    Try our New Web Based Forum at http://softwareforum.sun.com
    Includes Access to our Product Knowledge Base!

  • How to use data-sources tag in struts-config.xml

    hi all,
    I am doing programs in sturts. My program purpose is to retrieve data from the database.My database is MySql. I know that we can write connection code in Action Class, it is ok for some less prog's if i want to use the sane connection code in more Action Classes it is vasting time and so.
    So i want to use <data-sources> tag that is available in struts-config.xml. I know that thre is tag with this name, but the problem is i don't know how to use this tag. If any budy know how to use this please tell me the syntax or any example.
    plese... reply soon..

    hi all,
    I am doing programs in sturts. My program
    My program purpose is to retrieve data from the
    database.My database is MySql. I know that we can
    write connection code in Action Class, it is ok for
    some less prog's if i want to use the sane connection
    code in more Action Classes it is vasting time and
    so.I don't think it's a good idea to put database code in Action classes. (That's one of the biggest drawbacks of Struts - it's completely tied to Actions, HTTP, and the Web.) Better to move that code into plain old Java objects and let the Actions call them.
    You'll be able to test them without the container or Struts, and you'll be able to reuse those objects in other, non-Web contexts.
    So i want to use <data-sources> tag that is available
    in struts-config.xml. I know that thre is tag withThis is the wrong place to configure a connection pool, too. Struts should have nothing to do with it. What if you change Web frameworks to WebWork or Spring? The connection pool should be configured in the container that hosts your app, not Struts.
    this name, but the problem is i don't know how to use
    this tag. If any budy know how to use this please
    tell me the syntax or any example.
    plese... reply soon..Don't do it. Think about doing it in your container, not Struts.
    %

  • ? about persistent indicator and use of nav tag

    Hi,
    I have read Nancy O's informative article on persistent indicators.  I think I have everything almost working.  However, I get some errors when I validate on W3C validation service.
    The errors I get are:
    Line 22, Column 23: document type does not allow element "body" here
        <body class="live">
    Line 23, Column 9: element "nav" undefined
        <nav>
    Line 37, Column 10: end tag for "body" omitted, but OMITTAG NO was specified
        </div>
    You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
    Any thoughts on what I have done wrong.  I have pasted the code for both the page and the relevant include below.  Also, I had two questions about the use of the nav.  What happens to my menu when it is viewed in an older browser that doesn't support nav?  Also, could one have an upper and lower menu bar using the nav tag with different CSS properties?
    Code for the page
    <!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>A Pilot Project - Official Website - Live Page</title>
    <link href='http://fonts.googleapis.com/css?family=Roboto+Slab' rel='stylesheet' type='text/css' />
    <link href="apilotproject.css" rel="stylesheet" type="text/css" />
    <meta name="Description" content="A Pilot Project Official Website Live Page" />
    <meta name="Keywords" content="The Alan Parsons Project, Alan Parsons Project, Pilot, Alan Parsons, David Paton, Ian Bairnson, Eye in the Sky" />
    <style type="text/css">
    body,td,th {
        font-family: "Roboto Slab", serif;
    </style>
    </head>
    <body>
    <div class="container">
      <div class="header">
        <body class="live">
        <nav>
    <!--#include file="bottomnavbarapilotproject.shtml" --></nav>
        <div id="englishlink"> <a href="index.htm"><img src="images/flaggb.png" width="25" height="25" alt="Link to English version of A Pilot Project website" title="English Website" /></a></div>
        <div id="japanlink"> <a href="indexjp.htm"><img src="images/flagjapan.png" width="25" height="25" alt="Japanese" title="Japanese Website" /></a></div>
        <div id="germanylink"> <a href="indexde.htm"><img src="images/flaggermany.png" width="25" height="25" alt="German" title="German Website" /></a></div>
        <div id="francelink"> <a href="index.htm"><img src="images/flagfrance.png" width="25" height="25" alt="French" title="French Website" /></a></div>
        <div id="spainlink"> <a href="index.htm"><img src="images/flagspain.png" width="25" height="25" alt="Spanish" title="Spanish Website"/></a></div>
        <div id="dutchlink"> <a href="indexde.htm"><img src="images/flagdutch.png" width="25" height="25" alt="Dutch" title="Dutch Website"  /></a></div>
        <div id="brazillink"> <a href="youtube.htm"><img src="images/flagbrazil2.png" width="25" height="25" alt="Portuguese" title="Portuguese Website" /></a></div>
        <div id="italylink"> <a href="index.htm"><img src="images/flagitaly.png" width="25" height="25" alt="Italian" title="Italian Website" /></a></div>
        <div id="twitterlink"> <a href="twitter.htm"><img src="images/twittericon.png" width="25" height="25" alt="twitter" title="Pilot on Twitter" /></a></div>
        <div id="facebooklink"> <a href="facebook.htm"><img src="images/facebookicon.png" width="25" height="25" alt="facebook" title="Pilot on Facebook" /></a></div>
        </div>
    <!-- end .header -->
       <div class="content">
    <p>With the reunion of Pilot and the completion of A Pilot Project, the band is now ready and available for world-wide bookings to celebrate its upcoming 40th anniversary.  What can you expect?  Only the best as the original flight crew David Paton (vocals, bass), Ian Bairnson (electric guitar), Stuart Tosh (drums) are joined by live crewmembers Kenny Hutchison (keyboards, vocals), and Calais Brown (guitar, vocals) to play Pilot's classic hits along with selections from A Pilot Project.   Promoters can use the form below to enquire about Pilot's availability. </p>
    <!-- end .content --></div>
    <div class="footer">Copyright 2014 © Pilot &amp; Blue Yonder Media Group<!-- end .footer --></div>
    <!-- end .container --></div>
    </body>
    </html>
    code for include (bottomnavbarapilotproject.shtml)
    <ul>
            <li><a class="home" href="index.htm" title="Link to A Pilot Project Home Page">Home</a></li>
            <li><a class="news" href="news.htm" title="Link to A Pilot Project News Page">News</a></li>
            <li><a class="mp3s" href="mp3s.htm" title="Link to A Pilot Project MP3s Page">MP3s</a></li>
            <li><a class="buycd" href="buycd.htm" title="Link to A Pilot Project Buy CD Page">Buy CD</a></li>
            <li><a class="live" href="live.htm" title="Link to A Pilot Project Live Page">Live</a></li>
            <li><a class="links" href="links.htm" title="Link to A Pilot Project Links Page">Links</a></li>
            <li><a class="contact" href="contact.htm" title="Link to A Pilot Project Contact Page">Contact</a></li>
            <li><a class="mailinglist" href="mailinglist.htm" title="Link to A Pilot Project Mailing LIst Page">Mailing List</a></li>
            <li><a class="thanks" href="thanks.htm" title="Link to A Pilot Project Thanks Page">Thanks</a></li>
          </ul>
    Any help or suggestion would be greatly appreciated.
    Thanks,
    Kirk

    mojokk wrote:
    Regarding my navigation menu bar, I had originally used a  <div id="bottomnavbar"> and then defined in CSS as #bottomnavbar to stylize/format.  However, when was having trouble getting the persistent indicator to work, while discussing this problem another frequent poster told me to not use div for menu bar and instead use nav tag which I did.  However, I still have the concern that folks with older browsers won't be able to view the menu correctly.  From what I have read, I could add the following to the head (after any CSS links) and then the nav menu would be able to be viewed correctly on older browsers.  Am I correct in that assumption?
    <!--[if lt IE 9]>
      <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    Yes, you are correct - the script above makes any html5 tag such as <nav></nav> compatible with IE8 and below. but I personally don't really make much of an effort to support IE8 any longer.
    mojokk wrote:
    if that works, then it sounds as though that would be ok. But I have another page that would have 2 menu bars, one at the top of the header image and one at the bottom head image.  It sounds as though I wouldn't be able to use the nav tag for both since the vertical positioning of the text would be different, so I should go back and use divs for menu bars. Am I correct in this assumption?
    You would give each <nav></nav> a class like:
    <nav class="topNav"></nav>
    <nav class="bottomNav"></nav>
    <nav></nav> is just a container like <div></div> (see below) only with more meaning, ie navigation.
    <div class="topNav"></div>
    <div class="bottomNav"></div>
    Then do as you have always done and style the content in the container/s:
    .topNav {
    .bottomNav {
    mojokk wrote:
    Also, if I have one page with HTML5 audio in it, should it still work in older browsers as long as I have the first four lines suggested above.  The script (based on jquery has a flash back up for older browsers).
    I don't know much about audio, so can't help you out on this one.
    mojokk wrote:
    One other question, in my CSS I have defined my header's position as fixed (position:fixed;) so the content below will scroll up and one will still see header and menu bar.  However, when one scrolls on the page (Iphone) using touch screen, the text content can shift to right or left.  I assume I need to add something to the CSS of .content to prevent it from moving on the horizon.  Thoughts?
    Difficult to say what is happening in this instance - you probably need to upload the page and provide a url so someone can take a look and see if they are seeing what you are seeing.

  • Using the HTML tags in Oracle Alerts

    Hi all,
    Can we use the HTML Tags in Oracle Alerts at Alert Details window in Text(D) Column?
    Please Provide solution to format the data which is sending to Mail from Oracle Alerts.

    What version of ebusiness are you running? You should be able to utilise html tags without an issue in 11i.

  • How to use h:selectOneRadio tag  inside h:dataTable tag

    Hi All,
    Can any one tell me how to use <h:selectOneRadio> tag inside <h:dataTable> tag and how to get selected radio button value in bean ?

    JSF<h:selectOneMenu value="#{myBean.selectedItem}">
        <f:selectItems value="#{myBean.selectItems}" />
    </h:selectOneMenu>MyBeanprivate String selectedItem;
    public String getSelectedItem() {
        return selectedItem;
    public void setSelectedItem(String selectedItem) {
        this.selectedItem = selectedItem;
    public List getSelectItems() {
        List selectItems = new ArrayList();
        selectItems.add(new SelectItem("key1", "value1"));
        selectItems.add(new SelectItem("key2", "value2"));
        selectItems.add(new SelectItem("key3", "value3"));
        return selectItems;
    }String selectedItem should contain the key (key1, key2 or key3) when selected. The values (value1, value2 and value3) are the options as shown in the list.

Maybe you are looking for

  • Multiple file download issues

    Hi All, I have designed an APEX application to download multiple files. I have check box in each row of the file name and a download button. When the users checks set of checkboxes and click on the "Download" Button, i am expecting the marked files t

  • Change the colour of Canvas graphics on runtime

    Hi, can someone tell me hoe to change the colour of canvas graphics like rectangle on runtime, like set_item_property is not working for these items Thanks

  • Is it normal for your download speeds to drop as l...

    I'm getting a range of speeds atm as I'm coming up to my first week. Since Friday it's ranged from 8mbps to 37mbps. Is it normal for it to go as low as 8mbps? Also, my ping has ranged from 18ms to 44ms. Is this also normal?

  • Does anyone know how to fix launching Kuler?

    I cannot launch Kuler in CS6 AI abd PS.  I have spent hours on the phone with Adobe and I am not happy about this.  I am paying for this service and it doesn't work.  How can I get this to work once and for all

  • (Exception has been thrown by the target of an invocation ) in powershell

    Get-allSites : Exception has been thrown by the target of an invocation. At line:170 char:13 + Get-allSites <<<<  | select-object Site_CollectionURL,Site_CreatedOn,SiteName,SBU,Last_ActivityDate,Access_RequestEmail,Primary_Admin,Secondary_Admin,Size_