Links in dynnamic html text not working?...

Hi all
I have a dynamic text field, set to format html.
The link that loads in the dynamic text field is:
<a
href="portfolio_template.php?sec=housing%2F&sub=townhouses%2F&pro=rheingold+gardens%2F&st =2&id=5">Rheingold
Gardens receives 2006 Building Brooklyn Award</a>
It does not work.
If I make a very simple link, like:
<a href="
http://example.com">link</a>
It works.
I have seen in the Flash (MX2004) doc that
"<a href> must be a string, up to 128 characters."
My href string is not longer than 128 chars...
What is wrong?...
seb ( [email protected])
http://webtrans1.com | high-end web
design
Downloads: Slide Show, Directory Browser, Mailing List

Have tried putting
http:// in front of your link?

Similar Messages

  • JSF : Dynamic link generated by commandLink does not work

    In the following code, without <f:verbatim>, it is giving "Duplicate ID in the view" Exception. But with <f:verbatim>, the links generated by commandLink does not work. Please help me to solve this problem.
    Thank you in advance.
    Regards
    Abdul
    <%-- jsf:pagecode language="java" location="/src/pagecode/eservice/DisplayMoreEServices.java" --%><%-- /jsf:pagecode --%>
    <%@ include file="/includes/g_common_include.jsp" %>
    <%@page import="java.util.Map"%>
    <%@page import="bh.com.cio.egov.EGOVConstants"%>
    <%@page import="javax.portlet.PortletSession"%>
    <%@page language="java"%>
    <%
         PortletSession ses = renderRequest.getPortletSession();
         Map eServiceCatMap = (Map) ses.getAttribute(EGOVConstants.REQ_ESERVICE_LIST_BY_CAT);
         renderRequest.setAttribute(EGOVConstants.REQ_ESERVICE_LIST_BY_CAT,eServiceCatMap);
    %>
    <%@page import="bh.com.cio.egov.vo.EServiceVO"%>
    <f:view>
         <script type="text/javascript">          
              function blinkThis(id, color, timeout)
                   var idElem = document.getElementById(id);
                   if(idElem)
                        idElem.getElementsByTagName('span')[0].style.color = color;
                        setTimeout('switchColor(\'' + id + '\', \'#8A7C5B\', ' + timeout + ')', timeout);
              function switchColor(id, color, timeout)
                   var idElem = document.getElementById(id);
                   if(idElem)
                        idElem.getElementsByTagName('span')[0].style.color = color;
                        setTimeout('blinkThis(\'' + id + '\', \'#FF3030\', ' + timeout + ')', timeout);
         </script>
    <f:loadBundle basename="nls.egovresource" var="nls"/>
    <hx:scriptCollector id="scriptCollector1">
         <h:form id="form2">     
    <f:verbatim>
              <div class="header-top">
                   <h:outputText value='#{nls["eservice_label_title"]}'></h:outputText>
              </div>
              <c:forEach items="${requestScope.REQ_ESERVICE_LIST_BY_CAT}" var="categoryVOs" varStatus="catIndex">
                   <table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
                        <tr>
                             <td> </td>
                             <td class="gray1" height="30px">
                                       <c:out value="${categoryVOs.value.category.categoryName}" escapeXml="false"></c:out>
                             </td>                
                        </tr>
                        <tr>
                             <td width="2">
                                  <div align="right">           
                                       <img src='<%= imageRootDir + "dot.png"%>' width="4" height="1" />
                                  </div>
                             </td>
                             <td width="100%" >
                                  <table width="99%" border="0" align="center" cellpadding="0" cellspacing="0">
                                       <c:forEach items="${categoryVOs.value.eservice}" var="service" varStatus="serviceIndex">
                                       <%
                                            EServiceVO serviceObj = (EServiceVO) pageContext.getAttribute("service");
                                            String action = null;
                                            int serviceId= -1;
                                            if(serviceObj!=null)
                                                 action = serviceObj.getServiceAction();
                                                 serviceId = serviceObj.getServiceId();
                                            if(action!=null && action.startsWith("$"))
                                       %>
                                       <c:set var="jstl_to_jsf_serviceName" value="${service.serviceName}" scope="request"/>
                                       <c:set var="jstl_to_jsf_url_en" value="${service.serviceAction}" scope="request"/>
                                       <c:set var="jstl_to_jsf_url_ar" value="${service.serviceActionAr}" scope="request"/>
                                       <tr>
                                            <td height="17">                         
                                                 <table width="100%" border="0" cellspacing="0" cellpadding="0">                              
                                                      <tr>
                                                           <td width="95%" id="extMoreCell_${catIndex.index}_${serviceIndex.index}">                                                                      
                                                                <img src='<%= imageRootDir +"arrow1.png"%>' width="15" height="16" border="0"/>
                                                                <h:commandLink styleClass="links menu-txt" action="#{pc_EServiceView.doExternalLinkAction}">
                                            <h:outputText value="#{jstl_to_jsf_serviceName}" styleClass="menu-txt"/>
                                                 <f:param name="PARAM_ESERVICE_URL_EN" value="#{jstl_to_jsf_url_en}"></f:param>
                                                 <f:param name="PARAM_ESERVICE_URL_AR" value="#{jstl_to_jsf_url_ar}"></f:param>
                                                 <f:param name="JSP_ACTION" value="ACT_EXTERNAL_ESERVICE"></f:param>
                                            </h:commandLink>
                                                           </td>
                                                      </tr>                                             
                                                 </table>
                                                 <script type="text/javascript">
                                                      <c:if test="${service.serviceId eq '53'}">
                                                           blinkThis('extMoreCell_7_3', '#FF3030', 1000);
                                                      </c:if>                                        
                                                      <c:if test="${service.serviceId eq '54'}">
                                                           blinkThis('extMoreCell_7_4', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '55'}">
                                                           blinkThis('extMoreCell_7_5', '#FF3030', 1000);
                                                      </c:if>          
                                                      <c:if test="${service.serviceId eq '56'}">
                                                           blinkThis('extMoreCell_0_8', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '57'}">
                                                           blinkThis('extMoreCell_8_8', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '59'}">
                                                           blinkThis('extMoreCell_1_8', '#FF3030', 1000);
                                                      </c:if>     
                                                      <c:if test="${service.serviceId eq '58'}">
                                                           blinkThis('extMoreCell_5_6', '#FF3030', 1000);
                                                      </c:if>     
                                                           <c:if test="${service.serviceId eq '28'}">
                                                           blinkThis('extMoreCell_1_4', '#FF3030', 1000);
                                                      </c:if>     
                                                           <c:if test="${service.serviceId eq '20'}">
                                                           blinkThis('extMoreCell_5_3', '#FF3030', 1000);
                                                      </c:if>     
                                                           <c:if test="${service.serviceId eq '60'}">
                                                           blinkThis('extMoreCell_7_6', '#FF3030', 1000);
                                                      </c:if>     
                                                 </script>
                                            </td>
                                       </tr>
                                       <tr>
                                            <td bgcolor="#FAF9FA" background='<%= imageRootDir + "line-bg-eservices.png"%>'><img src='<%= imageRootDir +"line-bg-eservices.png"%>' width="2" height="1" border="0"/></td>
                                       </tr>     
                                       <%}
                                       else if(action!=null)
                                       %>                                                                                               
                                       <c:set var="jstl_to_jsf_serviceName" value="${service.serviceName}" scope="request"/>
                                       <wps:urlGeneration contentNode="${service.serviceAction}" allowRelativeURL="false" keepNavigationalState="true">
                                       <%
                                       //String urlC = "http://"+renderRequest.getServerName()+":"+renderRequest.getServerPort()+wpsURL;
                                       String urlC = "" + wpsURL;
                                       %>
                                       <c:set var="url" value="<%=urlC%>" scope="request"/>
                                  </wps:urlGeneration>
                                       <tr>
                                            <td height="17">                         
                                                 <table width="100%" border="0" cellspacing="0" cellpadding="0">
                                                      <tr>
                                                           <td id="intMoreCell_${catIndex.index}_${serviceIndex.index}">
                                                           <img src='<%= imageRootDir +"arrow1.png"%>' width="15" height="16" border="0"/>     
                                                           <hx:outputLinkEx styleClass="links menu-txt" value="#{url}">
                                                                <h:outputText value="#{jstl_to_jsf_serviceName}" styleClass="menu-txt"></h:outputText>
                                                           </hx:outputLinkEx>
                                                           </td>
                                                      </tr>                                                                                                                             
                                                 </table>
                                            </td>
                                       </tr>
                                       <tr>
                                            <td bgcolor="#FAF9FA" background='<%= imageRootDir + "line-bg-eservices.png"%>' ><img src='<%= imageRootDir +"line-bg-eservices.png"%>' width="2" height="1" border="0"/></td>
                                       </tr>     
                                       <%
                                            %>               
                                       </c:forEach>                                             
                                  </table>
                             </td>
                        </tr>
                   </table>                                                                                                                                                                     
              </c:forEach>
              </br>
              <h:messages styleClass="messages" id="messages1"></h:messages>
              </f:verbatim>     
              </h:form>
         </hx:scriptCollector>
    </f:view>

    1) Throw your code away and use h:dataTable instead of c:forEach to render a table of dynamic size.
    or:
    2) Hand-assign every UIInput and UICommand element inside the loop an unique ID. E.g. "commandLinkId" + loopIndex

  • Home button in HTML Help Not Working

    My Home button in HTML Help Not Working.
    Also the Home option from the Options menu does not work. I receive the "This program cannot display the webpage" error.
    I have the correct file name (titlepg.htm) in the Advanced Windows Ptoperties "Default" field and the "Home" field. However, I still receive the "This program cannot display the webpage" error.
    How can I correct this situation? Thanks, your help is appreciated!

    Can you post a couple of screen captures please?
    One where you show the Project Explorer with the desired topic in view. Another where you show the dialog where you specify the Home page destination.
    Another thing you may wish to try is to define a totally new window, assign the values there and ensure you point to the window in the Single Source Layout recipe.
    Oh, and one other thing. Are you using RoboHelp HTML or RoboHelp for Word?
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Variable Text not working as dynamic header in Crystal report

    Dear Experts,
    I'm working Crystal report that connected to Query BEX SAP BW trough SAP integration kit,
    currently i have case that need report dynamic header using variable text from BEX query, but seem the variable text not working in Crystal reports. the header in Crystal report shown as Desription\technical name, not result from the variable text in Query BEX in SAP.
    In https://wiki.sdn.sap.com/wiki/display/BOBJ/Crystal%20Reports%20and%20BW%20query%20elements stated that the "Text variable" with "replacement path" is supported, but i don't know in my query is not working.
    i already set in Database -> options->  table and fields -> Show Both, but the text variable still not working.
    can you help me
    Crystal Reports 2008 12.2.0.290
    SAP Integration KIT 12.1.0.890
    Thanks
    Luqman

    Post your question BEX and B1 and classic SAP data source issues to the Integration Kit forum

  • Command Link in ADF table is not working/ PPR event not getting fired

    Hi All,
    I am having ADF Table, in that one column is with command link if click on command link, it is not navigating to corresponding page or method of a bean. If i give same command link out of the table it working fine, this issue i am facing is in IE9.
    if i use IE in compatibility mode the links works fine, even in IE8 version also.
    Browser: IE 9
    Jdev version: 11.1.1.5.0
    I tried all possible things, but nothing workout for me.
    showPopupBehavior not working in IE9 for af:table buttons (jdev11.1.1.5.0)
    Partial page rendering not working in ie9
    Command Link in ADF table is not working
    Thnks

    Hi,
    please file a bug if you have a customer support contract and provide a testcase
    Frank

  • Link for territory mgmt is not working

    Hi All,
    We have territory management configured for three custom attributes.
    Link for territory management is not working for territory assignment block on account overview screen.
    Any hint how we can solve this issue?
    Thanks and Regards,
    Gauri.

    How are you resetting the password?
    Resetting User Password in Lion, Mountain Lion & Mavericks
    Boot into your Recovery Partition by hold down the Command and R keys whilst booting.
    When the Recovery screen appears, go to the Utilities menu and open Terminal.
    In Terminal, type:
    resetpassword
    ...a small app will open and allow you to choose the user for whom you want to change the password. If you are the admin, be certain that you choose your admin user. Type in your new password twice and give yourself a good hint. Click OK (or Done or whatever) and reboot, enjoying the use of your new, hopefully memorable, password.
    Good luck,
    Clinton

  • Why is predictive text not working on my iPhone 5s anymore

    Why is predictive text not working on my iphone anymore

    Actually, I just found the answer to my issue in this thread: The type correct/predict function for mail and text in iOS 8.0.2 was working fine then suddenly disappeared and reverted to the old style. I've checked all settings that seemed appropriate. How do I restore? I actually liked the new version. 
    Which says "a thin gray bar with a white dash in the middle of it immediately above the keyboard, you can reopen the suggestions by sliding up with one finger on the white dash." 
    That did it.
    I too have noticed a change, it seems with the new IOS update. My Predictive setting is on, but it seems before it would come up more often in predicting words and also give me a few choices. Now, it's not coming up as much and only providing one 'predictive' word which is not always right. This change is not very useful.

  • CSS Button Links in HTML email not working in TB

    Greetings,
    Our company is creating an html email for customers and we are noticing the CSS button links don't work when viewing in Thunderbird 31 and 32 beta.
    Does TB require unique coding to get these to work?
    Any assistance would be appreciated...
    -- Paul

    From the point of view of a user who views received email messages in Thunderbird, it doesn't support scripting. Straight links should work and and you can attach a link to an image.
    Note that Thunderbird does NOT offer active links in the Compose window. So however you create it, you won't see it as the recipient does unless you save it and view it as a draft.

  • Anchor links in HTML newsletters not working in iOS8 and above

    I used to receive daily HTML email newsletters with links anchor down to detailed content. The links were working fine in all the previous versions. After upgrading to iOS 8, the internal hyperlinks (anchor links - both named as well as id) are not working. It takes me to nowhere and shows an error message id. This seems to be very specific with iOS 8 and there is no HTML code support to overcome this issue.
    Can Apple fix this issue at the earliest as it is very difficult to scroll up and down every time to read the contents of the email newletters?

    I used to receive daily HTML email newsletters with links anchor down to detailed content. The links were working fine in all the previous versions. After upgrading to iOS 8, the internal hyperlinks (anchor links - both named as well as id) are not working. It takes me to nowhere and shows an error message id. This seems to be very specific with iOS 8 and there is no HTML code support to overcome this issue.
    Can Apple fix this issue at the earliest as it is very difficult to scroll up and down every time to read the contents of the email newletters?

  • Links in template header to not work when page is in different folder

    Hello
    I have the following problem: In the header of the template, the links of the menu are written absolute not relative, i.e. http://www.nabilvoyage.com/html/tours.html (not ../html/tours.html). This header is embedded in a template. If I use this template for a html page which is not in the same main folder, the links do not work (see:http://www.nabilvoyage.com/swf/gallery1.html). Can someone please help? Thank you very much.
    Sarosa
    The template code is:
    <!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" />
    <META NAME="keywords" CONTENT="Morocco, Transportation, Agency, Transport, Travel, Holiday, Tours, Trips, Morocco Festivals, Morocco Maps, Morocco History, Casablanca, Marrakech, Sahara">
    <META NAME="description" CONTENT="Specialized Moroccan Transport Agency offers a variety of trips all over Morocco, wepages offers, Prices, Information about Moroccan History, Morocco Map, Morocco Festival Calendar etc.">
    <!-- TemplateBeginEditable name="doctitle" -->
    <title>Morocco Ouarzazate Travel Agency - desert trips, excursions</title>
    <!-- TemplateEndEditable -->
    <style type="text/css">
    <!--
    .bottom_padding {
    padding-bottom: 1px;
    .table1bodytoppadding {
    padding-top: 20px;
    body {
    background-color: #D4CBB9;
    table {
    background-position: center;
    .table1body {
    border: 1px solid #857362;
    .headerpicpadding {
    padding-top: 3px;
    .table2insidebody {
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    .celltextpadding {
    padding: 15px;
    .style2 {
    font-size: 10px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: #45392e;
    .style3 {color: #45392e}
    a {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    #mainnav a:link {
    text-decoration: none;
    color: #45392e;
    #mainnav a:visited {
    text-decoration: none;
    color: #45392e;
    #mainnav a:hover {
    text-decoration: none;
    color: #45392e;
    #mainnav a:active {
    text-decoration: none;
    color: #45392e;
    -->
    </style>
    <script src="../scripts/AC_RunActiveContent.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_nbGroup(event, grpName) { //v6.0
      var i,img,nbArr,args=MM_nbGroup.arguments;
      if (event == "init" && args.length > 2) {
        if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
          img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
          if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
          nbArr[nbArr.length] = img;
          for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
            if (!img.MM_up) img.MM_up = img.src;
            img.src = img.MM_dn = args[i+1];
            nbArr[nbArr.length] = img;
      } else if (event == "over") {
        document.MM_nbOver = nbArr = new Array();
        for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
          nbArr[nbArr.length] = img;
      } else if (event == "out" ) {
        for (i=0; i < document.MM_nbOver.length; i++) {
          img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
      } else if (event == "down") {
        nbArr = document[grpName];
        if (nbArr)
          for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
        document[grpName] = nbArr = new Array();
        for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
          nbArr[nbArr.length] = img;
    //-->
    </script>
    <link rel=”shortcut icon” href=”http://www.nabilvoyage.com/favicon.ico” mce_href=”http://www.nabilvoyage.com/favicon.ico”/>
    <!-- TemplateBeginEditable name="head" --><!-- TemplateEndEditable -->
    </head>
    <body onload="MM_preloadImages('../pictures/about_down.jpg','../pictures/about_over.jpg','../pi ctures/tours_down.jpg','../pictures/tours_over.jpg','../pictures/photo_down.jpg','../pictu res/photo_over.jpg','../pictures/morocco_down.jpg','../pictures/morocco_over.jpg','../pict ures/links_down.jpg','../pictures/links_over.jpg','../pictures/contact_down.jpg','../pictu res/contact_over.jpg','../pictures/home_down.jpg','../pictures/home_over.jpg')">
    <table width="878" align="center" cellpadding="0" cellspacing="0" bordercolor="#D4CBB9" class="table1body">
      <tr bgcolor="#D4CBB9">
        <td width="872" height="90"><div align="center"><img src="../pictures/header.jpg" alt="nabil voyage header" width="870" height="90" class="headerpicpadding" /></div></td>
      </tr>
      <tr bgcolor="#D4CBB9">
        <td width="872" height="20"><div align="center">
          <table border="0" cellpadding="0" cellspacing="0">
            <tr>
              <td><table width="870" border="0" cellpadding="0" cellspacing="0">
                <tr>
                  <td><table border="0" align="center" cellpadding="0" cellspacing="0">
                    <tr>
                      <td><a href="http://www.nabilvoyage.com/html/home.html" target="_top" onclick="MM_nbGroup('down','group1','Home','../pictures/home_down.jpg',1)" onmouseover="MM_nbGroup('over','Home','../pictures/home_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="http://www.nabilvoyage.com/pictures/home.jpg" alt="Home button" name="Home" border="0" id="Home" onload="" /></a></td>
                        <td><a href="../../about.html" target="_top" onclick="MM_nbGroup('down','group1','About','../pictures/about_down.jpg',1)" onmouseover="MM_nbGroup('over','About','../pictures/about_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="http://www.nabilvoyage.com/pictures/about.jpg" alt="About button" name="About" border="0" id="About" onload="" /></a></td>
                        <td><a href="http://www.nabilvoyage.com/html/tours.html" target="_top" onclick="MM_nbGroup('down','group1','Tours','../pictures/tours_down.jpg',1)" onmouseover="MM_nbGroup('over','Tours','../pictures/tours_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="http://www.nabilvoyage.com/pictures/tours.jpg" alt="Tours button" name="Tours" border="0" id="Tours" onload="" /></a></td>
                        <td><a href="http://www.nabilvoyage.com/html/galleries.html" target="_top" onclick="MM_nbGroup('down','group1','Photogallery','../pictures/photo_down.jpg',1)" onmouseover="MM_nbGroup('over','Photogallery','../pictures/photo_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="http://www.nabilvoyage.com/pictures/photo.jpg" alt="Photo gallery button" name="Photogallery" border="0" id="Photogallery" onload="" /></a></td>
                        <td><a href="http://www.nabilvoyage.com/html/morocco.html" target="_top" onclick="MM_nbGroup('down','group1','Morocco','../pictures/morocco_down.jpg',1)" onmouseover="MM_nbGroup('over','Morocco','../pictures/morocco_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="http://www.nabilvoyage.com/pictures/morocco.jpg" alt="Morocco button" name="Morocco" border="0" id="Morocco" onload="" /></a></td>
                        <td><a href="http://www.nabilvoyage.com/html/links.html" target="_top" onclick="MM_nbGroup('down','group1','Links','../pictures/links_down.jpg',1)" onmouseover="MM_nbGroup('over','Links','../pictures/links_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="http://www.nabilvoyage.com/pictures/links.jpg" alt="Links button" name="Links" border="0" id="Links" onload="" /></a></td>
                        <td><a href="../html/contact.html" target="_top" onclick="MM_nbGroup('down','group1','Contact','../pictures/contact_down.jpg',1)" onmouseover="MM_nbGroup('over','Contact','../pictures/contact_over.jpg','',1)" onmouseout="MM_nbGroup('out')"><img src="http://www.nabilvoyage.com/pictures/contact.jpg" alt="Contact button" name="Contact" border="0" id="Contact" onload="" /></a></td>
                      </tr>
                    </table>              </td>
                  </tr>
                </table></td>
              </tr>
          </table>
        </div>      <div align="center"></div>     </td>
      </tr>
      <tr bgcolor="#D4CBB9" class="bottom_padding">
        <td height="280" align="center" bgcolor="#D4CBB9"><!-- TemplateBeginEditable name="body1" -->
        <!-- TemplateEndEditable --></td>
      </tr>
      <tr class="bottom_padding">
        <td height="23"><table width="874" border="0" align="center" class="bottom_padding">
            <tr>
              <td height="20" bgcolor="#c0b2a1"><div align="center" class="bottom_padding"></div></td>
            </tr>
        </table></td>
      </tr>
    </table>
    <p align="center"> <span class="style2">© Nabil Voyage 2009 - <a href="http://www.photo-emotions-morocco.com" target="_blank">Realisation Photo Emotions S.A.R.L</a></span><br />
    </p>
    </body>
    </html>

    Only you will know for sure what you are dealing with, but I do not see the same complete url code in the header of the page you say has a problem.  I only see the page filename linked (not http:///www...,  just home.html).  It may be a case of those pages not using the same template.

  • Html snippet not working; created from Taco html edit Component Library

    Ok, I've searched for days on the discussion board for the answer to this one..... hopefully someone can give me a couple of pointers....
    I have a component created from Taco html edit Component Library that I cannot get to work as an inserted snippet into iWeb 3.0.2.
    Why can't I get this to work? I've seen first hand that they work on someone else's website that she constructs in html directly, not using iWeb. Any help greatly appreciated.
    Taco created three files. They are:
    TSWAccordion.css
    TSWDomUtils.js
    TSWAccordion.js
    Here is the code:
    <html>
    <head>
    <title></title>
    <script type="text/javascript" src="Scripts/TSWAccordion.js"></script>
    <script type="text/javascript" src="Scripts/TSWDomUtils.js"></script>
    <link rel="stylesheet" type="text/css" href="Scripts/TSWAccordion.css" />
    <!-- BEGIN COMPONENT Accordion - Taco HTML Edit -->
    <style type="text/css">
    #myAccordion.tswAccordion
    width: 200px;
    height: 400px;
    background-color: #f0f0f0;
    #myAccordion .tswAccordionActiveSection, #myAccordion .tswAccordionInactiveSection
    background-color: #f0f0f0;
    width: 100%;
    height: 400px;
    #myAccordion .tswAccordionHeader
    text-align: center;
    padding: 2px;
    font-family: Verdana;
    font-size: 16.0px;
    #myAccordion .tswAccordionActiveSection .tswAccordionHeader
    background-color: #7086aa;
    color: #ffffff;
    border: 1px solid #cccccc;
    #myAccordion .tswAccordionInactiveSection .tswAccordionHeader
    background-color: #f0f0f0;
    color: #000000;
    border: 1px solid #cccccc;
    #myAccordion .tswAccordionHeader
    #myAccordion .tswAccordionBody
    padding: 5px;
    </style>
    <!-- END COMPONENT Accordion - Taco HTML Edit -->
    </head>
    <body>
    <!-- BEGIN COMPONENT Accordion - Taco HTML Edit -->
    Title 1
    <!--Content for section 1-->
    Title 2
    <!--Content for section 2-->
    Title 3
    <!--Content for section 3-->
    <script type="text/javascript">
    var accordion = tswAccordionGetForId('myAccordion');
    </script>
    <!-- END COMPONENT Accordion - Taco HTML Edit -->
    </body>
    </html>

    You need to upload these three files in a folder to the root folder on your server:
    TSWAccordion.css
    TSWDomUtils.js
    TSWAccordion.js
    The folder cannot be named "Scripts" as shown in your code as you already have one of that name.
    Say it is named "Accordion". You then need to give the absolute URL to these files rather than the relative one shown in the code....
    http://www.yourdomainname.com/Accordion/TSWAccordion.css
    http://www.yourdomainname.com/Accordion/TSWDomUtils.js
    http://www.yourdomainname.com/Accordion/TSWAccordion.js

  • HTML file not working ..!

    Okay so i`ve created a website on flash mx , converted it into html .. uploaded on domain on member.webs.com.. here is the link of file nawazbaig.webs.com/website2.html .. it shows up the blank page . ? it is running perfectly fine on my computer.. but on domain it is not working.. here is the code of html
    <!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" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>website2</title>
    </head>
    <body bgcolor="#ffffff">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="100%" height="100%" id="website2" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="movie" value="website2.swf" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#ffffff" />
    <PARAM NAME="SCALE" VALUE="exactfit">
    <embed src="website2.swf" quality="high" bgcolor="#ffffff" width="100%" height="100%" name="website2" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"SCALE="exactfit" pluginspage="http://www.macromedia.com/go/getflashplayer" />
    </object>
    </body>
    </html>
    "  I would really appreciate your comment on this problem..!

    relaxatraja may be right, it could just be your path which is wrong.....
    But you are already using a "relative" path... so that can stay the same... it just might be the wrong one.
    From an old article on pathing:
    Pathing issues
    Almost always when it works on the local machine and not the server, it's a pathing problem.
    You can put your Flash related files in whatever folders you want, they do NOT have to be in the root, they do NOT all have to be in the same folder. But if you have a problem and if sticking them all in the root folder works, then you know that the issue was a pathing problem.
    Just remember that paths used in the .swf become relative to the Web page on which the .swf is placed, NOT it’s physical location.  So for example, if your .swf is in the flash/data folder and you use that .swf on a Web page in the root folder, you are in effect, removing that .swf from flash/data and putting it in root. So if the .swf is loading any related files (xml, images, video, etc), the path used inside the .swf to load the .xml file has to be relative to it's new location in root and then back down into flash/data. This is true even though when testing the .swf by itself, it can be inside flash/data and work just fine, since relative to it's location, the path is just fine, they are in the same folder. But if that same path is used when the .swf is placed on a page two folder levels up, the relative path has changed, the old "same folder" path will not work.
    In fact if you are placing the .swf on a web page in a different folder than the .swf is stored in, and that .swf calls external assets, then direct clicking and opening of the .swf in it’s folder should NOT work! That’s because the paths to the external assets should be relative to the Web page and not the physical location of the .swf.
    So just be sure that you use addresses relative to the final Web page locations (not physical file locations) and you can put the Flash related files in what ever folders you want.
    Best wishes,
    Eye for Video
    www.cidigitalmedia.com
    Best wishes,
    Adninjastrator

  • Link from flash file/moving not working on a page

    I will apologize first for what maybe a very elementary
    questions. I was sent an swf file to add to a web page. I got the
    movie to run on some of the pages where I inserted it into a
    template and the template updated those pages. I think had to
    insert it into another page and the movie does not work there. Does
    this have something to do with the script in the script folder? A
    conflict of some sort?
    Also, I need to link the file a URL and putting <a
    href> brackets around it is not working. Does the link to the
    page have to embedded in the swf file?
    Thanks for any help on this.
    URL to see pages
    Movie working but no link:
    http://www.grantwrangler.com/advertise.html
    Movie not even showing up:
    http://www.grantwrangler.com/index.html

    > Also, I need to link the file a URL and putting <a
    href> brackets around it is
    > not working. Does the link to the page have to embedded
    in the swf file?
    wrapping an A HREF tag around a flash .swf object will not
    work.
    the link has to be "in" the swf, back when it was an FLA file
    in flash.
    Or- the .swf has to have actionscripting in it so that it
    will take a url as
    a parameter.
    On the flash not showing--
    Random observations from a quick look.
    There is no \ backslash in a web path or url.
    you can usually "get away with it" on a windows server, but
    it's incorrect
    and something to avoid.
    <!-- Dependencies -->
    <link type="text/css" rel="stylesheet"
    href="build\fonts\fonts.css">
    <!--<link type="text/css" rel="stylesheet"
    href="build\reset\reset.css">-->
    <script type="text/javascript"
    src="build\yahoo\yahoo.js"></script>
    <script type="text/javascript"
    src="build\dom\dom.js"></script>
    <script type="text/javascript"
    src="build\event\event.js"></script>
    <!-- Source file and calendar css -->
    <script type="text/javascript"
    src="build\calendar\calendar.js"></script>
    <link rel="stylesheet" type="text/css"
    href="build\calendar\assets\calendar.css" >
    The javascript call to show the flash file contains an
    absolute local path:
    'file:///Macintosh HD/Users/user/Documents/ Work/Nimble Press
    Ÿ/Grant
    Wrangler/Website/GW ADs/tiged
    The noscript tag uses an absolute local path:
    <param name="movie" value="file:///Macintosh
    HD/Users/user/Documents/
    Work/Nimble Press Ÿ/Grant Wrangler/Website/GW
    ADs/tiged.swf">
    <param name="quality" value="high">
    <embed src="file:///Macintosh HD/Users/user/Documents/
    Work/Nimble Press Ÿ/Grant Wrangler/Website/GW
    ADs/tiged.swf" quality="high"
    pluginspage="
    http://www.adobe.com
    it's also not a good idea to put things in a folder using a
    blank space, and
    whose name contains the word "ADs"
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • CSS Issues , HTML text not rendering properly

    I've loaded and parsed some xhtml in my DataManager class that is validated against the W3C strict dtd.I'm pushing certian bits of this into public arrays in my DataManager. My ContentManager, calls to the DataManager, and is returned a corresponding data set ,  instantiates a new GenericSection , and passes in the array as an argument in the constructor.
    var targetData : Array = new Array();
    targetData = DataManager.getInstance().returnAboutData();
    var targ : String = targetData[0].toString();
    var targFormat : String = targ.slice( ( targ.indexOf( '">' , 0 ) + 2 ) , ( targ.lastIndexOf( '/p>' , 0 ) - 3 ) );
    var newSection : GenericContent = new GenericContent( targFormat );                   
    newSection.publicId = ind;
    contentContainer.addChild( newSection );
    The output of formatTarg is :
    The purpose of this site is to serve as an online portfolio and work reference. I am a 28 year old WEB/INTERACTIVE developer who has worked in the Los Angeles and Greater Orlando areas since 2004. I specialize in
      <span class="bulletText">ADOBE FLASH</span>
      <span class="bulletText">FLASH ANIMATION</span>
      <span class="bulletText">ACTIONSCRIPT 2.0/3.0</span>
      , and
      <span class="bulletText">ACTIONSCRIPT PROJECTS IN FLEX</span>
      . The client links listed above will provide several examples of media that I developed for the web. Please select the ACTIVE TEXT to the right of the PROJECT LINK heading in each section , if available ,  to view the site.
    My GenericContent class i linked to a movieclip in the library , with one dynamic textfield, with the following settings :
    instanceName : sectionText;
    anti-aliasing : for readability;
    embed : uppercase , lowercase , numerals , and puncutation
    behavior : muliline
    render as html : selected( true );
    sectionText is declared as a public var in the GenericContent instance.
    I have tried applying styles as such :
    private var css                    :            StyleSheet;
    private var cssDeclarations            :            String;
    css = new StyleSheet();
    var bulletText : Object = new Object(); 
    bulletText .fontSize = 20; 
    bulletText .fontWeight = "bold"; 
    bulletText .color = "#336699"; 
    bulletText .leading = 12;
    css.setStyle( ".bulletText ", bulletText  );
    sectionText.wordWrap = true;
    sectionText.embedFonts = true;
    sectionText.styleSheet = css;
    sectionText.htmlText = contentText;
    and
    css = new StyleSheet();
    cssDeclarations = ".bulletText{font-size:12px;color:#FFFF00"};
    css.parseCSS(cssDeclarations);
    sectionText.wordWrap = true;
    sectionText.embedFonts = true;
    sectionText.styleSheet = css;
    sectionText.htmlText = contentText;
    The html is not being rendered properly , the tags themselves do not show up , but no style is being applied. Any ideas , or perhaps a better approach ? thanks !

    Upon further investigation i figured out what was wrong.
    This property :
    bulletText .fontWeight = "bold";
    was causing my text to not render because bold character weren't used within the symbol associated with the class. By removing that and cleaning up the code a bit ,
    var span : Object = new Object(); 
    span.fontSize = 12; 
    span.color = "#336699";
    css = new StyleSheet();
    css.setStyle( ".bulletText", span );
    sectionText.styleSheet = css;           
    sectionText.htmlText = contentText;
    it rendered semi correctly , except with erronious line breaks , the solution for that was to , remove any instances of "/n" from the contentText string before setting the sectionText , done like this :
    var pattern : RegExp = /\n/g;
    contentText = contentText.replace( pattern , "" );
    now it looks great !

  • Cisco Unity Device notification SMTP, email and text not working

    Client has Unity 1.x.  I know it's pretty old.  BUt looking at alot of documentation, the device notification concept is similar. 
    Currently the users are unable to recieve text notification or email notification. 
    I follwed the following steps:
    1. configured the unity connection server to relay messages to a Smart host. In this link.  http://www.cisco.com/en/US/docs/voice_ip_comm/connection/1x/administration/guide/acm150.html#wp1042694
    2. I ocnfigured the user's device notification for SMTP.  I put the user's email address. 
    3. I tried to set it up for text messaging and that did not work also. 
    Can someone please help me out.  What am i doing wrong?

    I use [email protected] to forward emails to my phone . . . it gives me most of the message in the email, rather than just the subject line and maybe a word or two of the message.
    Emails should be sent to your10-digit [email protected] or @vzwpix.com

Maybe you are looking for

  • 790FX-GD70 Memory Issue

    I had 4 GB of OCZ AMD Black Edition (8-8-8-24) memory in Dimm1 and Dimm2 which worked fine.  I recently purchased 4 more GBs of Corsair memory and installed it.  But after the system would not post and the mother board display would just flash FF.  T

  • Variable is not working

    HI Experts, can any one suggest me on this issue . When i enter 0Material variable range selction the data is not retriving .the data has there in 0material master data. if enter other range like date with out giving materila the data is displaying .

  • Purchase Order Change Restriction after MIGO and MIRO

    Hi Experts, I'd like to ask why Purchase Orders are allowed for change even when the Material Document and Invoice is already created under them, unlike the Sales Order in SD. Or is this some kind of configuration where I can configure the restrictio

  • TCode for EWT & report RFWT0010

    Dear All, Can you let us know the T.Code for  the report RFWT0010 and T.Code for EWT Configuration. For EWT we dont want to go every time in SPRO,etc....let us know the TCODE so that we can directly open the EWT configuration area and do the settings

  • MS-Word Add-on Timeout in 5 minutes

    Hello! I have a data template report that runs in about 15 minutes (I can see it through the bi publisher web interface). However, a generic error is always returned after 5 minutes. Does anyone knows where I can config the Word add-on to increase th