<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Hi again! in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Windows-Phone-problems/m-p/1055517#M51719</link>
    <description>&lt;P&gt;Hi again!&lt;/P&gt;

&lt;P&gt;I'm making some test with Intel XDK 1912, AppFramework and WP8.1 and I found this issue:&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;$(document).ready(function() {
    $.ui.launch();

    var ref = window.open("http://www.intel.com", "_self", "location=no");

    $("#intel").click(function() {
        var ref = window.open("http://www.intel.com", "_self", "location=no");
    });

});
&lt;/PRE&gt;

&lt;P&gt;If I run this code in the "emulate" tab of Intel XDK both "window.open" work fine.&lt;/P&gt;

&lt;P&gt;If I run this code, in the Intel AppPreview at my Lumia 720, the first "window.open" works fine and my app show the Intel webpage, but the second "window.open" never works. I put an "alert" in the click function and it works fine, so the click event rules ok, but the "window.open" still doesn't work.&lt;/P&gt;

&lt;P&gt;What I don't undestand is why this code rules fine in the "emulate" tab but when I send it to the cloud or build it and install it in my phone it doesn't work. I've got this js calls:&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;    &amp;lt;script type="text/javascript" charset="utf-8" src="appframework/appframework.ui.min.js"&amp;gt;&amp;lt;/script&amp;gt;

    &amp;lt;!-- phantom library, needed for XDK "legacy" container api calls --&amp;gt;
    &amp;lt;script src="intelxdk.js"&amp;gt;&amp;lt;/script&amp;gt;
    &amp;lt;!-- phantom library, needed for Cordova api calls --&amp;gt;
    &amp;lt;script src="cordova.js"&amp;gt;&amp;lt;/script&amp;gt;
    &amp;lt;!-- phantom library, needed for XDK "legacy" container CORS --&amp;gt;
    &amp;lt;script src="xhr.js"&amp;gt;&amp;lt;/script&amp;gt;
&lt;/PRE&gt;

&lt;P&gt;Does anybody have any ideas about how can I go ahead? Any thoughts?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 08 May 2015 08:43:24 GMT</pubDate>
    <dc:creator>José_Manuel_G_</dc:creator>
    <dc:date>2015-05-08T08:43:24Z</dc:date>
    <item>
      <title>Windows Phone problems</title>
      <link>https://community.intel.com/t5/Software-Archive/Windows-Phone-problems/m-p/1055516#M51718</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;I'm deveolping with Intel XDK an HTML5, CSS3, jQuery crossplatform app for Android, Windows Phone and iOS.&lt;/P&gt;

&lt;P&gt;First of all I develope it in Android and after some minor problems now is working fine, but when I start to test it in a Lumia 720 with WP8.1 I found same unexpected problems.&lt;/P&gt;

&lt;P&gt;I add "fontawesome" to the app because "appFramework" has so few icons. In Android I can see the icons from "fontawesome" witout a problem, in "emulate" tab, in test and in the app after build it. But in WP I can see them in the "emulate" tab (that emulate a Lumia 920), but when I download the app from Windows Store and run it in my phone I can't see the "fontawesome" icons.&lt;/P&gt;

&lt;P&gt;Is there any method that I can use to load "fontawesome" icons? or I have to use images instead?&lt;/P&gt;

&lt;P&gt;The second problem than I found is that the "window.open" doesn't work. For example, with this code:&lt;/P&gt;

&lt;BLOCKQUOTE&gt;
	&lt;PRE class="brush:jscript;"&gt;$("a#formucontact").click(function() {
        alert('1');
        var ref = window.open(formContacto, "_self", "location=no");
});&lt;/PRE&gt;
&lt;/BLOCKQUOTE&gt;

&lt;P&gt;I can't open the url passed in "formContacto" and even the alert doesn't work.&lt;/P&gt;

&lt;P&gt;Is there any problem with AppFramework and Windows Phone devices?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Thanks in advice.&lt;/P&gt;</description>
      <pubDate>Thu, 07 May 2015 07:52:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Windows-Phone-problems/m-p/1055516#M51718</guid>
      <dc:creator>José_Manuel_G_</dc:creator>
      <dc:date>2015-05-07T07:52:25Z</dc:date>
    </item>
    <item>
      <title>Hi again!</title>
      <link>https://community.intel.com/t5/Software-Archive/Windows-Phone-problems/m-p/1055517#M51719</link>
      <description>&lt;P&gt;Hi again!&lt;/P&gt;

&lt;P&gt;I'm making some test with Intel XDK 1912, AppFramework and WP8.1 and I found this issue:&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;$(document).ready(function() {
    $.ui.launch();

    var ref = window.open("http://www.intel.com", "_self", "location=no");

    $("#intel").click(function() {
        var ref = window.open("http://www.intel.com", "_self", "location=no");
    });

});
&lt;/PRE&gt;

&lt;P&gt;If I run this code in the "emulate" tab of Intel XDK both "window.open" work fine.&lt;/P&gt;

&lt;P&gt;If I run this code, in the Intel AppPreview at my Lumia 720, the first "window.open" works fine and my app show the Intel webpage, but the second "window.open" never works. I put an "alert" in the click function and it works fine, so the click event rules ok, but the "window.open" still doesn't work.&lt;/P&gt;

&lt;P&gt;What I don't undestand is why this code rules fine in the "emulate" tab but when I send it to the cloud or build it and install it in my phone it doesn't work. I've got this js calls:&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;    &amp;lt;script type="text/javascript" charset="utf-8" src="appframework/appframework.ui.min.js"&amp;gt;&amp;lt;/script&amp;gt;

    &amp;lt;!-- phantom library, needed for XDK "legacy" container api calls --&amp;gt;
    &amp;lt;script src="intelxdk.js"&amp;gt;&amp;lt;/script&amp;gt;
    &amp;lt;!-- phantom library, needed for Cordova api calls --&amp;gt;
    &amp;lt;script src="cordova.js"&amp;gt;&amp;lt;/script&amp;gt;
    &amp;lt;!-- phantom library, needed for XDK "legacy" container CORS --&amp;gt;
    &amp;lt;script src="xhr.js"&amp;gt;&amp;lt;/script&amp;gt;
&lt;/PRE&gt;

&lt;P&gt;Does anybody have any ideas about how can I go ahead? Any thoughts?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 May 2015 08:43:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Windows-Phone-problems/m-p/1055517#M51719</guid>
      <dc:creator>José_Manuel_G_</dc:creator>
      <dc:date>2015-05-08T08:43:24Z</dc:date>
    </item>
  </channel>
</rss>

