You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
varairprint=require("ti.airprint");if(!airprint.canPrint()){Ti.API.info('Printing is not supported in this version of iOS');return;}// Print a PDF from somewhere onlineairprint.print({url: 'https://www.gradekeeper.com/downloads/gk-iphone-users-guide.pdf'});// Print an image from somewhere onlineairprint.print({url: 'https://www.gradekeeper.com/dethier/images/orion_nebula.jpg'});// Print html contained in a stringvarmarkup='<html><head></head><body><h1>Print me!</h1></body></html>';airprint.print({html: markup});