When building mobile applications with PhoneGap you often need to share stuff too. Â With PhoneGap Plugin provided by Eddy you can easily share any content seamlessly on Social Media Networks. The plugin support iOS, Android & Windows platform. Also supported by PhoneGap Build. You can share your content by SMS, […]
Share on Social Media from PhoneGap Mobile Application
Download File in PhoneGap Mobile Application
Often we require a functionality where files have to be downloaded and stored. These file can be images, music files etc… In PhoneGap File API can be used to perform these operation on files. The files downloaded are stored in SD card. The code attached is officially confirmed/provided by PhoneGap […]
KineticJS – HTML5 Canvas JavaScript Framework
A HTML5 Canvas JavaScript framework that enables high performance animations, transitions, node nesting, layering, filtering, caching, event handling for desktop and mobile applications. The working of KineticJS is based on layers. Each layer can contain shape, images or group of both. The implementation is similar to that of DOM Nodes. […]
SMS, Email, Call from PhoneGap Mobile Application
Often we require to share content (Email or SMS ) from a mobile application. When developing applications using PhoneGap framework you can trigger the default application of the OS to perform these operations. //Call Phone //window.location.href = “tel:9769838218” //Send Mail //window.location.href = “mailto:darshanyrane@gmail.com?subject=Hello World&body=Mail from Phonegap” //Send SMS //window.location.href […]
Web Service in AS3
The original/classes post was written way back in 2007 by Carlo Alducente. I managed to use the classes in 2012 for a mobile application. This is a simple to use class which allows you to call the web services straight from AS3. I had a requirement to call a web […]