Linking to a website does not work

I am new to captivate and am having a problem. On one of my slides, I have a link to a website. I placed a click box over the text and set the action to Open URL or file and specified the URL to open in a new window.
When I publish the project, the link works when I am in the published PDF file but it does not work when I am in the published SWF or HTM file. Can someone give me some advice on what I may be doing wrong? IF this has been addresssed elsewhere, I am sorry for the duplication. I have searched and could not find anything.
Thanks in advance.

Hi there
"Whitelisting" is a process that is used to identify something as being a "safe" or "trusted" source. I believe what is meant in this context is that you need to add the location to the trusted locations list in the Flash Player as described in the link below:
Click here to view
Cheers... Rick
Helpful and Handy Links
Captivate Wish Form/Bug Reporting Form
Adobe Certified Captivate Training
SorcerStone Blog
Captivate eBooks

Similar Messages

  • Adobe photoshop cs2 download on adobe website does not work-  the serial number does not work?

    photoshop cs2 download on adobe website does not work - the serial number given isn't recognised when you enter it when trying to install. the live chat at adobe cannot help and suggested that I may find the answer here. Can anyone help with this?

    Adobe has decommissioned the CS2 activation servers, so your old serial number is no longer usable.
    If you download the special non-activating version of CS2 that Adobe has made available to licensed CS2 users, you MUST also use the new serial number provided by Adobe on that download page:
    https://www.adobe.com/cfusion/entitlement/index.cfm?e=cs2_downloads
    That S/N does work.  I double checked.

  • 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

  • I have a license for CS3 Design Premium but no disk. Where exactly can I download the software? The solution offered on the Adobe website does not work ...

    I have a license for CS3 Design Premium but no disk. Where exactly can I download the software? The solution offered on the Adobe website (CS3-Produkte herunterladen) does not work ...

    If the page you linked does not work then it should so what happens when you try?  It is possible that it might be a simple matter of you enabling cookies or trying another web browser.
    You can also try to download the trial version of the software thru the page linked below and then use your current serial number to activate it.
    Be sure to follow the steps outlined in the Note: Very Important Instructions section on the download pages at this site and have cookies enabled in your browser or else the download will not work properly.
    CS3 and CS4: http://prodesigntools.com/download-adobe-cs4-and-cs3-free-trials-here.html

  • Link in pdf-file does not work on Ipad

    With my site www.bartkuijer.nl I offer visitors the free possibility to see (and download) sheetmusic, from music written by me. These are pdf-files. But they can not only SEE the sheetmusic; the music on that pdf-files can also be PLAYED. That's done bij clicking on a link in that pdf-file to a mp3-file of the music on my site.
    This works fine on a pc. When I try this on the Ipad of my wife it DOES NOT WORK!
    So my question is: how come? And what to do to make this work also fine on an Ipad.
    This is important for me, because I want this sheetmusic to place as Ipad-apps for free.

    It works!
    But not with a pdf-file. The Ipad does not recognize links in a pdf-file.
    Te solution is found by making a htm-file with emdedding a quicktime-player and images of the music. This is my first Ipad product. On a pc the player starts immediately; on the Ipad it has to be started.
    Now I have to work on a solution to change this to an app

  • Publishing a flash with AS3.0 on website does not work

    Okay, I'm finally at the end of my flash card. Here's the whole code.
    //import classes
    import com.greensock.TweenLite;
    import com.greensock.easing.*;
    import fl.transitions.Tween;
    import fl.transitions.easing.*;
    //end of importing
    //start of sound section is for sound
    var cssLoader:URLLoader;
    var css:StyleSheet;
    var soundReq:URLRequest=new URLRequest("audioFiles/PaukenBrumfiel_AngelsOnHigh.mp3");
    var sound:Sound = new Sound();
    sound.load(soundReq);
    sound.addEventListener(Event.COMPLETE, onComplete);
    //end of sound section
    //Loading external texts
    var weiss:Font = new Weiss();
    var weissBold:Font = new WeissBolder18();
    var weissBolder:Font = new WeissBolder();
    var slideXTween:Tween;
    var txtAlphaTween:Tween;
    var txtNextText:Tween;
    var txtContainer:Sprite;
    var txtField:TextField = new TextField();
    var myTxtField:TextField = new TextField();
    var txtFldwebImages:TextField = new TextField();
    var textRequest:URLRequest=new URLRequest("happyHoliday.txt");
    var textLoad:URLLoader = new URLLoader();
    var txtFormat:TextFormat = new TextFormat();
    var myLinkFormat:TextFormat = new TextFormat();
    var strLink:String;
    var numXPos:Number;
    var numYPos:Number;
    //end of loading external texts
    function onComplete(event:Event):void {
        sound.play();
    function textReady(event:Event):void {
        //txtFormat.font= weiss.fontName;
        txtFormat.color=0x000066;
        txtFormat.size=24;
        //txtField.x = stage.stageWidth;
        //txtField.width = 800;
        txtField.autoSize=TextFieldAutoSize.LEFT;
        //txtField.height = txtField.autoSize
        txtField.wordWrap=false;
        txtField.text=event.target.data;
        txtField.setTextFormat(txtFormat);
        //txtField.y = 350;
        txtField.embedFonts=true;
    textLoad.load(textRequest);
    txtFormat.font= weiss.fontName;
    textLoad.addEventListener(Event.COMPLETE, textReady);
    txtField.x=stage.stageWidth;
    addChild(txtField);
    txtField.y=350;
    TweenLite.to(txtField, 40, {x:-stage.stageWidth*2.25, ease:Linear.easeNone, delay:0.5, onComplete:Inspiration});
    function Inspiration():void {
        txtFormat.font= weissBolder.fontName;
        textLoad.load(new URLRequest("inspiration.txt"));
        txtField.x=130;
        txtField.y=330;
        txtField.alpha=0;
        TweenLite.to(txtField, 5, {alpha:1, onComplete:GoogleFunc});
    function GoogleFunc():void {
        //create and initialize css
        addChild(myTxtField);
        strLink = "<a href='http://www.google.com/' target='_blank'>Google</a>";
        numXPos = 180;
        numYPos = 370;
        var myCSS:StyleSheet = new StyleSheet();
        myCSS.setStyle("a:link", {color:'#000066',textDecoration:'none'});
        myCSS.setStyle("a:hover", {color:'#FF6600',textDecoration:'underline'});
        txtFormat.font = weissBold.fontName;
        //txtFormat.color=0x000066;
        txtFormat.size=20;
        //txtFormat.bold = true;
        myTxtField.setTextFormat(txtFormat);
        myTxtField.defaultTextFormat=txtFormat;
        myTxtField.styleSheet = myCSS; // Linking CSS to TextField
        myTxtField.htmlText="";
        myTxtField.htmlText=strLink;
        myTxtField.wordWrap=false;
        //myTxtField.embedFonts = true;
        myTxtField.width = strLink.length*2;
        myTxtField.x=numXPos;
        myTxtField.y=numYPos;
        //trace("Third txtField.y: " + txtField.y);
        myTxtField.alpha=0;
        TweenLite.to(myTxtField, 1, {alpha:1, onComplete:webImages});
        //trace("tween done");
    function webImages():void {
        addChild(txtFldwebImages);
        var myCSS:StyleSheet = new StyleSheet();
        myCSS.setStyle("a:link", {fontsize:'20',color:'#000066',textDecoration:'none'});
        myCSS.setStyle("a:hover", {fontsize:'20',color:'#FF6600',textDecoration:'underline'});
        txtFormat.font = weissBold.fontName;
        //txtFormat.color=0x000066;
        txtFormat.size=20;
        //txtFormat.bold = true;
        txtFldwebImages.setTextFormat(txtFormat);
        txtFldwebImages.defaultTextFormat=txtFormat;
        txtFldwebImages.styleSheet = myCSS; // Linking CSS to TextField
        txtFldwebImages.htmlText = "";
        txtFldwebImages.htmlText="<a href='http://www.google.com/webImages/' target='_blank'>Google Images</a>";
        txtFldwebImages.wordWrap=false;
        //myTxtField.embedFonts = true;
        txtFldwebImages.width = 300;
        txtFldwebImages.x=300;
        txtFldwebImages.y=370;
        txtFldwebImages.alpha=0;
        TweenLite.to(txtFldwebImages, 1, {alpha:1});
    //end of loading external texts
    Okay, the problem is when I publish the .swf files and put it in an html or .aspx page, it does not work. The audio is not there and a few others things ar enot working. However, it does work if I click on the.html file that Flash created during the publication.
    Here are the folder structions:
    www.mysite.com/myFlashPage.aspx
    www.mysite.com/flashFileFolder/
    www.mysite.com/flashFileFolder/audioFiles/
    So, the myFlashPage.aspx containsthe myFlash.swf file that is inside the flashFileFolder. For some reason, it does not work. Any suggestion is much appreciated.

    The .html file does work if I publish it into the same folder as I created the Flash project. However, when I publish the
    flash .swf to my web site folder (mapped), it's no longer working. The mapped web site drive structher are as follows:
    D:\Mysite\ contains the .html file
    D:\Mysite\flashFileFolder\ contains the .swf file
    D:\Mysite\flashFileFolder\audioFiles contains the PaukenBrumfiel_AngelsOnHigh.mp3 file
    D:\Mysite\flashFileFolder\greensock-tweening-platform-as3 contains all the tweenlite files
    The .html file does not work either. What else do I need to change?

  • OBI 11g Enterprise Manager (EM Website) does not work with IE8 (v8.0.6)

    I am unable to login to the 11g EM website on Windows x64 2003 server. I get the below error:
    Webpage error details
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.2; WOW64; Trident/4.0)
    Timestamp: Wed, 6 Oct 2010 10:41:18 UTC
    Message: Object doesn't support this property or method
    Line: 4354
    Char: 1
    Code: 0
    URI: http://YZU-1:7001/em/afr/partition/ie/default/opt/boot-11.1.1.3.0-0084.js
    Any help is appreciated.
    Thanks
    B

    Hi,
    OBIEE 11g does not work with IE8.
    Check this......What's wrong in OBIEE 11g
    Regards,
    Srikanth

  • Download link for PS CC does not work

    I am in the CC area, click on PS to download and the link does not work. Here is the link. Any ideas? Working on a Mac; browser is FireFox.
    Same issue occurs when trying to download AI from CC.
    aam://SAPCode=PHSP?productVersion=14.0?passPhrase=Qrm0F9IdGKvpaqBy+4xfM5lOVjrbpmIweKyRgE7A +BqIFujuZhd6TPbicQ26g2ENYDvavIaSUbhb9BXZi83+Angu3EOQc+ntLN6A+aQp/ewWvbhau5iP8ohOSLKpfNJlYT 4bEoGiRkVT1a3siLb7QGha/SK/mjCUPNQIynZDH7M=

    Hi maurak,
    Please use Creative cloud desktop app to download all CC Apps. You can download the CC desktop app from this link.
    https://creative.adobe.com/#products
    Regards,
    Abhijit

  • Hyperlink to a specific page in .mac website does not work

    I used iWeb '06 to create a website. Published it to .mac. Every thing is hunky dory. I have another domain name at godaddy forward you to my .mac site. When I send a hyperlink to the godaddy domain name for the website, the site opens just fine. When I send a hyperlink link to a specific page in the website, I get an error message from .mac that 'the user does not exist...' Any idea on how to fix it so I can send a link to a specific page in the website?

    When I send a hyperlink link to a specific page in the website, I get an error message from .mac that 'the user does not exist...' Any idea on how to fix it so I can send a link to a specific page in the website?
    Could you provide your url and the hyperlink? If you are using masking/cloaking at godaddy, there is no way to refer to a specific page except via the web.mac.com url.

  • Download link to upgrade AppWorld does not work on BB9900

    Hi, 
    I just got a new BB9900. When I opened AppWorld I got the message that I needed to upgrade to a newer version of AppWorld. 
    I clicked the link to open the BB site in my browser, and clicked through on 'update today', I then end up at download site, but I can't click any buttons to start the download. Seems like a bug to me...
    Please let me know how I can upgrade AppWorld when the download site does not seem to work.
    Upgrading via the desktop software is no option. As I cannot install any software on my business laptop.
    Thanks in advance for your suggestions! 

    Hey dneirv,
    Welcome to the BlackBerry Support Community Forums.
    Thanks for the question.
    I would suggest going to www.blackberry.com/appworld/download and then download the file and restart the BlackBerry smartphone and then you should have the most up to date version.
    Let me know if you still have problems with the update.
    Cheers.
    -ViciousFerret
    Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
    Be sure to click Like! for those who have helped you.
    Click  Accept as Solution for posts that have solved your issue(s)!

  • Servlet sample "navimage.png.java" from CQ5-Docu "How to get fully featured Website" does not work.

    When working on the sample described in "How to create a fully featured Website", I got an error in the part "Creating the Top Navigation Component". I have discussed this at the page itself (see the comments there) and in the sling mailing list. I was told,  this forum would be the best place to find a solution. So I will ask the remaining question here:
    The sample uses a servlet "navimage.png.java" to create dynamically top navigation buttons with a meaningful text displayed.
    We have got a node "/content/mywebsite/en/products" (there are more, but it is easier to explain when focusing on one of them) with jcr:primaryType=cq:Page with childnode jcr:content with the property sling:resourceType=mywebsite/components/contentpage.
    The path "/apps/mywebsite/components/contentpage" contains a node body.jsp. The request http://localhost:4502//content/mywebsite/en/products.html renders the node /apps/mywebsite/components/contentpage/body.jsp.
    The body.jsp includes another jsp "topnav.jsp" which refers to /content/mywebsite/en/products.navimage.png by the expression "src="<%= child.getPath() %>.navimage.png"></a><%".
    The servlet "navimage.png.java" has been placed to /apps/mywebsite/components/contentpage/navimage.png.java. See inserted screenshot for the layout.
    When issuing the request, none of the expected buttons is displayed. The "Recent Requests"-tab at the OSGi-Console shows a whole bunch of message requests.
    The "GET customers.navimage.png", "GET services.navimage.png" and "GET products.navimage.png" tell me, that the request has been resolved (excerpt from the messages):
      10 (2013-02-01 15:45:18) LOG Including resource JcrNodeResource, type=mywebsite/components/contentpage, superType=null, path=/content/mywebsite/en/products/jcr:content (SlingRequestPathInfo: path='/content/mywebsite/en/products/jcr:content',  selectorString='navimage', extension='png', suffix='null')
         10 (2013-02-01 15:45:18) TIMER_START{resolveServlet(JcrNodeResource, type=mywebsite/components/contentpage, superType=null, path=/content/mywebsite/en/products/jcr:content)}
         10 (2013-02-01 15:45:18) TIMER_END{0,resolveServlet(JcrNodeResource, type=mywebsite/components/contentpage, superType=null, path=/content/mywebsite/en/products/jcr:content)} Using servlet /apps/mywebsite/components/contentpage/navimage.png.java
         10 (2013-02-01 15:45:18) LOG Applying Includefilters
    But the "GET navimage.png" does not find anything:
      10 (2013-02-01 16:08:06) TIMER_END{10,ResourceResolution} URI=/apps/mywebsite/components/contentpage/navimage.png resolves to Resource=NonExistingResource, path=/apps/mywebsite/components/contentpage/navimage.png
         10 (2013-02-01 16:08:06) LOG Resource Path Info: SlingRequestPathInfo: path='/apps/mywebsite/components/contentpage/navimage.png', selectorString='null', extension='png', suffix='null'
         10 (2013-02-01 16:08:06) TIMER_START{ServletResolution}
         10 (2013-02-01 16:08:06) TIMER_START{resolveServlet(NonExistingResource, path=/apps/mywebsite/components/contentpage/navimage.png)}
         10 (2013-02-01 16:08:06) LOG {0}: no servlet found
    So the servlet has been detected. Why isn't it displayed. When I place a real picture in the path (navimage.png) the sample works fine.
    - What can I do to detect the cause of the error
    - When becomes the servlet compiled and where is the class-file stored?
    Thank you for your support.
    Ulrich

    I almost found it now. The reason was, that I had not copied (puposely!) the images-folder to the design-folder (/etc/design/mywebsite). The servlet itself requires a node from this folder
    line 64: "String imgPath = new String(dg.getDesignPath(currentPage)+"/images/navimage_bg.jpg");"
    line 65: "Layer bg = ImageHelper.createLayer(ctx.resolver.resolve(imgPath));"
    The servlet must have failed and this is why I didn't see any buttons o my page.
    I say, I have not supplied the images purposely, because I don't like to introduce too much stuff without knowing what it is meant for. I prefer to cause an error. Learning by researching errors is most of the time more effective than having something run without exactly to understand the prerequisites.
    At the end this is also true for this case. I had many discussions on several platforms, read a lot of documents to go this short step.
    Thank you.
    Ulrich

  • Email linEmail link to Yahoo Mail does not work in in FF26.0 Windows 7, 64 bit computer?

    as above

    Do you mean, for example, that if you click a link like this:
    [email protected]
    Firefox does not start a new message in Yahoo! mail?
    I think you will need to set Firefox to use Yahoo! mail using the Options dialog. Please see this article for the steps: [[Change the program used to open email links]].
    Does that work?
    Or if you can't open Yahoo! mail at all, try going in through one of these addresses:
    * Yahoo home page: https://www.yahoo.com/
    * My Yahoo page: https://my.yahoo.com/
    * General mail redirect: https://mail.yahoo.com/
    Note that many users have discovered problems with bookmarks they saved for the "old" Yahoo mail and need to update them to work with the "new" (neo) Yahoo mail.

  • The turkish fonts of my developed website does not work

    Hello dear all,
    I have an issue that I can't fix for about month. I have designed a website in russian, english and turkish language. in my localhost everything works perfectly, but when I uploaded it into the server the turkish font was not recognized by mozilla Firefox, the rest browsers work fine with that website, but not Firefox.
    here is the link for that website: www.maryotel.kg

    The Turkish page is in Unicode and not like the Russian in windows-1251<br />
    The servers sends the page with windows-1251 encoding and that is what Firefox uses.<br />
    Firefox ignores the encoding specified via a meta tag (text/html; charset=utf-8) if the server sends an encoding via the response header.
    It would be best to have all pages created and saved with UTF-8 encoding and make the server send files with UTF-8 encoding by default.

  • Anyone know why my flash website does not work on mac devices ?

    My site is this http://www.solecom-web.com

    Yes but the flash websites do not display correctly! All imac with safari have problems viewing flash;
    I have asked to others ; all problems with safari and imac!
    Flash only works with Atomic Web Browser on Imac

  • Flex Hero - Links in HTML component does not works.

    WebView-app.xml
    <?xml version="1.0" encoding="utf-8" standalone="no"?>
    <application xmlns="http://ns.adobe.com/air/application/2.5">
    WebView.mxml
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
       xmlns:s="library://ns.adobe.com/flex/spark"
       xmlns:mx="library://ns.adobe.com/flex/mx">
    <mx:HTML location="http://google.com/" />
    </s:WindowedApplication>
    I can see google homepage in my test desktop application.
    But all links are not work in html document.
    Flex 4.0 and 4.1 SDK works well. Only Flex Hero has this problem.
    How can I fix it?
    Thanks.

    Hi Kevin,
    I had the same problem. This 4.5 build from 11/30/2010 fixed the HTML component issue.
    http://opensource.adobe.com/wiki/display/flexsdk/download?build=4.5.0.18623&pkgtype=1

Maybe you are looking for

  • Dual HDMI monitor setup on mac mini late 2012

    Hey there i just purchased a late 2012 mac mini and two of these monitors: Amazon.com: AOC IPS i2367Fh 23-Inch Screen LED Monitor: Computers & Accessories They only have HDMI and VGA connectivity - my question is, whats the best way to setup these mo

  • PocketMac crashing using iCal/Calendar on BB

    Hello everyone, I'm using PocketMac 41.25 and everything was ok until couple of days ago when I tried syncing again my iCal in Calendars on the BlackBerry. Can anyone help by reading this crash log and tell me where is the problem located ? Thanks in

  • EBAN-DISPO in purchase requisition

    Hi. We would like to modify the field (EBAN-DISPO) programatically when a purchase requisition gets created from iw32. We were able to do this in ME51N by using the BADi ME_PROCESS_REQ_CUST and it works fine. But we are unable to find anything that w

  • How do I establish my own library without screwing up my daughter's?

    Even though I logged in under my user name, and she uses another one, the first time I opened iTunes, her library popped up. I want to customize my own music without accidently permanently doing anything to hers. I may want to share some of her songs

  • Callback module CRM_TAX_ORDER_INIT_EC

    Dear CRM gurus, I would like to ask a big favour of one of you. I have a suspicion that something is wrong with the configuration of our CRM event callbacks. It might be that there was a problem during our upgrade process and the table that stores th