How To Create A Website In Vablet (For Web) With Html And Html (For Html) On A Pc Or Mac) With A Web Browser (For Mac) On Your Computer Or Ipad Or Ipa (For Pc Or Ip

Size: px
Start display at page:

Download "How To Create A Website In Vablet (For Web) With Html And Html (For Html) On A Pc Or Mac) With A Web Browser (For Mac) On Your Computer Or Ipad Or Ipa (For Pc Or Ip"

Transcription

1 HTML Integration (ios only) Phone: vablet.com This guide will show you how to integrate HTML content into your vablet experience. Here is a snapshot of 5 common options for integrating HTML: 1 Custom Brand Launch Create your own branded look when vablet is launched. Position quick links or an active ToC to specific files Go straight to your current catalog or pricing sheet Run a product demo video instantly See coding guide on page 3 of this document and coordinate with a graphic designer 2 Opening HTML(5) Website within vablet Leverage your existing HTML developed for web engagement and integrate it into your vablet sandbox. Great for a rich, multi-media sales experience - access an online web form such as a cost calculator or a project template, available offline! 2 How it Works: 1. Zip up the website content and rename the extension to.zhtml 2. Make sure the home page is called: index.html 3. When uploaded to the console, you can establish settings and permissions just like any other file. When the device user opens this file, it will unzip and launch. That's it! For coding instructions, see page 3 of this User Guide. Display Live HTML If you plan to display live web content within vablet, your device must have Wi-Fi/3/4G access. Include the following syntax, in case the device does not have a Wi-Fi signal: 3 <html><head> <meta http-equiv="refresh" content="1;url= catid=1"> </head><body> This page will only be viewable when the device is connected to the Internet. </body> </html> ios ONLY

2 Phone: vablet.com HTML Coding Guide (ios only) HTML Integration 4 5 If you want to enable your HTML to send an , such as data from a webform, results from a survey, cost analysis from a calculator. Reference the sample code on page 4 of this document. Data Capture w/ HTML Forms Let s say you have an interactive form as a part of your sales process, utilized to gather feedback or input from customers on your products and/or services. Capturing the data from the form is easily integrated into the vablet mobile platform. * Create impressive, branded design of your form, using HTML Link the data fields to the vablet console (see code below) Now you have centralized deployment and reporting for your HTML form(s) Sample HTML Form <input type="text" id="vablet_your_form_field_label_goes_here"></input> Supported Field types: Multiple Choice Check Box Text Box Range Make sure the ID starts with: vablet_ (vablet and underscore symbol) BONUS: With custom vablet tags you can include signatures and photo captures in your reporting. Include this code: " " " " <div style="margin-top:10px;"><vabletsignature id="vablet_signature_test"></ VabletSignature></div>" " " " <div style="width: 200px;margin: auto;margin-top:10px;"><vabletphotoselect id="vablet_photo_test"></vabletphotoselect>" </div> * See the Capture Data Tool User Guide for integration with the vablet console.

3 HTML Coding Guide (ios only) 1 Creating the HTML File to Work with vablet Phone: [email protected] vablet.com Follow this code legend for any of the above 5 options, depending on your strategy. This is likely the code you will need for Custom Launch #1. Note: There are two options for deployment, depending on which HTML option you are integrating. Once you have authored your HTML, then either: 1) save it as a web archive file (use Safari), or 2) Zip up the website content and rename the extension to.zhtml Then submit the file(s) to the project manager to upload the content to your vablet account using the Media Uploader on the Admin Console and test the HTML on devices. Syntax 1: Open by Folder Name <a href="vabletgeneral://openfolder/demo%20videos"> Syntax 2: Open by Folder Name and Return <a href="vabletgeneral://openfolder/demo%20videos? backfoldergoestofilewithname=filetitle">! (This will change the Home icon to Back and return user to the file specified in File Title.) Syntax 3: Return to Launch Page <a href= VabletGeneral://home"> Syntax 4: Open by File ID <a href="vabletgeneral://openfile/28324"> Syntax 5: Open by File ID and Return to Invoking Page <a href="vabletgeneral://openfile/28324? returnstocalleronclose=true"> There is a file ID - called a VRL code - for each file when saved to the vablet Console. Open the file from the Media Library and you ll find the VRL code toward the bottom of your file settings. Syntax 6: Open by File Title <a href= VabletGeneral://openFileName/testname"> Syntax 7: Open by File Title and Return to Invoking Page <a href="vabletgeneral://openfilename/testdocument?returnstocalleronclose=true" Syntax 8: For Navigation Commands within a PDF or HTML File <a href="vabletgeneral://openfilename/testdocument? returnstocalleronclose=true;pagetoreturnto=15" Important Tips: These formulas are case-sensitive. If there is a space in the title of the file or folder, insert %20. Do not directly reference an external URL via the <a href> tag: i.e. <a href= > See the next page for further instruction. If you are authoring an HTML file that opens another piece of media in vablet and you wish it to return back to the current HTML page vs the Custom Launch page, make note of 4 & 6 The smaller the web archive file the faster the page will load. Consider CSS for the Button design, instead of individual graphics, for an even faster load. The dimensions for the design of the HTML file should be 1024x768 for landscape display or 768x1024 for portrait. It s easier to keep the buttons/links on the launch page within the general center area of your design, making the links visible in either orientation, when the user rotates the device.

4 Phone: vablet.com HTML Coding Guide (ios only) 4 HTML Integration <form id=" form" onsubmit="return submit ();"> Enter a single to send the test to: <input type="text" id=" input"> <input type="submit" value="submit"> </form> <script> function submit () var thetext = document.forms[0][" input"].value; if (thetext == "" thetext == null) alert("enter an "); return false; VabletNativeInterface.callNativeMethod('Send ', 'subject': 'TestSubject', 'body': 'TestBody', 'to': [thetext], 'cc': [thetext], 'bcc': [thetext], 'attachmentdatabase64encoded': 'PHRlc3Q+dGVzdCBtZTwvdGVzdD4=', attachmentname: 'test.xml', function (response), null); </script> return false;

5 HTML Coding Guide con. Phone: vablet.com JS Functions These are advanced options to enable your own HTML code to interact with native device features. Calling Native Functions: In this section the functions are defined with this format function(arg1,arg2) You call the native interface with the name of the function and with named arguments and a callback for data to be returned. VabletNativeInterface.callNativeMethod(function,namedArguments,callback) *Note: You must wait until the vablet library is loaded to start calling functions, see the event section for details on registering for that event Example: Using the definition function(arg1,arg2), calling this would look like: VabletNativeInterface.callNativeMethod( function, arg1 : x, arg2 : y, function (response) if (response.success) //The function returned a success do something else //The function returned a failure do something else alert(response.error); ); Global Preconditions: Currently no argument may be a null object. For optional arguments nonexistent is ok. Global Returns: success - This is a boolean that indicates whether the function was successful or not error - If the function was unsuccessful, then details on the error are returned here

6 Events - VabletManifestUpdated This event is triggered each manifest update - VabletLibraryLoaded This event is triggered when the library is ready to use. Generally used when you need do something on page load after the vablet library is ready. document.addeventlistener('vabletlibraryloaded', function onbridgeready(event) //Start calling vablet functions here, 1000); - getlatestmanifest() Functions Starts an update and calls back after the update is finished - usevabletguitosend forfiles(fileids) If no files can be ed then success is false - togglefavoritestatusforfilewithid(fileid) - toggletagstatusforfilewithid (fileid) - send forfiles(to,fileids,body,company,subject,includeannotation,sendaslin k,sendasattachment,compressoutputatnumberofbytes) *Notes: ** To is an array of Array of 'name':'x',' ':x ** Currently always returns success because is queued ** The server sends bad request currently if compressoutputatnumberofbytes is not -1, I will have to have Mamoru look into this *Example: var senddata = 'Action': 'send forfiles', 'Data': 'to': ['name':'test',' ':'[email protected]'],'fileids':[fileid],'body':'test','company':'test Co','subject':'testSub','includeAnnotation':false,'sendAsLink':false,'sendAsAttachment':fal se,'compressoutputatnumberofbytes':-1

7 - searchforterm(searchterm,enableliveupdates) *returns success,files,isfinished If isfinished is false search is not complete and it is only an update. When search is finished isfinished will be true. files is an array of file objects with the following data: allowedorientations = 15; annotationpermission = 0; annotationsforpageorframenumber = areannotationsforfilepublic = 0; can = 0; canfilepaint = 0; canfileuseopenwith = 0; canprintfile = 0; checksum = 32669; customfilepath = 0; deleted = 0; deletedannotations = ( ); downloaddate = " :58: "; downloaded = 1; durationviewed = 0; editable = 0; encrypted = 0; expiredate = " :59: "; favorite = 0; fileid = ; filepath = files/ html"; filesize = 405; filesizefrommanifest = 405; hasupgradedencryption = 0; integritychecktype = 0; isfileencrypted = 0; isfilenew = 0;

8 isfileread = 1; ismanual = 0; isthumbdownloaded = 0; isvalidencryptionstate = 1; localfilename = " html"; loggingenabled = 1; manualdownloadactive = 0; maxviewcountallowed = 0; maxviewduration = 0; nonvabletlinksinfileopenexternally = 0; notesenabled = 0; possessiontime = 0; printable = 0; realfilename = "JSFunctionTests.html"; smallthumbpath = files/small_thumb_ html"; startdate = " :00: "; thumbhasfailed = 0; thumbpath = files/thumb_ html"; "thumb_url" = " title = JSFunctionTests; uploaded = 0; url = "secure://105858"; viewcount = 10; whentodisplaysurvey = 0; - getmanifestversion() *returns success,manifestversion - getfolderfulldatabypath(folderpath) - getfolderfulldatabyid(folderid) *These are example returns for both getfolderx full methods. It will be passed as a java object.

9 folderdata = ( filedata = allowedorientations = 15; annotationpermission = 0; annotationsforpageorframenumber = areannotationsforfilepublic = 0; can = 0; canfilepaint = 0; canfileuseopenwith = 0; canprintfile = 0; checksum = 32669; customfilepath = 0; deleted = 0; deletedannotations = ( ); downloaddate = " :58: "; downloaded = 1; durationviewed = 0; editable = 0; encrypted = 0; expiredate = " :59: "; favorite = 0; fileid = ; filepath = files/ html"; filesize = 405; filesizefrommanifest = 405; hasupgradedencryption = 0; integritychecktype = 0; isfileencrypted = 0; isfilenew = 0; isfileread = 1; ismanual = 0; isthumbdownloaded = 0; isvalidencryptionstate = 1; localfilename = " html"; loggingenabled = 1; manualdownloadactive = 0; maxviewcountallowed = 0;

10 maxviewduration = 0; nonvabletlinksinfileopenexternally = 0; notesenabled = 0; possessiontime = 0; printable = 0; realfilename = "JSFunctionTests.html"; smallthumbpath = files/small_thumb_ html"; startdate = " :00: "; thumbhasfailed = 0; thumbpath = files/thumb_ html"; "thumb_url" = " title = JSFunctionTests; uploaded = 0; url = "secure://105858"; viewcount = 10; whentodisplaysurvey = 0; type = File;, folderdata = groupid = "-73"; name = Favorites; systemgroup = 1; hidden = 0; usergroup = 0; type = Folder;, folderdata = groupid = "-71"; name = All; systemgroup = 1; hidden = 0; usergroup = 0;

11 type = Folder;, folderdata = groupid = "-72"; name = New; systemgroup = 1; hidden = 0; usergroup = 0; type = Folder;, folderdata = groupid = "-74"; name = Unread; systemgroup = 1; hidden = 0; usergroup = 0; type = Folder; );

JBoss Portal 2.4. Quickstart User Guide

JBoss Portal 2.4. Quickstart User Guide Portal 2.4 Quickstart User Guide Table of Contents Portal - Overview... iii 1. Tutorial Forward...1 2. Installation...2 2.1. Downloading and Installing...2 2.2. Starting Portal...3 3. Portal Terminology...5

More information

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500

Outlook Email. User Guide IS TRAINING CENTER. 833 Chestnut St, Suite 600. Philadelphia, PA 19107 215-503-7500 Outlook Email User Guide IS TRAINING CENTER 833 Chestnut St, Suite 600 Philadelphia, PA 19107 215-503-7500 This page intentionally left blank. TABLE OF CONTENTS Getting Started... 3 Opening Outlook...

More information

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface...

Module One: Getting Started... 6. Opening Outlook... 6. Setting Up Outlook for the First Time... 7. Understanding the Interface... 2 CONTENTS Module One: Getting Started... 6 Opening Outlook... 6 Setting Up Outlook for the First Time... 7 Understanding the Interface...12 Using Backstage View...14 Viewing Your Inbox...15 Closing Outlook...17

More information

Sizmek Formats. IAB Mobile Pull. Build Guide

Sizmek Formats. IAB Mobile Pull. Build Guide Sizmek Formats IAB Mobile Pull Build Guide Table of Contents Overview...3 Supported Platforms... 6 Demos/Downloads... 6 Known Issues... 6 Implementing a IAB Mobile Pull Format...6 Included Template Files...

More information

Use ArcGIS Online to Manage

Use ArcGIS Online to Manage Use ArcGIS Online to Manage Your Own Custom Map Gallery By Keith Mann, Esri Start customizing the template by changing the graphics and the web page title. Wouldn t it be great if you could create a dynamic

More information

Virtual Exhibit 5.0 requires that you have PastPerfect version 5.0 or higher with the MultiMedia and Virtual Exhibit Upgrades.

Virtual Exhibit 5.0 requires that you have PastPerfect version 5.0 or higher with the MultiMedia and Virtual Exhibit Upgrades. 28 VIRTUAL EXHIBIT Virtual Exhibit (VE) is the instant Web exhibit creation tool for PastPerfect Museum Software. Virtual Exhibit converts selected collection records and images from PastPerfect to HTML

More information

Communication Manager Email Template Library

Communication Manager Email Template Library Communication Manager Email Template Library Create and edit email templates for use in mass email and drip campaigns. Email templates can be stored in Template Tags for easy access to frequently used

More information

Welcome to Collage (Draft v0.1)

Welcome to Collage (Draft v0.1) Welcome to Collage (Draft v0.1) Table of Contents Welcome to Collage (Draft v0.1)... 1 Table of Contents... 1 Overview... 2 What is Collage?... 3 Getting started... 4 Searching for Images in Collage...

More information

UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1

UH CMS Basics. Cascade CMS Basics Class. UH CMS Basics Updated: June,2011! Page 1 UH CMS Basics Cascade CMS Basics Class UH CMS Basics Updated: June,2011! Page 1 Introduction I. What is a CMS?! A CMS or Content Management System is a web based piece of software used to create web content,

More information

Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation

Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation Course Information Course Number: IWT 1229 Course Name: Web Development and Design Foundation Credit-By-Assessment (CBA) Competency List Written Assessment Competency List Introduction to the Internet

More information

Generate Android App

Generate Android App Generate Android App This paper describes how someone with no programming experience can generate an Android application in minutes without writing any code. The application, also called an APK file can

More information

New and Improved DocuSign Signing Experience Information Guide

New and Improved DocuSign Signing Experience Information Guide New and Improved DocuSign Signing Experience Information Guide On December 5th, as part of the DocuSign Winter 15 Release, DocuSign will launch a new and improved version of the signing experience. The

More information

Quick Start Guide Mobile Entrée 4

Quick Start Guide Mobile Entrée 4 Table of Contents Table of Contents... 1 Installation... 2 Obtaining the Installer... 2 Installation Using the Installer... 2 Site Configuration... 2 Feature Activation... 2 Definition of a Mobile Application

More information

CREATE A CUSTOM THEME WEBSPHERE PORTAL 8.0.0.1

CREATE A CUSTOM THEME WEBSPHERE PORTAL 8.0.0.1 CREATE A CUSTOM THEME WEBSPHERE PORTAL 8.0.0.1 WITHOUT TEMPLATE LOCALIZATION, WITHOUT WEBDAV AND IN ONE WAR FILE Simona Bracco Table of Contents Introduction...3 Extract theme dynamic and static resources...3

More information

SizmekFeatures. HTML5JSSyncFeature

SizmekFeatures. HTML5JSSyncFeature Features HTML5JSSyncFeature Table of Contents Overview... 2 Supported Platforms... 2 Demos/Downloads... 3 Note... 3 For Tags Served in iframes... 3 Features... 3 Use Case... 3 Included Files... 4 Implementing

More information

We automatically generate the HTML for this as seen below. Provide the above components for the teaser.txt file.

We automatically generate the HTML for this as seen below. Provide the above components for the teaser.txt file. Creative Specs Gmail Sponsored Promotions Overview The GSP creative asset will be a ZIP folder, containing four components: 1. Teaser text file 2. Teaser logo image 3. HTML file with the fully expanded

More information

How To Write A Cq5 Authoring Manual On An Ubuntu Cq 5.2.2 (Windows) (Windows 5) (Mac) (Apple) (Amd) (Powerbook) (Html) (Web) (Font

How To Write A Cq5 Authoring Manual On An Ubuntu Cq 5.2.2 (Windows) (Windows 5) (Mac) (Apple) (Amd) (Powerbook) (Html) (Web) (Font Adobe CQ5 Authoring Basics Print Manual SFU s Content Management System SFU IT Services CMS Team ABSTRACT A summary of CQ5 Authoring Basics including: Setup and Login, CQ Interface Tour, Versioning, Uploading

More information

Marketing Cloud Email Quick References Guide

Marketing Cloud Email Quick References Guide Marketing Cloud Email Quick References Guide Navigating Marketing Cloud Follow these steps navigate to the Email Creation/ Email Send section of Marketing Cloud. 1. Click the Email Icon in the top left

More information

NetWrix File Server Change Reporter. Quick Start Guide

NetWrix File Server Change Reporter. Quick Start Guide NetWrix File Server Change Reporter Quick Start Guide Introduction... 3 Product Features... 3 Licensing... 3 How It Works... 4 Getting Started... 5 System Requirements... 5 Setup... 5 Additional Considerations...

More information

Requirements for Developing WebWorks Help

Requirements for Developing WebWorks Help WebWorks Help 5.0 Originally introduced in 1998, WebWorks Help is an output format that allows online Help to be delivered on multiple platforms and browsers, which makes it easy to publish information

More information

UOFL SHAREPOINT ADMINISTRATORS GUIDE

UOFL SHAREPOINT ADMINISTRATORS GUIDE UOFL SHAREPOINT ADMINISTRATORS GUIDE WOW What Power! Learn how to administer a SharePoint site. [Type text] SharePoint Administrator Training Table of Contents Basics... 3 Definitions... 3 The Ribbon...

More information

MiniBase. Custom View Tips & Tricks. Schoolwires Centricity 2.0

MiniBase. Custom View Tips & Tricks. Schoolwires Centricity 2.0 MiniBase Custom View Tips & Tricks Schoolwires Centricity 2.0 Table of Contents Introduction... 1 Creating an Email Field... 2 Creating an HTML Linking Field... 3 Creating a File Linking Field... 4 Inserting

More information

BLACKBOARD CONTENT COLLECTION FACULTY TRAINING GUIDE

BLACKBOARD CONTENT COLLECTION FACULTY TRAINING GUIDE BLACKBOARD CONTENT COLLECTION FACULTY TRAINING GUIDE Table of Contents About the Guide... 1 Overview... 2 Navigating the Content Collection... 3 Accessing the Content Collection... 3 Content Collection

More information

InfoView User s Guide. BusinessObjects Enterprise XI Release 2

InfoView User s Guide. BusinessObjects Enterprise XI Release 2 BusinessObjects Enterprise XI Release 2 InfoView User s Guide BusinessObjects Enterprise XI Release 2 Patents Trademarks Copyright Third-party contributors Business Objects owns the following U.S. patents,

More information

Decision Support AITS University Administration. EDDIE 4.1 User Guide

Decision Support AITS University Administration. EDDIE 4.1 User Guide Decision Support AITS University Administration EDDIE 4.1 User Guide 2 P a g e EDDIE (BI Launch Pad) 4.1 User Guide Contents Introduction to EDDIE... 4 Log into EDDIE... 4 Overview of EDDIE Homepage...

More information

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled

More information

Use Office 365 on your iphone

Use Office 365 on your iphone Use Office 365 on your iphone Quick Start Guide Check email Set up your iphone to receive your O365 email. Check your calendar wherever you are Always know where you have to be by syncing your calendar

More information

WinSCP for Windows: Using SFTP to upload files to a server

WinSCP for Windows: Using SFTP to upload files to a server WinSCP for Windows: Using SFTP to upload files to a server Quickstart guide Developed by: Academic Technology Services & User Support, CIT atc.cit.cornell.edu Last updated 9/9/08 WinSCP 4.1.6 Getting started

More information

Develop a Native App (ios and Android) for a Drupal Website without Learning Objective-C or Java. Drupaldelphia 2014 By Joe Roberts

Develop a Native App (ios and Android) for a Drupal Website without Learning Objective-C or Java. Drupaldelphia 2014 By Joe Roberts Develop a Native App (ios and Android) for a Drupal Website without Learning Objective-C or Java Drupaldelphia 2014 By Joe Roberts Agenda What is DrupalGap and PhoneGap? How to setup your Drupal website

More information

Foxit MobilePDF for ios Quick Guide

Foxit MobilePDF for ios Quick Guide for ios 1 Contents Chapter 1 Description... 3 Chapter 2 Main Menu... 5 Chapter 3 File Management... 7 Chapter 4 Viewing PDF Files... 8 Chapter 5 Annotation... 13 Chapter 6 Signatures... 18 Chapter 7 Text

More information

kalmstrom.com Business Solutions

kalmstrom.com Business Solutions HelpDesk OSP User Manual Content 1 INTRODUCTION... 3 2 REQUIREMENTS... 4 3 THE SHAREPOINT SITE... 4 4 THE HELPDESK OSP TICKET... 5 5 INSTALLATION OF HELPDESK OSP... 7 5.1 INTRODUCTION... 7 5.2 PROCESS...

More information

User Guide to the Content Analysis Tool

User Guide to the Content Analysis Tool User Guide to the Content Analysis Tool User Guide To The Content Analysis Tool 1 Contents Introduction... 3 Setting Up a New Job... 3 The Dashboard... 7 Job Queue... 8 Completed Jobs List... 8 Job Details

More information

Rochester Institute of Technology. Finance and Administration. Drupal 7 Training Documentation

Rochester Institute of Technology. Finance and Administration. Drupal 7 Training Documentation Rochester Institute of Technology Finance and Administration Drupal 7 Training Documentation Written by: Enterprise Web Applications Team CONTENTS Workflow... 4 Example of how the workflow works... 4 Login

More information

Chapter 14: Links. Types of Links. 1 Chapter 14: Links

Chapter 14: Links. Types of Links. 1 Chapter 14: Links 1 Unlike a word processor, the pages that you create for a website do not really have any order. You can create as many pages as you like, in any order that you like. The way your website is arranged and

More information

You can view, download or upload files through the WEB interface or FTP link depending on Type of access you have been granted.

You can view, download or upload files through the WEB interface or FTP link depending on Type of access you have been granted. Cannon FTP Site Instructions You can view, download or upload files through the WEB interface or FTP link depending on Type of access you have been granted. The typical rights assigned are: Read Only Allows

More information

Total Baby. Backup, Restore and itunes Backup Extraction

Total Baby. Backup, Restore and itunes Backup Extraction Total Baby Backup, Restore and itunes Backup Extraction Backup! 3 Introduction and Steps! 3 How to Backup! 3 Backup using E-Mail! 4 Backup using Wi-Fi! 4 Restoring! 5 Introduction and Steps! 5 How it Works!

More information

Using Your New Webmail

Using Your New Webmail 1 Using Your New Webmail Contents Compose a New Message... 3 Add an Attachment... 5 Insert a Hyperlink... 6 Forward an Email... 7 Search Email... 8 Download Email from an existing POP3 Account... 9 Move

More information

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY

Advanced Web Development SCOPE OF WEB DEVELOPMENT INDUSTRY Advanced Web Development Duration: 6 Months SCOPE OF WEB DEVELOPMENT INDUSTRY Web development jobs have taken thе hot seat when it comes to career opportunities and positions as a Web developer, as every

More information

Beginner s Guide to AIA Contract Documents Online Service for Single-Seat Users

Beginner s Guide to AIA Contract Documents Online Service for Single-Seat Users Beginner s Guide to AIA Contract Documents Online Service for Single-Seat Users Table of Contents Getting Started - Introducing ACD5- AIA Contract Documents New Online Service System Requirements Transitioning

More information

FAST-START GUIDE FOR ADMINISTRATOR - ECOMMERCE

FAST-START GUIDE FOR ADMINISTRATOR - ECOMMERCE FAST-START GUIDE FOR ADMINISTRATOR - ECOMMERCE ONLINE HELP: ELEAPSOFTWARE.COM/SUPPORT VERSION 2.2 COPYRIGHT 2009 TELANIA, INC. ALL RIGHTS RESERVED 2009 Telania, Inc. www.eleapsoftware.com - 1 - KEY UPDATES

More information

Pulse Secure Client. Customization Developer Guide. Product Release 5.1. Document Revision 1.0. Published: 2015-02-10

Pulse Secure Client. Customization Developer Guide. Product Release 5.1. Document Revision 1.0. Published: 2015-02-10 Pulse Secure Client Customization Developer Guide Product Release 5.1 Document Revision 1.0 Published: 2015-02-10 Pulse Secure, LLC 2700 Zanker Road, Suite 200 San Jose, CA 95134 http://www.pulsesecure.net

More information

FORM SIMPLICITY QUICK REFERENCE GUIDE PROFESSIONAL/ULTIMATE EDITION

FORM SIMPLICITY QUICK REFERENCE GUIDE PROFESSIONAL/ULTIMATE EDITION FORM SIMPLICITY QUICK REFERENCE GUIDE PROFESSIONAL/ULTIMATE EDITION Library Getting a Form 1. Click on Start a Form. (Alternatively, you can click on Library in the menu bar at the top) 2. This will open

More information

Operate Backup Data. This how-to document will walk you through how to acquire and view your (M)SDS collection from the backup we send you.

Operate Backup Data. This how-to document will walk you through how to acquire and view your (M)SDS collection from the backup we send you. Operate Backup Data SafeTec provides some form of backup (M)SDS data from SafeTec either quarterly, semi-annually, or yearly, depending on your contract. In the event of an emergency, this disc will allow

More information

1. Application Overview... 3. 2. System Requirements... 3. 3. Installation... 3. 4. Splash Screen... 4. 5. Registration Screen...

1. Application Overview... 3. 2. System Requirements... 3. 3. Installation... 3. 4. Splash Screen... 4. 5. Registration Screen... 1 P a g e Table of Contents 1. Application Overview... 3 2. System Requirements... 3 3. Installation... 3 4. Splash Screen... 4 5. Registration Screen... 5 5.1 Registration... 5 6. Login Screen... 7 6.1

More information

DocuSign for SharePoint 2010 1.5.1

DocuSign for SharePoint 2010 1.5.1 Quick Start Guide DocuSign for SharePoint 2010 1.5.1 Published December 22, 2014 Overview DocuSign for SharePoint 2010 allows users to sign or send documents out for signature from a SharePoint library.

More information

Configuring Salesforce

Configuring Salesforce Chapter 94 Configuring Salesforce The following is an overview of how to configure the Salesforce.com application for singlesign on: 1 Prepare Salesforce for single sign-on: This involves the following:

More information

OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook. 5/1/2012 2012 Encryptomatic LLC www.encryptomatic.

OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook. 5/1/2012 2012 Encryptomatic LLC www.encryptomatic. OutDisk 4.0 FTP FTP for Email Users using Microsoft Windows and/or Microsoft Outlook 5/1/2012 2012 Encryptomatic LLC www.encryptomatic.com Contents What is OutDisk?... 3 OutDisk Requirements... 3 How Does

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6.2 Content Author's Reference and Cookbook Rev. 091019 Sitecore CMS 6.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators

EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators EBOX Digital Content Management System (CMS) User Guide For Site Owners & Administrators Version 1.0 Last Updated on 15 th October 2011 Table of Contents Introduction... 3 File Manager... 5 Site Log...

More information

Wiki Server. Innovative tools for workgroup collaboration and communication. Features

Wiki Server. Innovative tools for workgroup collaboration and communication. Features Wiki Server Innovative tools for workgroup collaboration and communication. Features Single site for group collaboration Project-specific wiki accessible via web browsers on Mac, PC, iphone, and ipod touch

More information

Load testing with. WAPT Cloud. Quick Start Guide

Load testing with. WAPT Cloud. Quick Start Guide Load testing with WAPT Cloud Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. 2007-2015 SoftLogica

More information

Store & Share Quick Start

Store & Share Quick Start Store & Share Quick Start What is Store & Share? Store & Share is a service that allows you to upload all of your content (documents, music, video, executable files) into a centralized cloud storage. You

More information

Canterbury Maps Quick Start - Drawing and Printing Tools

Canterbury Maps Quick Start - Drawing and Printing Tools Canterbury Maps Canterbury Maps Quick Start - Drawing and Printing Tools Quick Start Guide Standard GIS Viewer 2 Canterbury Maps Quick Start - Drawing and Printing Tools Introduction This document will

More information

Introducing our new Editor: Email Creator

Introducing our new Editor: Email Creator Introducing our new Editor: Email Creator To view a section click on any header below: Creating a Newsletter... 3 Create From Templates... 4 Use Current Templates... 6 Import from File... 7 Import via

More information

Your Blueprint websites Content Management System (CMS).

Your Blueprint websites Content Management System (CMS). Your Blueprint websites Content Management System (CMS). Your Blueprint website comes with its own content management system (CMS) so that you can make your site your own. It is simple to use and allows

More information

Application Interface Services Server for Mobile Enterprise Applications Configuration Guide Tools Release 9.2

Application Interface Services Server for Mobile Enterprise Applications Configuration Guide Tools Release 9.2 [1]JD Edwards EnterpriseOne Application Interface Services Server for Mobile Enterprise Applications Configuration Guide Tools Release 9.2 E61545-01 October 2015 Describes the configuration of the Application

More information

Worksheet - Document management and Cloud Services on the ipad

Worksheet - Document management and Cloud Services on the ipad Worksheet - Document management and Cloud Services on the ipad This worksheet requires installation of the following ipad apps: Adobe Reader, Google Drive, Chrome, Windows Skydrive, Dropbox and Goodreader.

More information

ACE: Dreamweaver CC Exam Guide

ACE: Dreamweaver CC Exam Guide Adobe Training Services Exam Guide ACE: Dreamweaver CC Exam Guide Adobe Training Services provides this exam guide to help prepare partners, customers, and consultants who are actively seeking accreditation

More information

IBM Script Portlet for WebSphere Portal Release 1.1

IBM Script Portlet for WebSphere Portal Release 1.1 IBM Script Portlet for WebSphere Portal Release 1.1 Topics Why script applications for WebSphere Portal The Script Portlet approach and its benefits Using Script Portlet Accessing data and services Downloadable

More information

Using FileMaker Pro with Microsoft Office

Using FileMaker Pro with Microsoft Office Hands-on Guide Using FileMaker Pro with Microsoft Office Making FileMaker Pro Your Office Companion page 1 Table of Contents Introduction... 3 Before You Get Started... 4 Sharing Data between FileMaker

More information

Visualizing ECL Results Technical Preview

Visualizing ECL Results Technical Preview Visualizing ECL Results Technical Preview Provided by HPCCSystems Visualizing ECL Results Boca Raton Documentation Team November 2011 Version 3.4.0b (Technical Preview) Copyright 2011 HPCC Systems. All

More information

Module Google Rich Snippets + Product Ratings and Reviews

Module Google Rich Snippets + Product Ratings and Reviews Module Google Rich Snippets + Product Ratings and Reviews Date : May 13 th, 2013 Business Tech Installation Service If you need help installing and configuring your module, we can offer you an installation

More information

Getting Started with Microsoft Office Live Meeting. Published October 2007 Last Update: August 2009

Getting Started with Microsoft Office Live Meeting. Published October 2007 Last Update: August 2009 Getting Started with Microsoft Office Live Meeting Published October 2007 Last Update: August 2009 Information in this document, including URL and other Internet Web site references, is subject to change

More information

Getting Started with Microsoft Office Live Meeting. Published October 2007

Getting Started with Microsoft Office Live Meeting. Published October 2007 Getting Started with Microsoft Office Live Meeting Published October 2007 Information in this document, including URL and other Internet Web site references, is subject to change without notice. Unless

More information

Spotify Homepage Takeover

Spotify Homepage Takeover Formats Spotify Homepage Takeover Build Guide Table of Contents Overview... 2 Supported Platforms... 3 Known Issues... 3 Implementing a Spotify Homepage Takeover... 3 Included Template Files... 3 HTML...

More information

User Guide for the VersaMail Application

User Guide for the VersaMail Application User Guide for the VersaMail Application Copyright and Trademark 2004 palmone, Inc. All rights reserved. palmone, HotSync, the HotSync logo, Palm, Palm OS, the Palm logo, and VersaMail are among the trademarks

More information

Background Information

Background Information User Guide 1 Background Information ********************************Disclaimer******************************************** This is a government system intended for official use only. Using this system

More information

WESTERNACHER OUTLOOK E-MAIL-MANAGER OPERATING MANUAL

WESTERNACHER OUTLOOK E-MAIL-MANAGER OPERATING MANUAL TABLE OF CONTENTS 1 Summary 3 2 Software requirements 3 3 Installing the Outlook E-Mail Manager Client 3 3.1 Requirements 3 3.1.1 Installation for trial customers for cloud-based testing 3 3.1.2 Installing

More information

FAQ. F-Secure Online Backup

FAQ. F-Secure Online Backup F-Secure Online Backup Before installation... 3 Does the F Secure Online Backup program work if there are other online backup programs installed on my computer?... 4 Are two online backup programs better

More information

1 Classified Script. User Guide v1.0

1 Classified Script. User Guide v1.0 1 Classified Script User Guide v1.0 Installation... 3 Create Database... 3 Grant Rights... 4 Configure Settings... 5 Step 1... 5 Step 2... 6 Step 3... 7 Post Sponsored Ad... 8 Step 1... 8 Step 2... 9 Manage

More information

Microsoft Outlook 2010. Reference Guide for Lotus Notes Users

Microsoft Outlook 2010. Reference Guide for Lotus Notes Users Microsoft Outlook 2010 Reference Guide for Lotus Notes Users ContentsWelcome to Office Outlook 2010... 2 Mail... 3 Viewing Messages... 4 Working with Messages... 7 Responding to Messages... 11 Organizing

More information

Foxit MobilePDF Business for ios Quick Guide

Foxit MobilePDF Business for ios Quick Guide for ios 1 Contents Foxit MobilePDF Business Chapter 1 Description... 3 Chapter 2 Main Menu... 5 Chapter 3 File Management... 6 Chapter 4 Viewing PDF Files... 7 Chapter 5 Annotation... 11 Chapter 6 Signatures...

More information

FileMaker 14. WebDirect Guide

FileMaker 14. WebDirect Guide FileMaker 14 WebDirect Guide 2015 FileMaker, Inc. All Rights Reserved. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker and FileMaker Go are trademarks of FileMaker, Inc.

More information

Joomla! template Blendvision v 1.0 Customization Manual

Joomla! template Blendvision v 1.0 Customization Manual Joomla! template Blendvision v 1.0 Customization Manual Blendvision template requires Helix II system plugin installed and enabled Download from: http://www.joomshaper.com/joomla-templates/helix-ii Don

More information

VEDATRAK CRM 2.1. User's Guide

VEDATRAK CRM 2.1. User's Guide VEDATRAK CRM 2.1 User's Guide 2 (C) 2006-2010 SUI SOLUTIONS. All rights reserved. 3 Contents Overview...9 System Requirements...11 Installation Notes...12 Vedatrak Basics...13 User Roles...13 System Administrator...13

More information

Frog VLE Update. Latest Features and Enhancements. September 2014

Frog VLE Update. Latest Features and Enhancements. September 2014 1 Frog VLE Update Latest Features and Enhancements September 2014 2 Frog VLE Update: September 2014 Contents New Features Overview... 1 Enhancements Overview... 2 New Features... 3 Site Backgrounds...

More information

Table of Contents. Overview... 2. Supported Platforms... 3. Demos/Downloads... 3. Known Issues... 3. Note... 3. Included Files...

Table of Contents. Overview... 2. Supported Platforms... 3. Demos/Downloads... 3. Known Issues... 3. Note... 3. Included Files... Table of Contents Overview... 2 Supported Platforms... 3 Demos/Downloads... 3 Known Issues... 3 Note... 3 Included Files... 5 Implementing the Block... 6 Configuring The HTML5 Polling Block... 6 Setting

More information

HR Onboarding Solution

HR Onboarding Solution HR Onboarding Solution Installation and Setup Guide Version: 3.0.x Compatible with ImageNow Version: 6.7.x Written by: Product Documentation, R&D Date: November 2014 2014 Perceptive Software. All rights

More information

Macromedia Dreamweaver 8 Developer Certification Examination Specification

Macromedia Dreamweaver 8 Developer Certification Examination Specification Macromedia Dreamweaver 8 Developer Certification Examination Specification Introduction This is an exam specification for Macromedia Dreamweaver 8 Developer. The skills and knowledge certified by this

More information

Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL

Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL Instant Chime for IBM Sametime Installation Guide for Apache Tomcat and Microsoft SQL Spring 2015 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license

More information

NYS OCFS CMS Contractor Manual

NYS OCFS CMS Contractor Manual NYS OCFS CMS Contractor Manual C O N T E N T S CHAPTER 1... 1-1 Chapter 1: Introduction to the Contract Management System... 1-2 CHAPTER 2... 2-1 Accessing the Contract Management System... 2-2 Shortcuts

More information

WebSphere Business Monitor V7.0 Script adapter lab

WebSphere Business Monitor V7.0 Script adapter lab Copyright IBM Corporation 2010 All rights reserved IBM WEBSPHERE BUSINESS MONITOR 7.0 LAB EXERCISE WebSphere Business Monitor V7.0 Script adapter lab What this exercise is about... 1 Changes from the previous

More information

CMS Training Session 1

CMS Training Session 1 Almost Everything you always wanted to know about digital assets But were afraid to ask J CMS Training Session 1 Topics we ll cover 1. What is a digital asset? 2. How do I add digital assets to my page?

More information

QUICK START FOR COURSES: USING BASIC COURSE SITE FEATURES

QUICK START FOR COURSES: USING BASIC COURSE SITE FEATURES collab.virginia.edu UVACOLLAB QUICK START FOR COURSES: USING BASIC COURSE SITE FEATURES UVaCollab Quick Start Series [email protected] Revised 5/20/2015 Quick Start for Courses Overview... 4

More information

INSTALLATION GUIDE VERSION

INSTALLATION GUIDE VERSION INSTALLATION GUIDE VERSION 4.1 2014 Copyright 2008 2014. All rights reserved. No part of this document may be reproduced or transmitted in any form or by any means electronic or mechanical, for any purpose

More information

OpenIMS 4.2. Document Management Server. User manual

OpenIMS 4.2. Document Management Server. User manual OpenIMS 4.2 Document Management Server User manual OpenSesame ICT BV Index 1 INTRODUCTION...4 1.1 Client specifications...4 2 INTRODUCTION OPENIMS DMS...5 2.1 Login...5 2.2 Language choice...5 3 OPENIMS

More information

ZIMBRA LAYOUT. Keyboard Shortcuts Hitting G and the beginning letter of any of the tabs will instantly take you to that tab

ZIMBRA LAYOUT. Keyboard Shortcuts Hitting G and the beginning letter of any of the tabs will instantly take you to that tab TABS ZIMBRA LAYOUT Overview Pane TABS Mail Inbox, compose new Address Book contacts (university contacts do not show up in book; however, they will show up in search) Calendar appointments (can be shared)

More information

SelectSurvey.NET Basic Training Class 1

SelectSurvey.NET Basic Training Class 1 SelectSurvey.NET Basic Training Class 1 3 Hour Course Updated for v.4.143.001 6/2015 Page 1 of 57 SelectSurvey.NET Basic Training In this video course, students will learn all of the basic functionality

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing

HP Service Manager. Software Version: 9.40 For the supported Windows and Linux operating systems. Application Setup help topics for printing HP Service Manager Software Version: 9.40 For the supported Windows and Linux operating systems Application Setup help topics for printing Document Release Date: December 2014 Software Release Date: December

More information

For details about using automatic user provisioning with Salesforce, see Configuring user provisioning for Salesforce.

For details about using automatic user provisioning with Salesforce, see Configuring user provisioning for Salesforce. Chapter 41 Configuring Salesforce The following is an overview of how to configure the Salesforce.com application for singlesign on: 1 Prepare Salesforce for single sign-on: This involves the following:

More information

WP Popup Magic User Guide

WP Popup Magic User Guide WP Popup Magic User Guide Plugin version 2.6+ Prepared by Scott Bernadot WP Popup Magic User Guide Page 1 Introduction Thank you so much for your purchase! We're excited to present you with the most magical

More information