Word Doc

buzztouch plugin: Word Doc
Version: v1.5
Word documents can be included in the project and compiled in the application or they can be downloaded from a URL when the app runs. If they are downloaded from a URL they are cached on the device for offline use.
works on iOS iOS
works on Android Android
Developer Info
Latest Review
Pointerchris1 | 07/02/13 (v1.4)
It's been a while since I reviewed this plugin, so I'm updating my comments. This plugin is fairly basic - it displays a Word document in a WebView. But it's free so how can you go wrong? :) It would be nice if there was a Word editor plugin, but ...
Screenshots
More Information
This displays an Word document that is either compiled in the Xcode or Android project or
loaded from a URL. If the document is loaded from a URL the device will cache it for offline use.
If the document is compiled in the app (and not loaded from a URL) it will display faster but you
will not be able to change the document without re-compiling the app. Deciding which approach is
best is sometimes difficult. It's usually best to load a document from a URL so the application
is lighter, more flexible, and updateable.

Launch in Native Browser: If you turn this option on in the advanced settings you must use the URL
option, local files cannot load in the device's native browser. Android: Most native browsers
on Android cannot display documents of this type and will download the document to the users
device instead.

iOS Project
------------------------
1 Objective-C class (a total of 2 files) are needed.
BT_screen_wordDoc.m and .h

BT_screen_wordDoc.m is a UIViewController with a UIWebView used to display the file.

Android Project
------------------------
1 .java class file is needed, 1 layout xml file is needed, and 1 image is needed (a total of 3 files)
BT_screen_wordDoc.java
screen_worddoc.xml
screen_worddoc.png

BT_screen_wordDoc.java is an Android Activity that serves as a landing screen with two buttons and a
graphic. Open or Download. The screen_worddoc.xml file handles the layout. A landing screen is
necessary because Android cannot display this type of document natively. When the Open button is used
the device will determine which application to display the document with.

Version History
-----------------

v1.3     11/10/2012
          Minor syntax changes to accomodate for Xcode 4.5 compiler warnings.
          Minor changes in .java files to accomodate for Anroid (Google) 2.2 API's compiler warnings.
          Minor UI changes in .php files for control panel.

v1.0, 1.1, 1.2 (historical versions, no change details)


JSON Data
------------------------

Most folks use the control panel to configure the JSON data for this plugin but it's useful to
see what it may look like. This example loads a document from a URL

{
     "itemId":"343434",
     "itemType":"BT_screen_wordDoc",
     "navBarTitleText":"Word Doc",
     "dataURL":"http://www.mydomain.com/sample.doc"
}

This example loads a document from the applications bundle (compiled in Xcode or Eclipse). Note
that a localFileName is used instead of a dataURL.

{
     "itemId":"343434",
     "itemType":"BT_screen_wordDoc",
     "navBarTitleText":"Word Doc",
     "localFileName":"sample.doc"
}