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

Similar Messages

  • HorisontalScrollPosition Attribute of a HTML-component does not work. Why?

    Hello there,
    I would like to synchronize scroll-events of a HTML-component and a Canvas-component.
    I thought it schould be easy, and I wrote it like below....
    <mx:Script>
         <![CDATA[
              private function onCanvasScrollHandler(e:ScrollEvent):void
                   if(e.direction == "vertical")
                        myHTML.verticalScrollPosition = e.position;
                   else if(e.direction == "horizontal")
                        myHTML.horizontalScrollPosition = e.position;
         ]]>
    </mx:Script>
    <mx:HTML   id="myHTML"   width="300" height="300" horizontalScrollPolicy="on" verticalScrollPolicy="on" />
    <mx:Canvad id="myCanvas" width="300" height="300" horizontalScrollPolicy="on" verticalScrollPolicy="on" scroll="onCanvasScrollHandler(event)" />
    ....this Script does kind of work. When I scroll "myCanvas" vertially, the "myHTML" is also scrolled vertical as much.
    However this only works for vertical scrolling, but not for horizontal one. "myHTML" is not be scrolled horizontal, when the value is substituted in horizontalScrollPosition-attribute of "myHTML".
    Does anyone have a clue for this Problem?
    Thanks.
    Satoshi

    I found it my self .
    I used scrollH-property of HTMLLoader instead.
    It works until now.

  • Automatic Selected Item of List Builder Component Does not work (anymore)

    Hi all,
    Í'm working with Xcelsius Engage 2008 (version 5.3.2.0) and the automatic selection of an item at runtime of the list builder component does not work anymore. In a previous version it worked very well.
    Here's the case: at runtime I want that the list builder component automatically puts the first item in the list to the destination section and selects it, so that a graph can show the underlying pushed data. In the previous version it worked o.k., but now at runtime the destination section remains empty at startup. If I interactively select an item from the source section to the destination section and update the list builder, the data is shown correctly, but it must done automatically, which worked o.k. in an earlier version of Xcelsius 2008...
    This are my settings of the list builder component (which was running correctly earlier..):
    -at the general tab I defined a range of labels
    -at the general tab I defined 2 data column insertion series
    -at the behaviour-common tab I defined selected items: position mode; items: the first item of the label list; insert items at runtime
    -all of the data comes from an external xml data source
    You can find an example of the visualisation at: http://onderzoek2.evinet.nl/projecten/10169/dynarap.htm. You will see that at start-up there is no item visible and selected in the destination section of the list builder....
    I've tried every combinations of settings, build up the component from scratch, but its not working (anymore).
    Greetings Erik-Jan Vriens

    Hi njnits,
    Print view button is a standard component of Xcelsius: look at it in the IDE
    Exporting to Powerpoint is also a standard functionality, so yes. For this particular dashboard/report all data resides in an external xml-file which have to be accessible for Powerpoint
    All visualisations, not only the table,  in this/report fetch their data from an external xml-file, but a QaaWS-connection will also do the trick. You will have to write this dedicated service. In our case the xml-data is also generated automatically.
    The external data is best defined as a sort of matrix, consisting of approx. 100 columns by 1000 rows. I agree it takes a lot of Xcelsius but it does the job....
    Hopes this info helps....

  • 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

  • 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

  • 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

  • The "a name" html tag does not work in Firefox.

    The tag works in all versions of Internet Explorer, but does not work in Firefox versions 3, 4, 5, 10, 11, 12.

    I haven't noticed any problems on most pages, but I have read about a problem where a script changes the length of the page content after loading (e.g., by collapsing content under headings, done on some FAQ or glossary pages).
    For example, this should position the browser at the Reset Printer section:
    http://kb.mozillazine.org/Problems_printing_web_pages#Reset_printer
    A standard diagnostic step is to try Firefox's Safe Mode to see whether an odd behavior is caused by a custom setting or add-on.
    First, I recommend backing up your Firefox settings in case something goes wrong. See [[Backing up your information]]. (You can copy your entire Firefox profile folder somewhere outside of the Mozilla folder.)
    Next, restart Firefox in [[Safe Mode]] using
    Help > Restart with Add-ons Disabled
    In the Safe Mode dialog, do not check any boxes, just click "Continue in Safe Mode."
    If links work correctly in Safe Mode, that usually points to an add-on or custom setting as the problem.
    Let us know whether that makes any difference.

  • 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

  • HREF Link to file server does not work

    This is more of a question for IIS 6 but since I couldn't find a forum for IIS I thought I would post here.  I am migrating our Intranet site from an ancient Site Server machine to a rebuilt Windows 2003/IIS 6 machine.  The Intranet uses ASP and
    I have everything working and all pages display correctly in IE8 and IE9.  However, we have several pages that contain links to documents on a separate Windows 2008 file server.  These links work fine on the old server but on the new server nothing
    happens when I click the links.  The links are formatted as follows:
    <a href="file:\\server2\openshare\dept\_Open_Read_Only\docs\schedule.xls" target="_blank">Schedule<o:p></o:p></a></p>
    I have seen references about adding more slashes and have tested various forms like this:
    <a href="file://///server2\openshare\dept\_Open_Read_Only\docs\schedule.xls" target="_blank">Schedule<o:p></o:p></a></p>
    and
    <a href="file:///\\server2\openshare\dept\_Open_Read_Only\docs\schedule.xls" target="_blank">Schedule<o:p></o:p></a></p>
    but no change.  Nothing happens when I click the link.  Note that the links are in HTML files and not imbedded in any ASP or VB code.  Does anyone have any thoughts on this?
    Thanks,
    Joe

    Hi,
    Thanks for your sharing, it can benefit others.
    Regards.
    Jeremy Wu
    TechNet Community Support

  • Problem: Drag&Drop over HTML-Elements does not work

    Hello everybody,
    I developed some sort of Clipboard, which consists of a canvas, on which you can drag around some customized components. These components consist of a panel, in which there is an mx:HTML-component and a text area.
    The problem is that clicking into the panel-header area and dragging the component around only works as long as I the mouse pointer does not touch the mx:HTML component. This means, that when dragging the component over the region where its own(!) mx:HTML-component is located, the drag action is terminated. When the component is dragged over another components mx-HTML part, the drag action is also terminated.
    Why does this happen?
    If source code is needed, just ask and I will upload an example.
    Kind regards,
    Sebastian

    what if u hit design mode
    and then switch off the design mode
    sometimes this workaround helps
    try contacting the basis people and make sure u havent installed the lates gui or something.
    somethimes during upgrade or so this functionality doesnt work
    i face the same issue.

  • 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)!

  • How to add html?  The HTML snippet does not work.  Whatever I add, (a "like button, SEO key words, etc.), does not appear on the site once published.

    I am trying to add html to my website created in iWeb, (a "like" button, for example).  I paste the HTML language into the HTML Snippet window, but it does not show up ion my published page.  Any advice?

    I have put code into two html snippets, (per facebook instructions).  Should they go together?
    First snippet:
    <div id="fb-root"></div>
    <script>(function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "http://connect.facebook.net/en_US/all.js#xfbml=1";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
    Second snippet:
    <div class="fb-like" data-href="http://www.bonniecrockettconsulting.com" data-send="true" data-width="450" data-show-faces="false"></div>
    Thanks!

  • 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.

  • Custom defined links on confirmation page does not work.

    Hi,
    I am trying a define a custom link for the leave request confirmation page in the ESS module of the portal. I am able to see the url link, but when I click on it, it does not navigate to the new page. Here are the steps I completed.
    - created a custom webdynpro application.
    - created an iview and a page for the custom web dynpro application.
    - created test role and workset, tested the iview successfully in the
        portal from the menu.
    -  Defined a custom resource for the iview, put the url of the PCD page in
        the  "URL of PCD Page" field.
    - Defined a custom webdynpro service for the above resource.
    - Defined a custom link on the confirmation page using the above service.
    I would appreciate if anyone can provide any guidance, tips or ideas on missing steps...
    Thanks in advance,
    Saket

    Hi for X in range,
    You may take a try to contact Microsoft local license support team:
    http://www.microsoft.com/en-gb/licensing/contact-us.aspx
    Best regards
    Michael Shao
    TechNet Community Support

  • Add Link option in ADF RichTextEditor component does not work

    Hi all,
    If I try to add a link in an ADF RichTextEditor component, it tries to open the link the domain of my application rather than trying to use the whole URL.
    For example, you can go to the RichTextEditor at [http://jdevadf.oracle.com/adf-richclient-demo/faces/components/richTextEditor.jspx] .
    Then, highlight some text, for example "world" and then click Add Link button and add "www.oracle.com". The link appears in the RichTextEditor. However, if you try to open the link, the link tries to open inside the domain of the application - in the above case, the URL is http://jdevadf.oracle.com/adf-richclient-demo/afr/www.oracle.com
    Any suggestions on how to fix this. Please help as this is a stopper for the release.
    Thank you and regards.

    Okay, I figured out the answer. You need to set the complete URL with the protocol.

Maybe you are looking for

  • License code error in Adobe Photoshop Elemens 7

    Hi, I've bought a new PC, and I have an OEM license for Adobe Photoshop Elements 7 from my old Packard Bell computer. I have retrieved the license code from Adobe, as I registered the software, so the code is valid, but I have downloaded the Photosho

  • I have adobe installed on my computer but some documents still won't open

    I Have Adobe on my system but some documents still won't open what should I do?

  • Export without "transcoding"? (h264 Eos .mov files)

    Hy! My question is: Is it possible to export from the original footage without transcoding bits that dont need to? I am using a Canon Eos 550d which produces h264 .mov files with 49mbit/sec. As I believe mercury-playback-engine acts as a frameserver

  • Is this a viable alternative to Boot Camp???

    While seeking a solution to a problem I was having with running Windows from Boot Camp, <http://discussions.apple.com/thread.jspa?threadID=1514709&tstart=0> I was offered this advice. Does this make sense? The advice follows: Say you have a hard driv

  • New ideas for iPod.

    Hi! I'm wondering if there's a wireless syncing program that works with iTunes so you can sync your iPod Touch wirelessly.