This post is a part 23 of Intel XDK Complete Tutorial post series. We can easily find if the app is currently running in emulator or device by the below code snippet document.addEventListener("intel.xdk.device.ready",onDeviceReady,false); function onDeviceReady(evt) { if (intel.xdk.isnative==true) { // Application is running on native device console.log("Running on a […]
This post is a part 22 of Intel XDK Complete Tutorial post series. In this tutorial we will learn Intel XDK barcode API. Before we proceed with building a application using Intel XDK barcode API we first need to learn what barcode is and how we can generate barcodes using PHP. What is Barcode? A […]
This post is a part 21 of Intel XDK Complete Tutorial post series. You can vibrate phone using Intel XDK by just one line of code document.addEventListener("intel.xdk.device.ready",function(){ //you have to call this function inside a event handler. intel.xdk.notification.vibrate(); […]
This post is a part 20 of Intel XDK Complete Tutorial post series. A beep sound can be used to notify a user about a incoming chat message while the user is chatting with someone else. It can be used for many other cases but its always related to notifying a user while user is […]
This post is a part 19 of Intel XDK Complete Tutorial post series. Many times you would have seen a loading indicator in status bar while using a app. This indicator is used to convey to user about something been downloaded by the app or app is loaded some library. Intel XDK developers can display […]
When you download a font you will always find four different files. Each of these files are differentiated by their weight and style i.e., normal, bold, italic and bold-italic. You would usually use them this way: @font-face { font-family: "PT-sans-bold-italic"; src: url("fonts/PT-sans-bold-italic.ttf"); } @font-face { font-family: "PT-sans-bold"; src: url("fonts/PT-sans-bold.ttf"); } @font-face […]
This post is a part 18 of Intel XDK Complete Tutorial post series. Before we learn about Intel XDK confirm box let’s first see what a alert box is and how it is different from confirm box. A Intel XDK alert box is a popup box that is used to inform user about something. Alert […]
This post is a part 17 of Intel XDK Complete Tutorial post series. A Intel XDK alert box is a popup box that is used to inform user about something. Alert box has only one button and when its clicked the alert box closes. There is no event fired when the alert box is closed […]
I have created a video on how to build ios app binary and then publish the app to app store.
Most Commented