This post is a part 38 of Intel XDK Complete Tutorial post series. In this tutorial we will look at Intel XDK’s Video player APIs. Most apps require video to be played therefore exploring this API is very important. In this tutorial we will first learn how to include Intel XDK video plugin in our […]
Binary files contain binary data. Learn to store binary data in redis.
Image files are binary files. Learn to store binary data in redis.
This post is a part 37 of Intel XDK Complete Tutorial post series. In this tutorial I will show you how to record video using built in camera in Intel XDK. Including Cordova Capture Plugin Intel XDK doesn’t provide any API to record video using Intel XDK. Therefore we have to use cordova Capture plugin […]
This post is a part 36 of Intel XDK Complete Tutorial post series. In this tutorial I will show you how to record audio using microphone in Intel XDK. Including Cordova Capture Plugin Intel XDK doesn’t provide any API to record audio using Intel XDK. Therefore we have to use cordova Capture plugin to record […]
This post is a part 35 of Intel XDK Complete Tutorial post series. Intel XDK and Cordova doesn’t provide any built in API to toggle flashlight on/off. We need to use Flashlight plugin toggle flashlight in Intel XDK. Installing Flashlight Plugin Follow these steps to open remote plugin install box Projects → Select your project […]
APP Framework is a CSS and JavaScript library which is used to design mobile applications created using HTML5 Mobile frameworks like Phonegap or Intel XDK. Intel APP Framework can do more things than just designing, its primary objective is to design apps. This is a tutorial for beginners who don’t have any knowledge about APP […]
In this tutorial I will show you how you can assign JavaScript variables using WordPress. The Hacky Way Its true that we only need to generate JavaScript variables dynamically not the whole script. Here is my solution WordPress Code <?php $variable_1 = "QNimate"; $variable_2 = "QScutter"; ?> […]
You should’t load you widget styles and scripts on frontend always. Enqueue them only if widget is active. We can check if widget is active or not using is_active_widget function inside Widget constructor. Here is the example code <?php function load_scripts() { wp_enqueue_script(’raphael’, plugin_dir_url( __FILE__ ) . ‘js/raphael.js’, array(), ‘1.0.0’, true); } class […]
Most Commented