*/
StringBuffer savedVml= new StringBuffer();
try {
XmlPullParserFactory factory = XmlPullParserFactory.newInstance();
factory.setNamespaceAware(true);
XmlPullParser xpp = factory.newPullParser();
xpp.setInput(ii, null); // using XML 1.0 specification
int eventType = xpp.getEventType();
// NOTE: since vml controls visibility (hidden or shown), text box size, etc., notes are created upon VML parsing
// and edited here for the actual text and formats ... ms's legacy drawing stuff makes for alot of convoluted processing ((;
FastAddVector nhs= new FastAddVector();