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

Size: px
Start display at page:

Download "Table of Contents. Overview Supported Platforms Demos/Downloads Known Issues Note Included Files..."

Transcription

1

2 Table of Contents Overview... 2 Supported Platforms... 3 Demos/Downloads... 3 Known Issues... 3 Note... 4 Included Files... 5 Implementing the Block... 8 Configuring The HTML5 MouseTracker Basic Feature... 8 Configuring The HTML5 MouseTracker Eye Movement Feature... 9 Configuring The HTML5 MouseTracker Follower Feature Configuring The HTML5 MouseTracker Horizontal Pan Feature Configuring The HTML5 MouseTracker Vertical Pan Feature Configuring The HTML5 MouseTracker Hotspot Banner Feature Configuring The HTML5 MouseTracker Hotspot Site Feature Setting Up the Block in Sizmek MDX... 16

3 Overview The HTML5 MouseTracker Feature allows you to track mouse movements over an entire web page, and more importantly, outside of the ad iframe to the Parent page. You can use the MouseTracker Feature for basic use cases, for example when you want to create a compass or a hotspot in your ad, or you can use it for more advanced cases, for example when you want to create a mouse follower or a panning tool. The MouseTracker Feature requires the use of a custom script and comes with seven most-common scenario templates: 1. Basic 2. Horizontal Pan 3. Vertical Pan 4. HotSpot Site 5. HotSpot Banner 6. Mouse Follower 7. Eyes Movement Copyright 2014 Sizmek. All rights reserved. 2

4 Supported Platforms Platform Windows Mac Supported Version Internet Explorer 9+, Firefox, Chrome, Safari Firefox, Chrome, Safari Demos/Downloads To download the Feature, view a demo of the Feature or get the latest copy of the build guide, please visit the Formats & Blocks tab of the Creative Zone. For more information, contact your Creative Development Specialist. Known Issues Sizmek does not support HTML5 ads in IE browsers lower than version 9. Note This Feature requires the use of a custom script to allow the HTML5 ad to communicate with the parent page. The Feature will not work without this script. o sys.com/burstingres/customscripts/pl_html5_mousetracker.js Both the Horizontal and Vertical Pan templates require the use of Greensock Tween Library, 2 files. o Copyright 2014 Sizmek. All rights reserved. 3

5 o Copyright 2014 Sizmek. All rights reserved. 4

6 Included Files Basic Template Filename css/feature_styles.css images/defaultimage300x250.gif js/mousetracker.js index.html Sizmek Block Stylesheet Sizmek Block default backup Image and demo background Sizmek Block Javascript file that handles the bar graph construction. Sizmek Block HTML file. Eye Movement Template Filename css/feature_styles.css images/defaultimage400x300.gif images/bunny.jpg Sizmek Block Stylesheet Sizmek Block default backup Image and demo background Background Image of Bunny face. images/eye1.png Image for Eye 1 images/eye2.png Image for Eye 2 js/mousetracker.js index.html Sizmek Block Javascript file that handles the bar graph construction. Sizmek Block HTML file. Follower Template Filename css/feature_styles.css images/defaultimage400x300.gif Sizmek Block Stylesheet Sizmek Block default backup Image and demo background Copyright 2014 Sizmek. All rights reserved. 5

7 images/sizmek_logo.jpg js/mousetracker.js index.html Image used for the element that follows the mouse. Sizmek Block Javascript file that handles the bar graph construction. Sizmek Block HTML file. Horizontal Pan Template Filename css/feature_styles.css images/defaultimage400x300.gif images/sizmek_logo.gif js/mousetracker.js index.html Sizmek Block Stylesheet Sizmek Block default backup Image and demo background Image used for the element that pans with the mouse. Sizmek Block Javascript file that handles the bar graph construction. Sizmek Block HTML file. Vertical Pan Template Filename css/feature_styles.css images/defaultimage400x300.gif images/sizmek_logo.gif js/mousetracker.js index.html Sizmek Block Stylesheet Sizmek Block default backup Image and demo background Image used for the element that pans with the mouse. Sizmek Block Javascript file that handles the bar graph construction. Sizmek Block HTML file. Hotspot Banner Template Filename css/feature_styles.css Sizmek Block Stylesheet Copyright 2014 Sizmek. All rights reserved. 6

8 images/defaultimage400x300.gif images/target.jpg images/target_back.jpg js/mousetracker.js index.html Sizmek Block default backup Image and demo background Image used for both the element that acts as the hotspot target and that fades in relation to the mouse. Background image for target. Sizmek Block Javascript file that handles the bar graph construction. Sizmek Block HTML file. Hotspot Site Template Filename css/feature_styles.css images/defaultimage400x300.gif js/mousetracker.js index.html Sizmek Block Stylesheet Sizmek Block default backup Image and demo background Sizmek Block Javascript file that handles the bar graph construction. Sizmek Block HTML file. Copyright 2014 Sizmek. All rights reserved. 7

9 Implementing the Block Before you begin, make sure you have the following resources available: The HTML5 MouseTracker files The HTML5 MouseTracker Feature is accompanied by seven (7) templates: 1. The MouseTracker Basic This template allows you to retrieve mouse positions and calculate angles from two different points. 2. The MouseTracker Eye Movement This template allows you to add eye movement or to rotate an object according to the mouse position. 3. The MouseTracker Follower This template allows you to add an html element that follows after the mouse movement. 4. The MouseTracker Horizontal Pan This template allows you to add an html element that pans horizontally according to the mouse movement. 5. The MouseTracker Vertical Pan This template allows you to add an html element that pans vertically according to the mouse movement. 6. The MouseTracker Hotspot Banner The template allows you to set a hotspot within your banner and get the distance of the mouse to the hotspot. 7. The MouseTracker Hotspot Site This template allows you to set a hotspot on the publishers site and get the distance of the mouse from the hotspot. Configuring The HTML5 MouseTracker Basic Feature The HTML5 MouseTracker Basic Feature gives the developer access to the x and y position of the mouse and the x and y position of the banner in relation to the parent Usage: <script type="text/javascript" src="js/mousetracker.js"></script> <script type="text/javascript"> var new_mousetracker = new mousetracker (); </script> Important Methods within mousetracker.js: Copyright 2014 Sizmek. All rights reserved. 8

10 handlemousedata This method receives four parameters from the custom script: mousex, mousey, bannerx, bannery Important Parameters: Parameter mousex mousey bannerx bannery X Position of the mouse relative to the parent Y Position of the mouse relative to the parent X Position of the banner relative to the parent Y Position of the banner relative to the parent Configuring The HTML5 MouseTracker Eye Movement Feature The HTML5 MouseTracker Eye Movement Feature allows the developer to add eye movement or rotate an object according to the mouse position, in relation to the parent Usage: <script type="text/javascript" src="js/mousetracker.js"></script> <script type="text/javascript"> var feature_config = { options: { eye1: 'eye1', eye2: 'eye2', eye1x: 242 } }; var new_mousetracker = new mousetracker (feature_config); </script> Config options: Copyright 2014 Sizmek. All rights reserved. 9

11 Eye1 Eye2 String - The id of the first element (eye) you wish to rotate. String - The id of the second element (eye) you wish to rotate. Important Methods within mousetracker.js: handlemousedata This method receives four parameters from the custom script: mousex, mousey, bannerx, bannery, deg1, deg2 Important Parameters: Parameter mousex mousey bannerx bannery deg1 deg2 X Position of the mouse relative to the parent Y Position of the mouse relative to the parent X Position of the banner relative to the parent Y Position of the banner relative to the parent Degree of rotation relative to the first eye position. Degree of rotation relative to the second eye position. Configuring The HTML5 MouseTracker Follower Feature The HTML5 MouseTracker Follower Feature allows the developer to add a html element that follows after the mouse movement in relation to the parent Usage: Copyright 2014 Sizmek. All rights reserved. 10

12 <script type="text/javascript" src="js/mousetracker.js"></script> <script type="text/javascript"> var feature_config = { options: { sprite: 'sprite', rotate: true, speed: 25} }; var new_mousetracker = new mousetracker (feature_config); </script> Config options: sprite rotate Speed String - The id of the first element you wish to follow the mouse. Boolean true or false. Enter true if you want the Div to rotate towards the mouse as it follows its position. Number how fast you want the element to follow the mouse. Lower is faster. Important Methods within mousetracker.js: handlemousedata This method receives four parameters from the custom script: mousex, mousey, bannerx, bannery Important Parameters: Parameter mousex mousey bannerx X Position of the mouse relative to the parent Y Position of the mouse relative to the parent X Position of the banner relative to the parent Copyright 2014 Sizmek. All rights reserved. 11

13 bannery Y Position of the banner relative to the parent Configuring The HTML5 MouseTracker Horizontal Pan Feature The HTML5 MouseTracker Horizontal Pan Feature allows the developer to add a html element that pans left and right along the X axis according to the mouse movement, in relation to the parent Usage: <script type="text/javascript" src="js/mousetracker.js"></script> <script type="text/javascript"> var feature_config = { options: { pan: 'pan, speed: 25} }; var new_mousetracker = new mousetracker (feature_config); </script> Config options: pan speed String - The id of the first element you wish to pan with the mouse. Number how fast you want the element to pan with the mouse. Lower is faster. Important Methods within mousetracker.js: handlemousedata This method receives four parameters from the custom script: mousex, bannerx Important Parameters: Parameter Copyright 2014 Sizmek. All rights reserved. 12

14 mousex bannerx X Position of the mouse relative to the parent X Position of the banner relative to the parent Configuring The HTML5 MouseTracker Vertical Pan Feature The HTML5 MouseTracker Vertical Pan Feature allows the developer to add a html element that pans up and down along the Y axis according to the mouse movement, in relation to the parent Usage: <script type="text/javascript" src="js/mousetracker.js"></script> <script type="text/javascript"> var feature_config = { options: { pan: 'pan, speed: 25} }; var new_mousetracker = new mousetracker (feature_config); </script> Config options: pan speed String - The id of the first element you wish to pan with the mouse. Number how fast you want the element to pan with the mouse. Lower is faster. Important Methods within mousetracker.js: handlemousedata This method receives four parameters from the custom script: mousey, bannery Important Parameters: Copyright 2014 Sizmek. All rights reserved. 13

15 Parameter mousey bannery Y Position of the mouse relative to the parent Y Position of the banner relative to the parent Configuring The HTML5 MouseTracker Hotspot Banner Feature The HTML5 MouseTracker Hotspot Banner Feature allows the developer to set a hotspot within the banner and get the distance of the mouse to the hotspot in relation to the parent Usage: <script type="text/javascript" src="js/mousetracker.js"></script> <script type="text/javascript"> var new_mousetracker = new mousetracker ( target ); </script> Important Methods within mousetracker.js: handlemousedata This method receives four parameters from the custom script: mousex, mousey, bannerx, bannery, browserw, browserh Important Parameters: Parameter mousex mousey bannerx X Position of the mouse relative to the parent Y Position of the mouse relative to the parent X Position of the banner relative to the parent Copyright 2014 Sizmek. All rights reserved. 14

16 bannery browserw browserh Y Position of the banner relative to the parent Parent window width. Parent window height. Configuring The HTML5 MouseTracker Hotspot Site Feature The HTML5 MouseTracker Hotspot Banner Feature allows the developer to set a hotspot within the publisher s page and get the distance of the mouse to the hotspot. Usage: <script type="text/javascript" src="js/mousetracker.js"></script> <script type="text/javascript"> var new_mousetracker = new mousetracker ( target ); </script> Important Methods within mousetracker.js: handlemousedata This method receives four parameters from the custom script: mousex, mousey, bannerx, bannery, browserw, browserh, targetx, targety Important Parameters: Parameter mousex mousey bannerx X Position of the mouse relative to the parent Y Position of the mouse relative to the parent X Position of the banner relative to the parent Copyright 2014 Sizmek. All rights reserved. 15

17 bannery browserw browserh targetx targety Y Position of the banner relative to the parent Parent window width. Parent window height. X Position of the Target within the publisher s page. Y Position of the Target within the publisher s page. Setting Up the Feature in Sizmek MDX 1. Open the index.html file in your HTML5 Workspace Folder. 2. Update options parameters within the feature_config if applicable. 3. Save index.html. 4. Zip and upload HTML5 Workspace Folder. 5. From the main menu, select Shortcuts > Create New Ad > Create a New Ad. 6. In the Ad Name field, enter the unique name of your ad. 7. From the Ad Format drop-down list, select HTML5 Polite Banner. 8. Choose the HTML5 Workspace Folder you uploaded to platform. 9. Choose Default Image. 10. Go to Set up > Advanced Features > Custom JS and add the custom script Save. Copyright 2014 Sizmek. All rights reserved. 16

18

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

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

Overview... 2. Included Files... 6. Implementing the Block... 7

Overview... 2. Included Files... 6. Implementing the Block... 7 Overview... 2 The DCO Block Templates...2 DCO Apparel Template Block...3 DCO Auto Template Block...4 Supported Platforms...5 Demos/Downloads...5 Benefits...5 Use Case...6 Included Files... 6 Implementing

More information

HTML5 Standard Banner

HTML5 Standard Banner Sizmek Formats HTML5 Standard Banner Build Guide Table of Contents Overview... 2 Supported Platforms... 3 Demos/Downloads... 3 Known Issues... 3 Recommended Specs... 3 Implementing an HTML5 Standard Banner...

More information

Sizmek Formats. HTML5 Page Skin. Build Guide

Sizmek Formats. HTML5 Page Skin. Build Guide Formats HTML5 Page Skin Build Guide Table of Contents Overview... 2 Supported Platforms... 7 Demos/Downloads... 7 Known Issues:... 7 Implementing a HTML5 Page Skin Format... 7 Included Template Files...

More information

Sizmek Formats. Collage. Build Guide

Sizmek Formats. Collage. Build Guide Formats Collage Build Guide Table Of Contents Overview... 3 Supported Platforms... 3 Specifications... 3 Known Issues... 3 Ad Behavior Screenshots... 4 Template Included Files... 8 Setting up in Workshop...

More information

Table of Contents. Overview... 2. Supported Platforms... 3. Note... 3. Demos/Downloads... 3. Known Issues... 4. Use Case... 4

Table of Contents. Overview... 2. Supported Platforms... 3. Note... 3. Demos/Downloads... 3. Known Issues... 4. Use Case... 4 Table of Contents Overview... 2 Supported Platforms... 3 Note... 3 Demos/Downloads... 3 Known Issues... 4 Use Case... 4 Included Files and Parameters... 5 Implementing the Block... 7 Setting Up A Nimbb

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

Reading an email sent with Voltage SecureMail. Using the Voltage SecureMail Zero Download Messenger (ZDM)

Reading an email sent with Voltage SecureMail. Using the Voltage SecureMail Zero Download Messenger (ZDM) Reading an email sent with Voltage SecureMail Using the Voltage SecureMail Zero Download Messenger (ZDM) SecureMail is an email protection service developed by Voltage Security, Inc. that provides email

More information

Reference Guide for WebCDM Application 2013 CEICData. All rights reserved.

Reference Guide for WebCDM Application 2013 CEICData. All rights reserved. Reference Guide for WebCDM Application 2013 CEICData. All rights reserved. Version 1.2 Created On February 5, 2007 Last Modified August 27, 2013 Table of Contents 1 SUPPORTED BROWSERS... 3 1.1 INTERNET

More information

BT CONTENT SHOWCASE. JOOMLA EXTENSION User guide Version 2.1. Copyright 2013 Bowthemes Inc. support@bowthemes.com

BT CONTENT SHOWCASE. JOOMLA EXTENSION User guide Version 2.1. Copyright 2013 Bowthemes Inc. support@bowthemes.com BT CONTENT SHOWCASE JOOMLA EXTENSION User guide Version 2.1 Copyright 2013 Bowthemes Inc. support@bowthemes.com 1 Table of Contents Introduction...2 Installing and Upgrading...4 System Requirement...4

More information

1. Right click using your mouse on the desktop and select New Shortcut.

1. Right click using your mouse on the desktop and select New Shortcut. offers 3 login page styles: Standard Login, List Login or Quick Time Punch. Each login page can be saved as a shortcut to your desktop or as a bookmark for easy fast login access. For quicker access to

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

Sizmek Formats. Swell. Build Guide

Sizmek Formats. Swell. Build Guide Formats Swell Build Guide Table Of Contents Overview... 4 Supported Platforms... 4 Specifications... 4 Known Issues... 4 Ad Behavior Screenshots... 5 Before you Begin... 6 Template Included Files... 6

More information

MAGENTO THEME SHOE STORE

MAGENTO THEME SHOE STORE MAGENTO THEME SHOE STORE Developer: BSEtec Email: support@bsetec.com Website: www.bsetec.com Facebook Profile: License: GPLv3 or later License URL: http://www.gnu.org/licenses/gpl-3.0-standalone.html 1

More information

WEB DESIGN COURSE CONTENT

WEB DESIGN COURSE CONTENT WEB DESIGN COURSE CONTENT INTRODUCTION OF WEB TECHNOLOGIES Careers in Web Technologies How Websites are working Domain Types and Server About Static and Dynamic Websites Web 2.0 Standards PLANNING A BASIC

More information

Create interactive web graphics out of your SAS or R datasets

Create interactive web graphics out of your SAS or R datasets Paper CS07 Create interactive web graphics out of your SAS or R datasets Patrick René Warnat, HMS Analytical Software GmbH, Heidelberg, Germany ABSTRACT Several commercial software products allow the creation

More information

Dreamweaver CS5. Module 2: Website Modification

Dreamweaver CS5. Module 2: Website Modification Dreamweaver CS5 Module 2: Website Modification Dreamweaver CS5 Module 2: Website Modification Last revised: October 31, 2010 Copyrights and Trademarks 2010 Nishikai Consulting, Helen Nishikai Oakland,

More information

Mistral Joomla Template

Mistral Joomla Template Mistral Joomla Template Documentation Copyright arrowthemes Table of Contents Introduction... 4 1.1 Template Overview... 5 Theme Styles and admin options... 5 Theme profiles... 5 Theme Layouts... 5 1.2

More information

3. Viewing and Restoring Email Items and Files from the Mimosa Archive

3. Viewing and Restoring Email Items and Files from the Mimosa Archive 1. Introduction The Mimosa Archive Self-service Retrieve (SSR) Client provides access to email items archived using the NearPoint system. You can use the Mimosa Archive SSR Client to perform the following

More information

RemoteTM Web Server User Guide. Copyright 2008-2014 Maxprograms

RemoteTM Web Server User Guide. Copyright 2008-2014 Maxprograms RemoteTM Web Server User Guide Copyright 2008-2014 Maxprograms Contents 3 Contents Introduction...5 Requirements...5 Installation...7 Email Server Configuration...7 Users Management...8 Create User...8

More information

How to start with 3DHOP

How to start with 3DHOP How to start with 3DHOP Package content, local setup, online deployment http://3dhop.net 30/6/2015 The 3DHOP distribution Where to find it, what s inside The 3DHOP distribution package From the page http://3dhop.net/download.php

More information

Sizmek. Sizmek Formats. Custom Header. Build Guide. Copyright 2014 Sizmek. All rights reserved. 1

Sizmek. Sizmek Formats. Custom Header. Build Guide. Copyright 2014 Sizmek. All rights reserved. 1 Sizmek Formats Custom Header Build Guide 1 Table Of Contents Overview... 3 Supported Platforms... 7 Specifications... 8 Known Issues... 8 Ad Interaction Tracking... 8 Ad Clickthrough... 9 Template Included

More information

JTouch Mobile Extension for Joomla! User Guide

JTouch Mobile Extension for Joomla! User Guide JTouch Mobile Extension for Joomla! User Guide A Mobilization Plugin & Touch Friendly Template for Joomla! 2.5 Author: Huy Nguyen Co- Author: John Nguyen ABSTRACT The JTouch Mobile extension was developed

More information

Charts for SharePoint

Charts for SharePoint KWizCom Corporation Charts for SharePoint Admin Guide Copyright 2005-2015 KWizCom Corporation. All rights reserved. Company Headquarters 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2 Canada E-mail:

More information

WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts. Classroom Setup Guide. Web Age Solutions Inc.

WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts. Classroom Setup Guide. Web Age Solutions Inc. WA2262 Applied Data Science and Big Data Analytics Boot Camp for Business Analysts Classroom Setup Guide Web Age Solutions Inc. Copyright Web Age Solutions Inc. 1 Table of Contents Part 1 - Minimum Software

More information

CREATE A 3D MOVIE IN DIRECTOR

CREATE A 3D MOVIE IN DIRECTOR CREATE A 3D MOVIE IN DIRECTOR 2 Building Your First 3D Movie in Director Welcome to the 3D tutorial for Adobe Director. Director includes the option to create three-dimensional (3D) images, text, and animations.

More information

Creating an eportfolio using Blackboard 9.1

Creating an eportfolio using Blackboard 9.1 Creating an eportfolio using Blackboard 9.1 Before you begin working on your eportfolio, you will need to do some preparation: Collect the files (aka artifacts ) that you wish to include in your eportfolio

More information

OPENTABLE GROUP SEARCH MODULE GETTING STARTED ADD RESERVATIONS TO YOUR WEBSITE

OPENTABLE GROUP SEARCH MODULE GETTING STARTED ADD RESERVATIONS TO YOUR WEBSITE ADD RESERVATIONS TO YOUR WEBSITE OPENTABLE GROUP SEARCH MODULE The group search module allows users to select a specific restaurant location from a list and search tables at that location. The code below

More information

How-To: Submitting PDF forms to SharePoint from custom websites

How-To: Submitting PDF forms to SharePoint from custom websites How-To: Submitting PDF forms to SharePoint from custom websites Introduction This How-To document describes the process of creating PDF forms using PDF Share Forms tools, and posting the form on a non-sharepoint

More information

ios App Development Using Cordova

ios App Development Using Cordova ios App Development Using Cordova Created by Todd Treece Last updated on 2015-06-29 08:20:06 AM EDT Guide Contents Guide Contents Overview Installing Dependencies Creating a New App index.html index.css

More information

Google Trusted Stores Setup in Magento

Google Trusted Stores Setup in Magento Google Trusted Stores Setup in Magento Google Trusted Stores is a free badging program that can improve your conversion rate and average order size by reassuring potential customers you offer a great shopping

More information

Advanced Online Media Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication

Advanced Online Media Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication Advanced Online Media Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication Using JQuery to Make a Photo Slideshow This exercise was modified from the slideshow

More information

How To Sync Google Drive On A Mac Computer With A Gmail Account On A Gcd (For A Student) On A Pc Or Mac Or Mac (For An Older Person) On An Ipad Or Ipad (For Older People) On

How To Sync Google Drive On A Mac Computer With A Gmail Account On A Gcd (For A Student) On A Pc Or Mac Or Mac (For An Older Person) On An Ipad Or Ipad (For Older People) On Installation and Setup of Google Drive for Students on Mac OS X Purpose: This guide will lead you through the Google Drive Installation and Configuration. Pre-requisites: 1) ODU Student Gmail account 2)

More information

Image Upload... 2. Known Issues...3. Implementing the Block...4. Using Adobe SWC files...4. Configuring in Flash...5

Image Upload... 2. Known Issues...3. Implementing the Block...4. Using Adobe SWC files...4. Configuring in Flash...5 Image Upload... 2 Known Issues...3 Implementing the Block...4 Using Adobe SWC files...4 Configuring in Flash...5 Setting Up in the Sizmek MDX Platform...8 Image Upload The Image Upload Block enables advertisers

More information

Accessing ROS using a Smartphone or Tablet with a Digital Sub Cert

Accessing ROS using a Smartphone or Tablet with a Digital Sub Cert Accessing ROS using a Smartphone or Tablet with a Digital Sub Cert May 2014 29/05/2014 Version 1.0 Page 1 of 9 This document provides you with a step by step guide to accessing ROS (Revenue Online Services)

More information

5.1 Features 1.877.204.6679. sales@fourwindsinteractive.com Denver CO 80202

5.1 Features 1.877.204.6679. sales@fourwindsinteractive.com Denver CO 80202 1.877.204.6679 www.fourwindsinteractive.com 3012 Huron Street sales@fourwindsinteractive.com Denver CO 80202 5.1 Features Copyright 2014 Four Winds Interactive LLC. All rights reserved. All documentation

More information

Using Internet or Windows Explorer to Upload Your Site

Using Internet or Windows Explorer to Upload Your Site Using Internet or Windows Explorer to Upload Your Site This article briefly describes what an FTP client is and how to use Internet Explorer or Windows Explorer to upload your Web site to your hosting

More information

Working with Templates. Schoolwires Centricity2

Working with Templates. Schoolwires Centricity2 Working with Templates Schoolwires Centricity2 Trademark Notice Schoolwires, the Schoolwires logos, and the unique trade dress of Schoolwires are the trademarks, service marks, trade dress and logos of

More information

spring semester course schedule

spring semester course schedule spring semester course schedule This course is designed to cover the various techniques of web page construction and the graphic design considerations unique to the internet. A challenge for many will

More information

The In-Stream LogoKit is an In-Stream linear and non-linear ad format that plays in VPAID-compliant video players. The ad displays icons in the

The In-Stream LogoKit is an In-Stream linear and non-linear ad format that plays in VPAID-compliant video players. The ad displays icons in the The In-Stream LogoKit is an In-Stream linear and non-linear ad format that plays in VPAID-compliant video players. The ad displays icons in the bottom-right corner of the player which, when clicked, open

More information

Working with RD Web Access in Windows Server 2012

Working with RD Web Access in Windows Server 2012 Working with RD Web Access in Windows Server 2012 Introduction to RD Web Access So far in this series we have talked about how to successfully deploy and manage a Microsoft Windows Server 2012 VDI environment.

More information

Mail Programming Topics

Mail Programming Topics Mail Programming Topics Contents Introduction 4 Organization of This Document 4 Creating Mail Stationery Bundles 5 Stationery Bundles 5 Description Property List 5 HTML File 6 Images 8 Composite Images

More information

Installation & Configuration Guide Professional Edition

Installation & Configuration Guide Professional Edition Installation & Configuration Guide Professional Edition Version 2.3 Updated January 2014 Table of Contents Getting Started... 3 Introduction... 3 Requirements... 3 Support... 4 Recommended Browsers...

More information

Dashboard Skin Tutorial. For ETS2 HTML5 Mobile Dashboard v3.0.2

Dashboard Skin Tutorial. For ETS2 HTML5 Mobile Dashboard v3.0.2 Dashboard Skin Tutorial For ETS2 HTML5 Mobile Dashboard v3.0.2 Dashboard engine overview Dashboard menu Skin file structure config.json Available telemetry properties dashboard.html dashboard.css Telemetry

More information

Dashboard Builder TM for Microsoft Access

Dashboard Builder TM for Microsoft Access Dashboard Builder TM for Microsoft Access Web Edition Application Guide Version 5.3 5.12.2014 This document is copyright 2007-2014 OpenGate Software. The information contained in this document is subject

More information

Getting Started with WPM

Getting Started with WPM NEUSTAR USER GUIDE Getting Started with WPM Neustar Web Performance is the cloud-based platform offering real-time data and analysis, helping to remove user barriers and optimize your site. Contents Getting

More information

A Step-by-Step Patient Guide to Upload Medical Images to the Cleveland Clinic Neurological Institute

A Step-by-Step Patient Guide to Upload Medical Images to the Cleveland Clinic Neurological Institute A Step-by-Step Patient Guide to Upload Medical Images to the Cleveland Clinic Neurological Institute Cleveland Clinic 1995-2014. All Rights Reserved. v.08.05.14 Table of Contents Get Started Step 1: Locate

More information

Drupal CMS for marketing sites

Drupal CMS for marketing sites Drupal CMS for marketing sites Intro Sample sites: End to End flow Folder Structure Project setup Content Folder Data Store (Drupal CMS) Importing/Exporting Content Database Migrations Backend Config Unit

More information

WhatCounts Newsletter System Manual

WhatCounts Newsletter System Manual WhatCounts Newsletter System Manual Last Updated: November 21, 2008 This instruction manual describes the basic steps required to create, edit, and manage a mailing list for use with the WhatCounts Email

More information

Standard Client Configuration Requirements

Standard Client Configuration Requirements Test Developer s Studio (TDS) Standard Client Configuration Requirements Information Technologies (IT) Content Applications Development Group (CADG) Version 1.0 February 20, 2008 Copyright 2008 by NCS

More information

CDUfiles User Guide. Chapter 1: Accessing your data with CDUfiles. Sign In. CDUfiles User Guide Page 1. Here are the first steps to using CDUfiles.

CDUfiles User Guide. Chapter 1: Accessing your data with CDUfiles. Sign In. CDUfiles User Guide Page 1. Here are the first steps to using CDUfiles. CDUfiles User Guide Chapter 1: Accessing your data with CDUfiles Here are the first steps to using CDUfiles. Sign In Open your web browser and enter cdufiles.cdu.edu.au or Note: Use cdufiles.egnyte.com

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

the barricademx end user interface documentation for barricademx users

the barricademx end user interface documentation for barricademx users the barricademx end user interface documentation for barricademx users BarricadeMX Plus The End User Interface This short document will show you how to use the end user web interface for the BarricadeMX

More information

Cascaded Lookup 5.0 User Guide

Cascaded Lookup 5.0 User Guide Cascaded Lookup 5.0 User Guide Copyright Copyright 2008-2013 BoostSolutions Co., Ltd. All rights reserved. All material contained in this publication is protected by Copyright and no part of this publication

More information

Appendix A How to create a data-sharing lab

Appendix A How to create a data-sharing lab Appendix A How to create a data-sharing lab Creating a lab involves completing five major steps: creating lists, then graphs, then the page for lab instructions, then adding forms to the lab instructions,

More information

IBRI College of Technology Department of Information Technology. Intercollegiate Web Programming Contest On 12 March, 2013 (Tuesday)

IBRI College of Technology Department of Information Technology. Intercollegiate Web Programming Contest On 12 March, 2013 (Tuesday) IBRI College of Technology Department of Information Technology Intercollegiate Web Programming Contest On 12 March, 2013 (Tuesday) Eligibility: Web Programming Contest Rules The contest is open to Diploma

More information

SAP VIRTUAL AGENCY GETTING STARTED GUIDE: SELF SERVICE MARKETING

SAP VIRTUAL AGENCY GETTING STARTED GUIDE: SELF SERVICE MARKETING GETTING STARTED GUIDE: SELF SERVICE MARKETING SELF SERVICE MARKETING TABLE OF CONTENTS Introduction 3 Starting Out 4 Creating Campaigns and Collateral 8 Customizing and Executing a Pre-Packaged Campaign

More information

Item Audit Log 2.0 User Guide

Item Audit Log 2.0 User Guide Item Audit Log 2.0 User Guide Item Audit Log 2.0 User Guide Page 1 Copyright Copyright 2008-2013 BoostSolutions Co., Ltd. All rights reserved. All materials contained in this publication are protected

More information

jquery Sliding Image Gallery

jquery Sliding Image Gallery jquery Sliding Image Gallery Copyright 2011 FlashBlue Website : http://www.flashdo.com Email: flashblue80@hotmail.com Twitter: http://twitter.com/flashblue80 Directories source - Original source files

More information

Self Testing with MoPub SDK

Self Testing with MoPub SDK Self Testing with MoPub SDK What: SimpleAds Demo is an iphone and Android application that displays the three basic type of ads offered through MoPub Banner (320x50), MRect (300x200), and Interstitial

More information

Magento Theme EM0006 for Computer store

Magento Theme EM0006 for Computer store Magento Theme EM0006 for Computer store Table of contends Table of contends Introduction Features General Features Flexible layouts Main Menu Standard Blocks Category Menu and Category Layered Menu. HTML

More information

Egnyte for Power and Standard Users. User Guide

Egnyte for Power and Standard Users. User Guide Egnyte for Power and Standard Users User Guide Egnyte Inc. 1350 West Middlefield Road. Mountain View, CA 94043, USA Phone: 877-7EGNYTE (877-734-6983) Revised June 2015 Table of Contents Chapter 1: Getting

More information

Creating a Hyperlink to a Tegrity Recording

Creating a Hyperlink to a Tegrity Recording Creating a Hyperlink to a Tegrity Recording You may create links in your ecampus course content to Tegrity recording. Begin by obtaining the hyperlink shortcut for the recording you wish to link. Go to

More information

WebIOPi. Installation Walk-through Macros

WebIOPi. Installation Walk-through Macros WebIOPi Installation Walk-through Macros Installation Install WebIOPi on your Raspberry Pi Download the tar archive file: wget www.cs.unca.edu/~bruce/fall14/webiopi-0.7.0.tar.gz Uncompress: tar xvfz WebIOPi-0.7.0.tar.gz

More information

Administrator s Manual

Administrator s Manual Administrator s Manual Absolute Banner Manager XE V2.0 The Powerful Banner Administration Server Developed by XIGLA SOFTWARE Copyright 2002 All Rights Reserved Visit our site at http://www.xigla.com TABLE

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

SoftChalk. Level 1. University Information Technology Services. Training, SoftChalk Level Outreach, 1 Learning Technologies and Video Production

SoftChalk. Level 1. University Information Technology Services. Training, SoftChalk Level Outreach, 1 Learning Technologies and Video Production SoftChalk Level 1 University Information Technology Services Training, SoftChalk Level Outreach, 1 Learning Technologies and Video Production Page 1 of 49 Copyright 2013 KSU Department of University Information

More information

BT BACKGROUND SLIDESHOW JOOMLA EXTENSION User guide Version 2.0

BT BACKGROUND SLIDESHOW JOOMLA EXTENSION User guide Version 2.0 BT BACKGROUND SLIDESHOW JOOMLA EXTENSION User guide Version 2.0 Copyright 2012 Bowthemes Inc. support@bowthemes.com 1 Table of Contents Introduction...2 Related Topics...2 Product Features...2 Installing

More information

How to File the FBAR Electronically. The following steps describe the process of filing an FBAR electronically with our system.

How to File the FBAR Electronically. The following steps describe the process of filing an FBAR electronically with our system. Prerequisite How to File the FBAR Electronically The following steps describe the process of filing an FBAR electronically with our system. Our site requires use of the free Adobe Reader product to properly

More information

Ortelia Space Builder User Manual

Ortelia Space Builder User Manual Ortelia Space Builder User Manual http://ortelia.com 1 Table of Contents Introducing Ortelia Space Builder... 2 System Requirements... 3 1. Operating system:... 3 2. Hardware:... 3 Minimum Graphics card

More information

Please select one of the topics below.

Please select one of the topics below. Thanks for choosing WYSIWYG Web Builder! In this section we will give a short introduction to Web Builder so you can start building your web site in (almost) no time. Please select one of the topics below.

More information

BT MEDIA JOOMLA COMPONENT

BT MEDIA JOOMLA COMPONENT BT MEDIA JOOMLA COMPONENT User guide Version 1.0 Copyright 2013Bowthemes Inc. support@bowthemes.com 1 Table of Contents Introduction...3 Related Topics:...3 Product Features...3 Installing and Upgrading...4

More information

MultiValue Dashboard. Installation Guide

MultiValue Dashboard. Installation Guide MultiValue Dashboard Installation Guide Introduction to MultiValue Dashboard MultiValue Dashboard is a dynamic Web-based development tool for the creation of desktop widgets utilizing your knowledge of

More information

This manual cannot be redistributed without permission from joomla-monster.com

This manual cannot be redistributed without permission from joomla-monster.com This manual cannot be redistributed without permission from joomla-monster.com Visit the official website joomla-monster.com of this Joomla template and other thematic and high quality templates. Copyright

More information

BarTender Web Print Server

BarTender Web Print Server The World's Leading Software for Label, Barcode, RFID & Card Printing White Paper BarTender Web Print Server Web-based Software for Printing Barcodes, Labels, ID Cards and more. Contents Introduction to

More information

Citrix : Remediation - MAC

Citrix : Remediation - MAC Citrix : Remediation - MAC Key Points: 1. 2. 3. 4. 5. 6. 7. Understanding End Point Scan Analysis Supported anti-virus and firewall products Configuring AVAST/SOPHOS and the Mac OS X Firewall Installing

More information

TxEIS Browser Settings

TxEIS Browser Settings TxEIS Browser Settings Updated May 2016 The TxEIS Browser Settings document lists supported browsers and recommended browser settings which will allow you to utilize the TxEIS system at its fullest potential

More information

Connection. to SECON-Server

Connection. to SECON-Server Technical Documentation SECON-X OpenVPN Installation Connection. to SECON-Server Version: 1 Edition: 2015-03 Art. No: 350199 FAFNIR GmbH Bahrenfelder Str. 19 22765 Hamburg, Germany Tel.: +49 / 40 / 39

More information

SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME

SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME SAHARA DIGITAL8 RESPONSIVE MAGENTO THEME This document is organized as follows: Chater I. Install ma_sahara_digital8 template Chapter II. Features and elements of the template Chapter III. List of extensions

More information

Edwin Analytics Getting Started Guide

Edwin Analytics Getting Started Guide Edwin Analytics Getting Started Guide This guide provides assistance for accessing and using Edwin Analytics, the Department of Elementary and Secondary Education s (ESE) online tool for expanding data

More information

Website Development Komodo Editor and HTML Intro

Website Development Komodo Editor and HTML Intro Website Development Komodo Editor and HTML Intro Introduction In this Assignment we will cover: o Use of the editor that will be used for the Website Development and Javascript Programming sections of

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

MY EWU PORTAL FEATURES AND BENEFITS. Promotion of the Eastern brand name

MY EWU PORTAL FEATURES AND BENEFITS. Promotion of the Eastern brand name MY EWU PORTAL The My EWU web portal is an interactive website that provides single sign-on access to different EWU information and services. Content is based on your role or roles for example; student,

More information

Developers Guide. Designs and Layouts HOW TO IMPLEMENT WEBSITE DESIGNS IN DYNAMICWEB. Version: 1.3 2013.10.04 English

Developers Guide. Designs and Layouts HOW TO IMPLEMENT WEBSITE DESIGNS IN DYNAMICWEB. Version: 1.3 2013.10.04 English Developers Guide Designs and Layouts HOW TO IMPLEMENT WEBSITE DESIGNS IN DYNAMICWEB Version: 1.3 2013.10.04 English Designs and Layouts, How to implement website designs in Dynamicweb LEGAL INFORMATION

More information

Setting Up Resources in VMware Identity Manager

Setting Up Resources in VMware Identity Manager Setting Up Resources in VMware Identity Manager VMware Identity Manager 2.4 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM. User Guide

CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM. User Guide CRM Migration Manager 3.1.1 for Microsoft Dynamics CRM User Guide Revision D Issued July 2014 Table of Contents About CRM Migration Manager... 4 System Requirements... 5 Operating Systems... 5 Dynamics

More information

Shape 5 Flex Menu Plugin Tutorials

Shape 5 Flex Menu Plugin Tutorials Shape 5 Flex Menu Plugin Tutorials 1. Support a. Please visit our forum boards at shape5.com if you have any unanswered questions after you have completed this tutorial. 2. Overview a. The S5 Flex Menu

More information

Lab 0: Preparing your laptop for the course OS X

Lab 0: Preparing your laptop for the course OS X Lab 0: Preparing your laptop for the course OS X Four pieces of software are needed to complete this course: 1. VMD Views and analyses molecular models. 2. NAMD Performs molecular dynamics simulations.

More information

TRIM: Web Tool. Web Address The TRIM web tool can be accessed at:

TRIM: Web Tool. Web Address The TRIM web tool can be accessed at: TRIM: Web Tool Accessing TRIM Records through the Web The TRIM web tool is primarily aimed at providing access to records in the TRIM system. While it is possible to place records into TRIM or amend records

More information

Get Started in Web Conference Classes: Set Up WebEx

Get Started in Web Conference Classes: Set Up WebEx Get Started in Web Conference Classes: Set Up WebEx Don t miss class on your first day because of technical issues. Make sure you and your computer are ready for web conference classes with this guide.

More information

MyReports Recommended Browser Settings MYR-200a

MyReports Recommended Browser Settings MYR-200a MyReports Recommended Browser Settings MYR-200a Note: If you have installed an additional Tool Bar on your browser, such as Yahoo Tool Bar or Google Tool Bar, be sure that it is also configured to allow

More information

USER S MANUAL JOOMLA! GOVERNMENT WEB TEMPLATE

USER S MANUAL JOOMLA! GOVERNMENT WEB TEMPLATE USER S MANUAL JOOMLA! GOVERNMENT WEB TEMPLATE 1 TABLE OF CONTENTS Introduction 3 Parts of the Government Web Template (GWT) 4 Logging In and Getting Started 5 GWT Joomla! Module Map 8 Editing the Top Bar

More information

Developing Web Views for VMware vcenter Orchestrator

Developing Web Views for VMware vcenter Orchestrator Developing Web Views for VMware vcenter Orchestrator vcenter Orchestrator 5.1 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

Site.com Workbook. Version 1: Summer 14. Last updated: July 4, 2014

Site.com Workbook. Version 1: Summer 14. Last updated: July 4, 2014 Version 1: Summer 14 Site.com Workbook Last updated: July 4, 2014 Copyright 2000 2014 salesforce.com, inc. All rights reserved. Salesforce.com is a registered trademark of salesforce.com, inc., as are

More information

Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator

Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator Written by: Chris Jaun (cmjaun@us.ibm.com) Sudha Piddaparti (sudhap@us.ibm.com) Objective In this

More information

SAP VIRTUAL AGENCY GETTING STARTED GUIDE

SAP VIRTUAL AGENCY GETTING STARTED GUIDE GETTING STARTED GUIDE TABLE OF CONTENTS Introduction 3 Starting Out 5 Creating Campaigns and Collateral 8 Customizing and Executing a Pre-Packaged Campaign 9 Create your own Campaigns 11 Create a Landing

More information

Configuring the JEvents Component

Configuring the JEvents Component Configuring the JEvents Component The JEvents Control Panel's Configuration button takes you to the JEvents Global Configuration page. Here, you may set a very wide array of values that control the way

More information

Work with PassKey Manager

Work with PassKey Manager Work with PassKey Manager Trademark Notice Blackboard, the Blackboard logos, and the unique trade dress of Blackboard are the trademarks, service marks, trade dress and logos of Blackboard, Inc. All other

More information