Because you simply cannot ignore it. It is just an amazing tool to have
Namoskar!!!
It is no more $99 for the next 8 days till 11/7/2012. So go and grab this opportunity to have the 92% discount
https://dev.windowsphone.com/en-us/join
Are available at http://msdn.microsoft.com/en-us/library/windows/apps/hh770557.aspx
previous
next
play
pause
edit
save
clear
delete
remove
add
cancel
accept
more
redo
undo
home
up
forward
right
back
left
favorite
camera
settings
video
sync
download
mail
find
help
upload
emoji
twopage
leavechat
mailforward
clock
send
crop
rotatecamera
people
closepane
openpane
world
flag
previewlink
globe
trim
attachcamera
zoomin
bookmarks
document
protecteddocument
page
bullets
comment
mail2
contactinfo
hangup
viewall
mappin
phone
videochat
switch
contact
rename
pin
musicinfo
go
keyboard
dockleft
dockright
dockbottom
remote
refresh
rotate
shuffle
list
shop
selectall
orientation
import
importall
browsephotos
webcam
pictures
savelocal
caption
stop
showresults
volume
repair
message
page2
calendarday
calendarweek
calendar
characters
mailreplyall
read
link
accounts
showbcc
hidebcc
cut
attach
paste
filter
copy
emoji2
important
mailreply
slideshow
sort
manage
allapps
disconnectdrive
mapdrive
newwindow
openwith
contactpresence
priority
uploadskydrive
gototoday
font
fontcolor
contact2
folder
audio
placeholder
view
setlockscreen
settile
cc
stopslideshow
permissions
highlight
disableupdates
unfavorite
unpin
openlocal
mute
italic
underline
bold
movetofolder
likedislike
dislike
like
alignright
aligncenter
alignleft
zoom
zoomout
openfile
otheruser
admin
street
map
clearselection
fontdecrease
fontincrease
fontsize
cellphone
reshare
tag
repeatone
repeatall
outlinestar
solidstar
calculator
directions
target
library
>
phonebook
memo
microphone
postupdate
backtowindow
fullscreen
newfolder
calendarreply
unsyncfolder
reporthacked
syncfolder
blockcontact
switchapps
addfriend
touchpointer
gotostart
zerobars
onebar
twobars
threebars
fourbars
Your app begins the certification process when you upload it to the Store. During the upload process, we check your app's packages for technical compliance with the Certification requirements for Windows apps. If your app passes these tests, you'll see a successful upload message under the upload control in the Packages page.
If a package fails an upload test, you'll see an error message. See Resolving package upload errors for possible errors and their resolutions. Correct the error and upload the package again.
After you upload the app's packages and you submit your app for certification, the packages are queued for the automated tests.
The first test checks your app's packages for viruses and malware. If your app fails this test, see Malware scanning in Resolving certification errors.
Technical compliance is tested by the Windows App Certification Kit. For info on how you can test your app with this kit before you submit it to the store, see How to test your app with the Windows App Certification Kit.
Content compliance is tested manually by a person. How long it takes the tester to complete this test depends on such factors as how complex your app is, how much visual content it has, and the tester's backlog of work.
Tip Describe any steps or procedures that can help make it easier to test your app in the Notes to testers page.
At the time you specify, either on a specific date or as soon as possible, we send your signed app to the servers and its description appears in the Windows Store catalog.
Note It might take some time for your app's listing to appear in search results. This is normal. Also, you can't change a release date after you submit the app to the Windows Store, but you can cancel the release, update the release date, and re-submit.
After your app passes the certification testing, its packages are digitally signed to protect them against tampering after they have been released.
Note You don't have to sign your app's packages before you submit them to the Store. We'll sign them for you after they pass certification testing.
Important When this phase begins, you cannot cancel your submission.
After the certification process completes, you get a certification report, whether your app passes certification and is listed in the Windows Store or not.
If your app fails one of the certification tests, you will see this on the report. Resolving certification errors has more info on how to fix your app so you can submit it for certification again.
This content is from MSDN http://msdn.microsoft.com/en-us/library/windows/apps/hh923026.aspx
Downloadable link to free eBook from Microsoft on Programming Windows 8 with HTML, CSS and JavaScript http://blogs.msdn.com/b/microsoft_press/archive/2012/08/20/free-ebook-programming-windows-8-apps-with-html-css-and-javascript-second-preview.aspx
This one is very commonly asked question. How long it takes Microsoft to certify my application?
Below is the screen shot I took today (October 21, 2012)
So it is around 8-9 days. Not bad!!!
Do read!!! http://msdn.microsoft.com/en-us/library/windows/apps/hh694083.aspx
Follow 4.1 if you have internet connectivity dependency.
At runtime we may have file coming from sources like Web Cam. This is not a file at that point in time. It is just a stream. Now, if I am into a HTML WinJS app how can I add it?
Let’s you have a file with “myFile”.
//Make the temporary URL (HTML5) //This URL is valid only within the context var url = URL.createObjectURL(myFile); var img = document.createElement("img"); //Then add the URL as src img.src = url;
//Make the temporary URL (HTML5)
//This URL is valid only within the context
var url = URL.createObjectURL(myFile);
var img = document.createElement("img");
//Then add the URL as src
img.src = url;
Windows 8 and WinJS.xhr goes hand in hand while developing application to consume web. I was trying out something like that. It used to work fine for the first run. But the second and consecutive runs it gives error as below.
Error message
Exception is about to be caught by JavaScript library code at line 2351, column 21 in ms-appx://microsoft.winjs.1.0/js/base.js
0x800c0008 - JavaScript runtime error: The download of the specified resource has failed.
If there is a handler for this exception, the program may be safely continued.
I had to delete the bin\debug to run it. This is not possible in installed application and this error was causing my application failure.
I got an elegant solution to get rid of this issue. Somehow it was caching the page and due to which I was getting error at base.js file which I cannot edit.
So I have added the code to disable the cache
return WinJS.xhr({ url: url1, headers: { "Cache-Control": "no-cache", "If-Modified-Since": "Mon, 27 Mar 1972 00:00:00 GMT" } });
return WinJS.xhr({
url: url1,
headers: { "Cache-Control": "no-cache", "If-Modified-Since": "Mon, 27 Mar 1972 00:00:00 GMT" }
});
http://download.microsoft.com/download/9/3/8/938A5074-461F-4E3D-89F4-5CE2F42C1E36/fulltril30/exe/WPexpress_full.exe
Want to learn the various feature of Windows 8 App Dev. Just follow these 8 labs and you are done!!!