HTML Cut up for Mail Template or Newsletter

In this article, I am writing by summary from the article that posted on this URL http://www.sitepoint.com/code-html-email-newsletters/There are important to note is that Mail Template is not going to show on web browser, but Email Client. Mail clients are light years behind the eight-ball in terms of CSS support, which means that we must resort to using tables for layout if we really want our newsletters

p1

Adobe release display3D classes fro Actionscript

Display3D ... Add latest flash player package to Project Library Goto http://www.adobe.com/support/flashplayer/downloads.html Find: PlayerGlobal (.swc) , the click on link below to download swc Copy swc to project folder, then open project with FlashDevelop , then right click Add to library. And now you can use Display3D class in your Flash Application. [notice]: refin

p1

Cache Resources of Web Application for Offline Working

In this post, I would note the way to cache resources for offline support. This is useful, when we want to build application for iphone or android, our user just visit our website and they can add our built application to home screen, they (users) can launch application when they don't have internet connection. Here is the note: - Create file called chace.manifest in the same location of your

p1

LocalStorage with Sencha Touch

Sencha Touch is java framework to build web mobile application. In this post I will note about how to store data in LocalStorage this take advantage to make application work offline. We need to create 2 data store object as below: store to load data from online server. this.store = new Ext.data.Store({ autoLoad: true, model: 'Icons', proxy: { type:

p1