Tagged Questions
0
votes
7answers
65 views
CSS to centralise a HTML5 div at the bottom of the screen
I have the following HTML5 document:
<canvas id="myCanvas">
</canvas>
<img id="logo" src="/images/logo.png" style="visibility:collapse" />
<div id="adControl" style="width: ...
1
vote
2answers
62 views
HTML5 Canvas performance very poor using rect()
I'm writing a game, which displays the score at the top of the screen in the following fashion:
canvasContext.fillStyle = "#FCEB77";
canvasContext.fillText(' Score: ' + Math.floor(score) + ' ...
0
votes
1answer
13 views
Windows8 Store app doesnt support onhashchange
I am trying to make an WIN8 app out of my html5 project.
Unfortunately I have been using hashes and especially the event onhashchange which is not supported by Windows8 apps.
This event is not ...
0
votes
1answer
41 views
Windows 8: Html markup not showing on page
I am new to Windows 8 development, and am going the Html/Javascript route. I have started out with the Grid template.
Why when I add, Test Content.. to the content area html (not the item template ...
1
vote
2answers
176 views
Jquery not working in Windows8 HTML 5 App
I created new Windows 8 HTML 5 App. I added jquery file to it. But the Hello World! is not getting printed in TextBox
MainPage.xaml.cs
private void Browser_Loaded(object sender, RoutedEventArgs e)
...
1
vote
1answer
37 views
badge to the tile in my windows 8 app
I want to display a badge to the tile in my windows 8 app.I have tried following code and not getting the badge in the tile.No errors are showing up. I am not getting what the problem is.I am stuck up ...
0
votes
1answer
32 views
How can I detect the size of a WebView in the HTML using either CSS or Javascript?
We are building a Windows 8 app and we'd like to support the snapped view. Some of our content is loaded from 3rd party HTML pages where we embed a WebView in the XAML. Everything loads fine, but we'd ...
2
votes
2answers
119 views
PhoneGap & Windows Phone 8
I want to use jQuery mobile on windows phone 8, but jQuery Mobile doesn't support Windows Phone 8 officially.
So I just want to know if there is a cross-platform framework like jQuery Mobile with ...
0
votes
2answers
40 views
Javascript - WinRT - How share score with twitter or Facebook?
I make a html5/JS game on WinRT for Windows 8.
I would like to share score of a game with twitter or Facebook. Can we do this ? There is a the sharing contract, but I only know it for email. Can we ...
3
votes
2answers
89 views
WinJS gestureRecognizer - how to trap multiple gestures
I've been using this article (and some others) to try and implement a gesture recognition in my app, and it does work. However, what I want to do is to detect multiple gestures; for example, a swipe, ...
-1
votes
0answers
48 views
WinJS.ListView databinding behaving strangely
I have asked this question on Windows 8 forum. But I am posting it here for wider audience.
I am facing strange behaviour with data binding with WinJS.ListView. For full details please refer to the ...
-1
votes
0answers
83 views
Develop Windows 8 apps with Dart [closed]
I'm thinking of developing a web app that I can easily import to other platforms. I know that one can develop Windows 8 apps with JavaScript and HTML5. Since Google's Dart has a built in dart2js ...
0
votes
2answers
54 views
WinRT with VS2010 on Win8?
To what extent is it possible and legal to developer WinRT applications with VS2010 Pro?
On the one side, I think it should be perfectly possible and legal to create an HTML5/CSS/JavaScript WinRT ...
1
vote
1answer
72 views
Webstorage in Windows 8 html5/JS apps
This has been a hard question for me to track down. I am creating a windows 8 HTML5/JS app to be deployed into the windows 8 marketplace. I am using the construct2 game engine to generate the html5/js ...
1
vote
2answers
67 views
innerHTML adds text but not html tags
First off sorry for this beginner question but I just recently learned JavaScript and I am now learning to develop Windows 8 apps. Here is the code in question:
var numbers = [1, 2, 3, 4, 5];
...
0
votes
2answers
114 views
WIndows 8 App, HTML/Javascript Offline Black Screen
I'm trying to develop a small Windows 8 App as a test for a larger project that I'll be working on.
I'm using VS 2012, HTML, CSS, and Javascript. I've been able to create, build and deploy the app ...
1
vote
1answer
79 views
winjs appbar.wincontrol is null
I am creating a Windows 8 HTML5 app, and implementing an app bar. When I access the appbar.winControl it is always null. So if for example I write appbar.winControl.show() I get an exception claiming ...
7
votes
2answers
159 views
Do Windows 8 JavaScript apps support GIF images?
Do Windows 8 JavaScript apps support GIF images?
If so, how can I display the GIF image?
I tried this below code but it wasn't working:
<img id="backround" src="images/header.gif" />
Update
...
0
votes
1answer
93 views
Windows 8 javascript html5 app not parsing xml
My javascript XML parsing code works fine when I load it in firefox using local HTML & XML files, however when i build my app in visual studio 2012 (HTML5 javascript app) using the same code it ...
2
votes
2answers
106 views
How to make winJS app scrollable?
I am new to developing Windows 8 store apps, and I am in the process of creating my first one.
The app I am making is a note taking app. I only started the app yesterday, so it's still very basic, ...
0
votes
1answer
50 views
Peer to Peer Connection in Windows Store App (HTML/JS)
I'd like to know if anyone has managed to set up a peer-to-peer app for the Windows Store using HTML5 and JavaScript. Basically I want app client A to be able to connect and send data to app client B ...
0
votes
0answers
83 views
can Windows 8 html 5 textbox input manipulation work through buttons?
I am working on an windows store html5 application part of which has text boxes and buttons with key labels such as a,b,c,d,e,f. I want it such that when the user is focused on each textbox, the ...
0
votes
2answers
362 views
Applying a CSS style to an HTML table
I'm not sure if it makes a difference, but this question relates to HTML5 from within a Windows 8 app.
I have the following input form:
<div class="input-form">
<form id="myData" >
...
1
vote
1answer
62 views
Windows 8 Javsacript Promises
I have the following function:
function pickContacts() {
var output = "";
// Create the picker
var picker = new Windows.ApplicationModel.Contacts.ContactPicker();
...
4
votes
2answers
37 views
Javascript roaming settings using Win8
I'm trying to use roaming settings in a WinJS app. The code I'm using is here:
var test = document.getElementById("testButton");
test.addEventListener("click", function () {
var appData = ...
1
vote
0answers
112 views
Avoid Redrawing of page element (ListView) Windows 8 HTML5 JS
Is there is a way to avoid redrawing of page elements(List View) is often visible during the transition from and to snapped view and when panning large hubs quickly?
0
votes
0answers
77 views
How do i make a full screen ListView like the Windows Store?
I try to insert a ListView in my App with the following Code:
<div class="article-list"
data-win-control="WinJS.UI.ListView" data-win-options="{itemDataSource :
...
0
votes
1answer
206 views
C# or WinJS : GridView scrollable with mouse?
I'm starting a Windows 8 application, and I've been trying to create a GridView that would behave like a Carousel/Coverflow, which means it would be scrollable with :
finger touch (it works fine)
...
0
votes
1answer
66 views
Is it possible to develop Win8 apps in different IDE than Visual Studio?
As the title mentions I would like to develop a html/css/js app for Windows8 but I'm not a fan of Visual Studio either the express or standard version when it comes to developing html.
Thus my ...
0
votes
0answers
332 views
HTML5 Audio Controls Not Working in IE10 on Windows 8
coding newbie here. I am a graphic designer who has a basic understanding of HTML. I was recently asked to code a website for a friend's mother which required the use of an audio player to play ...
1
vote
1answer
326 views
Get User Account Active Directory Group in Windows 8 app
I have been struggling with this problem all day.
I am developing a Windows 8 app using JavaScript and HTML5. I need to restrict some functionality on the app depending of the active directory group ...
2
votes
2answers
194 views
How to show data from array in windows 8 app
I have a problem displaying information in an array with windows 8 app, i send information to the view with this.
var details = document.querySelector(".articlesection");
var data = [{
"id": "1",
...
1
vote
1answer
50 views
How to uncheck a checkbox if audio stops?
I have a checkbox that plays audio when it's checked and stops playing audio when unchecked. But the audio stops at a point if you keep it checked because of the length of the audio. When the audio ...
0
votes
2answers
130 views
Windows 8 : HTML5 Bug
So I'm trying to adventure into the mystical world of windows 8 programming. I noticed I can code an app in HTML5 (COOL!) but I've ran into a bit of a bug in what I've written. There is no purpose to ...
2
votes
1answer
280 views
WinJS, data-win-bind for script controlled binding?
I'm working on a Windows 8 App in HTML5/Javascript. I created a custom control that uses a stack of DIVs to display content, and each DIV is rendered using WinJS.Binding.Template. The setup is close ...
0
votes
1answer
179 views
Windows 8 Audio playing in background
I have read previous posts on this and documents by microsoft but cannot seem to get my app to run Sound in the background. It plays 100% but when ever the app is then suspended the music also stops. ...
1
vote
2answers
76 views
How to detect an audio has reaches 30 seconds into playing?
I have an audio tag that streams music from a web url. Once the song gets to over 30 seconds i want to get it to run a piece of code. Whats the best way to achieve this?
0
votes
2answers
49 views
HTML1121: Codepage unicode is not allowed, only codepage utf-8 is allowed
I see this error in Visual Studio 2012 as I'm trying to get my HTML5 app running inside a native Windows 8 app:
HTML1121: Codepage unicode is not allowed, only codepage utf-8 is allowed.
Clearly ...
0
votes
0answers
206 views
Thumbnail in a windows 8 metro rss reader app with html/js
I'm starting to program for Windows 8 Metro style. Following a tutorial that makes a reader for RSS feeds, I realized that for some rss URL I showed the picture of the post.
The application uses the ...
0
votes
1answer
164 views
HTML5 form within Windows 8 Store App
I have a HTML5 form which looks like this:
<form id="myData">
<p>Email
<input type="email" title="myEmail" id="email" required />
...
1
vote
6answers
572 views
Windows 8 tile tags are being ignored
I'm trying to make a Windows 8 tile for my website using the following code:
<meta name="application-name" content="Home | <?php echo bloginfo('name'); ?>" />
<meta ...
0
votes
1answer
171 views
How can i reorder(Drag & drop) Listview items in Windows 8 metro app
How can i reorder(Drag & drop to arrange item positions) List view items in Windows 8 metro app(HTML 5/JavaScript), I have a listview and the items are binded from the SQLite database, please ...
0
votes
1answer
24 views
which event gets triggered upon installation of the windows8 app? I want to create indexdb database on installation of the app
I was just wondering where and how I should be creating indexdb database in my win8 app. I am not sure which event gets triggered when the app is first installed on user machine.
I believe that
if ...
0
votes
1answer
67 views
Windows 8 adding images
I'm trying to add images to my hello world app (HTML / JavaScript).
I am able to add the standard images (logo.png, smalllogo.png etc), but adding:
<img src="images/testImg.png"> won't show, ...
0
votes
1answer
195 views
Audio not playing using HTML 5 in Windows 8 Phone
I am trying to make an audio player using HTML 5 project template. I am using the following HTML code :
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" ...
1
vote
2answers
62 views
listening to click or double click even from other windows8 apps in my app?
I want to create an app which just listen to the double click event from every other windows app where its possible and then open up and dialogue box showing the text selected with double click event ...
0
votes
0answers
216 views
Windows 8 drag and drop using javascript html5
How can i enable my tiles(Windows 8 Apps ) to enable drag and drop. I want my tiles can be dragged and dropped within a gridview. Is there a way I can enable it. I found a ...
1
vote
1answer
155 views
Can I program & run metro app for windows 8 using HTML5 on windows server 2012?
I need to learn to program Windows 8 "Windows Store" apps (formerly called Metro.) Instead of Windows 8, I have a license of Windows Server 2012. The question is, can I run and program Metro apps ...
0
votes
2answers
142 views
jQuery click event not firing on form submit?
I am not sure what is wrong but every alternate time my click event does not fire. Is there a problem with fadeIn function? I tried changing .click to .live and .on and the same problem arises.
Here ...
0
votes
1answer
50 views
Adding labels to min and max of a range type input control?
My code:
<input type="range" min="0" max="12" step="4" />
I am building a Windows Store App and would like to indicate min and max in terms of labels as well. 0 being fast and 12 being slow.
...



