FREE VERSION. Created by: Jason Nesbitt Mobile App Development Guide

Size: px
Start display at page:

Download "FREE VERSION. Created by: Jason Nesbitt Mobile App Development Guide"

Transcription

1 FREE VERSION Created by: Jason Nesbitt Mobile App Development Guide Quickly learn all of the necessary skills needed to build your very own customisable mobile apps. Important: Download Example Files by following the steps below 1. Visit 2. Click on the GET EXAMPLES button in the top menu 3. Enter the following code: 1earn#pp$ev333 Brought to you by:

2 CONTENTS 1 INTRODUCTION 5 2 SETTING UP 667 Activity 2.1 Setup your development environment 8 3 START (COPY!) YOUR FIRST APP 910 Activity Create your first project 9 4 MANIPULATING YOUR FIRST PAGE ERROR! BOOKMARK NOT DEFINED.13 Activity 4.1 Open the first app page Activity 4.2 Change app text Activity 4.3 Add app content text Activity 4.4 Add a picture VIEW YOUR APP & MAKE CHANGES ERROR! BOOKMARK NOT DEFINED.18 Activity 5.1 View app as a website 18 #1 How Is It Looking 20 Activity 5.2 Move code to change the layout 20 #2 How Is It Looking 21 THE END! 24

3 1 Introduction Welcome to the beginning of your mobile development journey. Do the difficult things while they are easy and do the great things while they are small. A journey of a thousand miles must begin with a single step. - Lao Tzu

4 The world of technology moves very quickly. Many businesses are being left behind solely because of this fact. People believe that the best way to keep up with this technology is by paying extortionate amounts of money to have websites and apps developed. This doesn t have to be the case. There have been many advancements to simplify development so someone with no experience can put in a few hours and get something looking as good as the professionals. This is the exact reason for this guide the simplest, no- nonsense way of creating mobile apps by showing you the only information you need to know. The amazing thing about this guide is that you can keep referring back to it when you are at specific stages of your development. Don t feel any pressure to always read it all the way through; it is meant as a practical source to tackle the full circle of app development from conception to release. Don t be shy about asking any questions at Not only will you get the simple answers you need, but you can also help other coders as all useful questions and answers are posted on the website. Happy coding! Jason Nesbitt Nesbitt Web Please Note: This guide requires a bit of tenacity at times to get through. The rewards for this tenacity, however, will be incredible as it means you will have beaten most of the competition that has given up and you will have achieved the limitless skill of mobile app development! Learn App Dev Introduction 4

5 2 Setting Up Let s turn your machine into a development machine. The only source of knowledge is experience. - Albert Einstein

6 Setting up your development environment may seem daunting at first and, admittedly, it is the most complicated part of your development process! This is a good thing, though, because the fact that it is slightly complicated means that you will have an advantage over all of your competitors by using this simple guide to set up and get cracking. Activity 2.1 Setup your development environment Step 1 Install Node.js by visiting the following website and clicking the green install button: Step 2 Open your command prompt. The command prompt looks like this and the best way to find it is to search for CMD (if on Windows 8). The best way to find CMD on previous versions of Windows is to click the start menu, the type CMD in the search. MACs need to open Terminal Application. Learn App Dev Setting Up 6

7 Step 3 Type the following into Command Prompt and press the Enter key: npm install -g cordova ionic Step 4 Download and install TextPad by clicking the link below: Every aspect of your App can be created using only TextPad which means you don t have to buy any expensive software! TextPad is a simple text editor that makes seeing your code a little bit easier. Step 5 - (Only for Android Development) Download and install the Android SDK (Software Development Kit) environment by clicking the link below: bundle- windows- x zip Note: This is quite a large file that s good because it does all the magical stuff of creating your app! You will need to unzip the file that you downloaded and run the installation. The equivalent Apple ios Development kit can be found later in the guide. Activity 2.1 Complete Learn App Dev Setting Up 7

8 3 Start (Copy!) Your First App There is no faster way to get up and running than to copy something that already works. The best way to predict the future is to create it. - Peter Drucker

9 This pack comes with an example app to get you started. You can steal and change it to be your own app within no time at all! It s amazing how changing the colours/layout and adding your own content can turn it into a completely original app. Below is the easy step- through guide to get an example project on to your machine so that you can begin editing it. Don t worry about how many confusing files there are in there; we will explain exactly what you can ignore and what you need to pay attention to. Just in case you didn t read it: There is an important file to download and unzip that can be found at the top of this book! Go download it now if you haven t done already. Activity Create your first project Step 1 Open up the folder that you downloaded with this guide and copy the following folder onto your desktop: Example #1 - Simple Tab App Step 2 Right- click on the folder and rename it as: myapp The reason for this is to make it easier to reference later on when we are building and running the app on a mobile device. Activity 3.1 Complete Double- click your myapp folder and you ll notice that there are a few confusing folders and files in there. All you need to know at this point is: You will be ignoring every folder except the www one! Okay, panic over. Double- click on the www folder. This is basically your website which runs as an app. Now is a good time to explain each of the folders/files. css folder The items in this folder dictate how your app looks. We will change these soon to give your app its own, unique look img folder This is where all of the images within the app go, such as your logo, etc. Learn App Dev Start (Copy!) Your First App 9

10 js folder This is where the JavaScript coding goes. This is the most complex part of the app and does a lot of the smart functionalities. We will try to avoid this as much as possible, but we may need to make some small changes to make our app work exactly the way we want it to. lib folder This is where all of the magical files that make the app work so well reside. We can ignore this one completely and be thankful that it is there. index.html file This is the main app file and is the one that we will be editing most as it contains all of the pages and items that we want to appear in our app. That s it! We can now look at editing these files to make your own app. Learn App Dev Start (Copy!) Your First App 10

11 4 Manipulating Your First Page Let s start at the beginning, and make some changes. The beginning is the most important part of the work. - Plato

12 Activity 4.1 Open the first app page OK, we re all set up so now it s time to make some changes and really make this app your own. Step 1 Double- click on the myapp folder to open it. Step 2 Double- click on the www folder to open it. Step 3 Right- click on the index.html file and select TextPad from the menu that appears. Activity 4.1 Complete This will open the TextPad application that we installed earlier. You are now staring at the code that makes every website in the world work! Quite exciting, isn t it? Well, it may not look that exciting but it is very powerful. All of the top section can be ignored. Bring your attention to the 2 lines about halfway down the page that say: This, as you may have guessed, is the home page. It is the first page that people will see when they open your app. You can actually specify another page for the app to start on but we will discuss that later. You will be very amazed to see how good the page looks, considering there are only 10 lines that make this page function! Let s start by changing the title that appears at the top of the page. The word Home doesn t give it much of a custom feel, so let s change it to be our home. Learn App Dev Manipulating Your First Page 12

13 Activity 4.2 Change app text Step 1 Update the line mentioned above so that it has your name in it to look like this (the changes are underlined): Activity 4.2 Complete The next thing that we re going to change is the content of this first page. An easy way to spot real content in the code is to look for real sentences that make sense. Before writing content, we will briefly discuss the different type of styles of text. These styles are a quick way of having larger text in places and are very useful for creating headings, sub headings etc. Below is a list of a few of them: <h1> - This is the largest heading and is useful for titles. <h2> - This is a slightly smaller heading which can be used for sub- headings. <h3> - You can see a pattern here. The numbers keep increasing to make the text smaller. <p> - This is the most common item used to write text. You will see it a lot. <a> - These are used to link one page to another, which includes linking external pages like Facebook and Google. <br /> - This adds a new line. It can be very useful and you will see it in some of the example code. It is unlikely that you will use any other items when writing text. Below is an example of a heading, a subheading and a bit of text below, it to give you an idea of how they are used: This text would make a perfect addition to your first app. Learn App Dev Manipulating Your First Page 13

14 Activity 4.3 Add app content text Step 1 Copy all of the above text and paste/type it just below the current line of text so it looks like this (the changes are underlined): Activity 4.3 Complete Okay, now you know how to add content. Let s look at adding a picture to your first page. As they say, a picture is worth a thousand words! Adding an image is very similar to adding text but the item we use is: <img> We specify which picture to use by placing it in the same folder as the website and setting the source as the location and name of the picture. See below. Learn App Dev Manipulating Your First Page 14

15 Activity 4.4 Add a picture Step 1 Find the picture file that you would like to use and rename it image1. Make a note of the name of the file after the dot. For example, this will be.jpg or.png, etc. NOTE: You may need to do the following to be able to see the type of file (the bit after the dot). Open the folder that your picture is in and make sure the following box is ticked (Windows 8) You can also right click on a picture and go to Properties to see what type it is: jpg, png etc. Step 2 Copy the picture file that you would like to use and paste it into the following folder: myapp/www/img Step 3 Go back to our index.html file and paste the following line below the text that we just added (the line to be added is underlined): Activity 4.4 Complete You can easily change the height and width of the picture by changing the numbers in the height and width attributes. We ll leave it as this for now. You re probably wondering what your app looks like after making these changes. Don t worry, that section is coming up next and I am confident that you will be impressed. Learn App Dev Manipulating Your First Page 15

16 IMPORTANT Just before you get to the next section, I have one important thing that you should do very frequently: save your work! Either click on the save button at the top or press the ctrl + s keys on Windows or MAC + S keys on a MAC. Learn App Dev Manipulating Your First Page 16

17 5 View Your App & Make Changes Keep yourself motivated by seeing your app change. Nothing will work unless you do. - Maya Angelou

18 The reason why we are using the Ionic Framework to build our mobile app is because it is very easy to make changes and view them instantly. Do you remember some of the things we changed in the previous section? These are: the title header of a tab information within a page a picture within a page Let s see what these changes look like by doing the following: Activity 5.1 View app as a website Step 1 Open the myapp folder that is on your desktop by double- clicking it. Step 2 Open the www folder by double- clicking it. Step 3 Open the index.html file by double- clicking it. Activity 5.1 Complete It may look slightly different and stretched when it is displayed in your web browser (the file that opened when you double- clicked on index.html), BUT it will look great on a mobile screen. You could resize your browser now to see what it looks like when it shrinks to fit a smaller screen. Very quick and effective, isn t it? Look at the screenshot on the next page. Your app should look like this. Note: The browser has been resized to be similar to the size of a mobile screen. Learn App Dev View Your App & Make Changes 18

19 #1 How Is It Looking Learn App Dev View Your App & Make Changes 19

20 That doesn t look too bad for a few minutes of work, does it? The first thing that appears to be wrong with this is that the image is in the wrong place. The reason for this is because code works in a downward hierarchy. This means that the higher you put code, the higher it appears in the app. Let s move the image to be in a better place. Activity 5.2 Move code to change the layout Step 1 Copy the following <img> line: Step 2 Paste/type the same line below all of the text that you wrote earlier; it will be just above the button as shown below (changes are underlined). Step 3 Save your work and refresh your web page to see the difference. Activity 5.2 Complete You can see that just by putting the image code below the text we added, it appears below it. Now that we have done the simple editing and viewing of your app, it s time to make some real changes that will make your app fully unique. The next page shows what your app should now look like after moving the image. Learn App Dev View Your App & Make Changes 20

21 #2 How Is It Looking Learn App Dev View Your App & Make Changes 21

22 The End! I hope you ve enjoyed the free introduction guide to Learn App Dev. I can only imagine how much fun it was becoming a coder and getting a feel for how easy it is to make your own mobile apps. Don t panic the journey doesn t end here and there is a lot more amazing things that you can do! Head over to the website below to get the full guide and learn how to easily make Android and iphone/ipad apps that look as good as the professionals: See You On The App Stores! Jason

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

A Java Crib Sheet. First: Find the Command Line

A Java Crib Sheet. First: Find the Command Line A Java Crib Sheet Unlike JavaScript, which is pretty much ready-to-go on any computer with a modern Web browser, Java might be a more complex affair However, logging some time with Java can be fairly valuable,

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

Web App Development Session 1 - Getting Started. Presented by Charles Armour and Ryan Knee for Coder Dojo Pensacola

Web App Development Session 1 - Getting Started. Presented by Charles Armour and Ryan Knee for Coder Dojo Pensacola Web App Development Session 1 - Getting Started Presented by Charles Armour and Ryan Knee for Coder Dojo Pensacola Tools We Use Application Framework - Compiles and Runs Web App Meteor (install from https://www.meteor.com/)

More information

Dreamweaver and Fireworks MX Integration Brian Hogan

Dreamweaver and Fireworks MX Integration Brian Hogan Dreamweaver and Fireworks MX Integration Brian Hogan This tutorial will take you through the necessary steps to create a template-based web site using Macromedia Dreamweaver and Macromedia Fireworks. The

More information

Hello. What s inside? Ready to build a website?

Hello. What s inside? Ready to build a website? Beginner s guide Hello Ready to build a website? Our easy-to-use software allows to create and customise the style and layout of your site without you having to understand any coding or HTML. In this guide

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

Icons: 1024x1024, 512x512, 180x180, 120x120, 114x114, 80x80, 60x60, 58x58, 57x57, 40x40, 29x29

Icons: 1024x1024, 512x512, 180x180, 120x120, 114x114, 80x80, 60x60, 58x58, 57x57, 40x40, 29x29 I. Before Publishing 1. System requirements Requirements for ios App publishing using FlyingCatBuilder Mac running OS X version 10.9.4 or later Apple Development Account Enrollment in ios Developer Program

More information

Blueball First Class Sandvox Designs v2.0 Works with Sandvox 2+ only!

Blueball First Class Sandvox Designs v2.0 Works with Sandvox 2+ only! Blueball First Class Sandvox Designs v2.0 Works with Sandvox 2+ only! Overview and Usage Tips For Blueball First Class Sandvox 2 Designs Thank you for purchasing one of our original Sandvox Designs bundle.

More information

Setting Up Your Android Development Environment. For Mac OS X (10.6.8) v1.0. By GoNorthWest. 3 April 2012

Setting Up Your Android Development Environment. For Mac OS X (10.6.8) v1.0. By GoNorthWest. 3 April 2012 Setting Up Your Android Development Environment For Mac OS X (10.6.8) v1.0 By GoNorthWest 3 April 2012 Setting up the Android development environment can be a bit well challenging if you don t have all

More information

Creating your personal website. Installing necessary programs Creating a website Publishing a website

Creating your personal website. Installing necessary programs Creating a website Publishing a website Creating your personal website Installing necessary programs Creating a website Publishing a website The objective of these instructions is to aid in the production of a personal website published on

More information

ios App for Mobile Website! Documentation!

ios App for Mobile Website! Documentation! ios App for Mobile Website Documentation What is IOS App for Mobile Website? IOS App for Mobile Website allows you to run any website inside it and if that website is responsive or mobile compatible, you

More information

NJCU WEBSITE TRAINING MANUAL

NJCU WEBSITE TRAINING MANUAL NJCU WEBSITE TRAINING MANUAL Submit Support Requests to: http://web.njcu.edu/its/websupport/ (Login with your GothicNet Username and Password.) Table of Contents NJCU WEBSITE TRAINING: Content Contributors...

More information

Adobe Summit 2015 Lab 712: Building Mobile Apps: A PhoneGap Enterprise Introduction for Developers

Adobe Summit 2015 Lab 712: Building Mobile Apps: A PhoneGap Enterprise Introduction for Developers Adobe Summit 2015 Lab 712: Building Mobile Apps: A PhoneGap Enterprise Introduction for Developers 1 Table of Contents INTRODUCTION MODULE 1 AEM & PHONEGAP ENTERPRISE INTRODUCTION LESSON 1- AEM BASICS

More information

Installing Logos SSL Certificates on Mobile Devices

Installing Logos SSL Certificates on Mobile Devices Installing Logos SSL Certificates on Mobile Devices Phase 1: Obtain the SSL Certificate You can obtain the SSL certificate in one of 2 ways. Method 1 Download the SSL certificate from it.logostech.net

More information

Mac Information. How to share files with Apple s MobileMe service

Mac Information. How to share files with Apple s MobileMe service Mac Information How to share files with Apple s MobileMe service Introduction: With MobileMe, Apple s internet services, you can place files online for others to download. This saves your colleague time

More information

WebSite Tonight. Getting Started Guide. Getting Your Personal Website Online in One Night. WebSite Tonight // A Wedding Website

WebSite Tonight. Getting Started Guide. Getting Your Personal Website Online in One Night. WebSite Tonight // A Wedding Website Getting Started Guide WebSite Tonight Getting Your Personal Website Online in One Night Getting Started Guide Page 1 Getting Started Guide: WebSite Tonight A Wedding Website Version 1.0 (03.08.10) Copyright

More information

CEFNS Web Hosting a Guide for CS212

CEFNS Web Hosting a Guide for CS212 CEFNS Web Hosting a Guide for CS212 INTRODUCTION: TOOLS: In CS212, you will be learning the basics of web development. Therefore, you want to keep your tools to a minimum so that you understand how things

More information

So you want to create an Email a Friend action

So you want to create an Email a Friend action So you want to create an Email a Friend action This help file will take you through all the steps on how to create a simple and effective email a friend action. It doesn t cover the advanced features;

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

The Social Accelerator Setup Guide

The Social Accelerator Setup Guide The Social Accelerator Setup Guide Welcome! Welcome to the Social Accelerator setup guide. This guide covers 2 ways to setup SA. Most likely, you will want to use the easy setup wizard. In that case, you

More information

University of Hull Department of Computer Science. Wrestling with Python Week 01 Playing with Python

University of Hull Department of Computer Science. Wrestling with Python Week 01 Playing with Python Introduction Welcome to our Python sessions. University of Hull Department of Computer Science Wrestling with Python Week 01 Playing with Python Vsn. 1.0 Rob Miles 2013 Please follow the instructions carefully.

More information

ONLINE ACCOUNTABILITY FOR EVERY DEVICE. Quick Reference Guide V1.0

ONLINE ACCOUNTABILITY FOR EVERY DEVICE. Quick Reference Guide V1.0 ONLINE ACCOUNTABILITY FOR EVERY DEVICE Quick Reference Guide V1.0 TABLE OF CONTENTS ACCOUNT SET UP Creating an X3watch account DOWNLOADING AND INSTALLING X3WATCH System Requirements How to install on a

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program, you ll find a number of task panes, toolbars,

More information

Interactive Module Uploading & Maintaining Websites

Interactive Module Uploading & Maintaining Websites Interactive Module Jason Mayo jason@madebyshape.co.uk This slideshow plus files used today, will be placed on: http://interactivesalford2012.tumblr.com Talking about... Preparing for Upload Domains Hosting

More information

NS Financials. Client Platform Guide for Mac Using Safari Incl Citrix Setup As A Local Client

NS Financials. Client Platform Guide for Mac Using Safari Incl Citrix Setup As A Local Client NS Financials Client Platform Guide for Mac Using Safari Incl Citrix Setup As A Local Client This document describes how to access the NS Financials system through Safari on an Apple Mac and outlines the

More information

MEAP Edition Manning Early Access Program Hello! ios Development version 14

MEAP Edition Manning Early Access Program Hello! ios Development version 14 MEAP Edition Manning Early Access Program Hello! ios Development version 14 Copyright 2013 Manning Publications For more information on this and other Manning titles go to www.manning.com brief contents

More information

Building Mobile Applications Creating ios applications with jquery Mobile, PhoneGap, and Drupal 7

Building Mobile Applications Creating ios applications with jquery Mobile, PhoneGap, and Drupal 7 Building Mobile Applications Creating ios applications with jquery Mobile, PhoneGap, and Drupal 7 Jeff Linwood 1st Chapter, Early Release Introduction... 3 Prerequisites... 3 Introduction to Mobile Apps...

More information

Android: Setup Hello, World: Android Edition. due by noon ET on Wed 2/22. Ingredients.

Android: Setup Hello, World: Android Edition. due by noon ET on Wed 2/22. Ingredients. Android: Setup Hello, World: Android Edition due by noon ET on Wed 2/22 Ingredients. Android Development Tools Plugin for Eclipse Android Software Development Kit Eclipse Java Help. Help is available throughout

More information

DREAMWEAVER BASICS. A guide to updating Faculty websites Created by the Advancement & Marketing Unit

DREAMWEAVER BASICS. A guide to updating Faculty websites Created by the Advancement & Marketing Unit DREAMWEAVER BASICS A guide to updating Faculty websites Created by the Advancement & Marketing Unit Table of content Tip: Click on the links below to go straight to the desired section The W (Web Services)

More information

Contents First Time Setup... 2 Setting up the Legal Vault Client (KiteDrive)... 3 Setting up the KiteDrive Outlook Plugin... 10 Using the Legal Vault

Contents First Time Setup... 2 Setting up the Legal Vault Client (KiteDrive)... 3 Setting up the KiteDrive Outlook Plugin... 10 Using the Legal Vault Contents First Time Setup... 2 Setting up the Legal Vault Client (KiteDrive)... 3 Setting up the KiteDrive Outlook Plugin... 10 Using the Legal Vault Outlook Plugin... 13 Using KiteDrive to Send Large

More information

A Parents Guide to. 2014 ConnectSafely.org

A Parents Guide to. 2014 ConnectSafely.org A Parents Guide to 2014 ConnectSafely.org Parenting in the age of social media can be tricky. Australians are amongst the highest users of social media in the world, averaging 22 hours per week per person.

More information

Blueball Design Dynamic Content 2 Stack Readme Manual v1.0

Blueball Design Dynamic Content 2 Stack Readme Manual v1.0 Blueball Design Dynamic Content 2 Stack Readme Manual v1.0 A unique responsive stack that dynamically populates and updates a content area within the stack using a warehoused external XML flat text file

More information

Getting Started with WebSite Tonight

Getting Started with WebSite Tonight Getting Started with WebSite Tonight WebSite Tonight Getting Started Guide Version 3.0 (12.2010) Copyright 2010. All rights reserved. Distribution of this work or derivative of this work is prohibited

More information

One of the fundamental kinds of Web sites that SharePoint 2010 allows

One of the fundamental kinds of Web sites that SharePoint 2010 allows Chapter 1 Getting to Know Your Team Site In This Chapter Requesting a new team site and opening it in the browser Participating in a team site Changing your team site s home page One of the fundamental

More information

Build Your Mailing List

Build Your Mailing List Introduction MailChimp makes it fun and easy to send email newsletters, manage subscriber lists and track newsletter performance, but what does that have to do with you? Why should churches be concerned

More information

Online Registrations for Summer Programming Josh Muse (jmuse@colchestervt.gov) & Hannah Peacock (hpeacock@colchestervt.gov)

Online Registrations for Summer Programming Josh Muse (jmuse@colchestervt.gov) & Hannah Peacock (hpeacock@colchestervt.gov) Online Registrations for Summer Programming Josh Muse (jmuse@colchestervt.gov) & Hannah Peacock (hpeacock@colchestervt.gov) Summer Reading Registration In this tutorial, we will walk you through the process

More information

The Rainmaker Platform Quick-Start Guide

The Rainmaker Platform Quick-Start Guide QUICK-START GUIDE The Rainmaker Platform Quick-Start Guide Get Your Rainmaker Site Set Up and Ready to Accelerate Your Business Copyright 2015 Rainmaker Digital, LLC All Rights Reserved. THE RAINMAKER

More information

Creating an App Spec How to prepare for your first mobile app!

Creating an App Spec How to prepare for your first mobile app! Creating an App Spec How to prepare for your first mobile app! by Mark Larson Marblesoft, LLC Welcome! Thank you for choosing Marblesoft as your app developer. Creating your first mobile application can

More information

Getting Started with Dynamic Web Sites

Getting Started with Dynamic Web Sites PHP Tutorial 1 Getting Started with Dynamic Web Sites Setting Up Your Computer To follow this tutorial, you ll need to have PHP, MySQL and a Web server up and running on your computer. This will be your

More information

Airangel s WiFi Portal Best Practice Guidelines Get the most out of your WiFi infrastructure

Airangel s WiFi Portal Best Practice Guidelines Get the most out of your WiFi infrastructure CONTROL PERSONALISE SOCIALISE www.airangel.com Airangel s WiFi Portal Best Practice Guidelines Get the most out of your WiFi infrastructure Contents Why is my portal design so important? Page 03 - You

More information

YouTube Channel Authority - The Definitive Guide

YouTube Channel Authority - The Definitive Guide YouTube Channel Authority - The Definitive Guide So what exactly is YouTube channel authority and how does it affect you? To understand how channel authority works, you first need a basic understand of

More information

Create an ios App using Adobe Flash Side by Side Training, 2013. And without using a Mac

Create an ios App using Adobe Flash Side by Side Training, 2013. And without using a Mac Create an ios App using Adobe Flash And without using a Mac Contents 1 Become an Apple ios Developer... 2 2 Add a Development Certificate... 4 3 Create a Certificate Signing Request (CSR)... 6 4 Register

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

Knappsack ios Build and Deployment Guide

Knappsack ios Build and Deployment Guide Knappsack ios Build and Deployment Guide So you want to build and deploy an ios application to Knappsack? This guide will help walk you through all the necessary steps for a successful build and deployment.

More information

Catalog Creator by On-site Custom Software

Catalog Creator by On-site Custom Software Catalog Creator by On-site Custom Software Thank you for purchasing or evaluating this software. If you are only evaluating Catalog Creator, the Free Trial you downloaded is fully-functional and all the

More information

MAKE YOUR FIRST A-MAZE-ING GAME IN GAME MAKER 7

MAKE YOUR FIRST A-MAZE-ING GAME IN GAME MAKER 7 MAKE YOUR FIRST A-MAZE-ING GAME IN GAME MAKER 7 In this tutorial, you will learn how to create your first game in Game Maker. The game you will create will be a simple maze game. The object of the game

More information

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information

Samsung Xchange for Mac User Guide. Winter 2013 v2.3

Samsung Xchange for Mac User Guide. Winter 2013 v2.3 Samsung Xchange for Mac User Guide Winter 2013 v2.3 Contents Welcome to Samsung Xchange IOS Desktop Client... 3 How to Install Samsung Xchange... 3 Where is it?... 4 The Dock menu... 4 The menu bar...

More information

Exporting an image from Sibelius to Microsoft Word

Exporting an image from Sibelius to Microsoft Word Exporting an image from Sibelius to Microsoft Word Introduction I created this document because many people have problems making Word documents with Sibelius-generated graphics (EMF) files in them. And

More information

Using the owncloud Android App

Using the owncloud Android App Using the owncloud Android App Accessing your files on your owncloud server via the Web interface is easy and convenient, as you can use any Web browser on any operating system without installing special

More information

How to register and use our Chat System

How to register and use our Chat System How to register and use our Chat System Why this document? We have a very good chat system and easy to use when you are set up, but getting registered and into the system can be a bit complicated. If you

More information

Premier Software Portal

Premier Software Portal Premier Software Portal To configure your web booking firstly go to our web site at http://www.premiersoftware.co.uk Click the Client Login link at the top right then enter your serial number and postcode

More information

How to install and use the File Sharing Outlook Plugin

How to install and use the File Sharing Outlook Plugin How to install and use the File Sharing Outlook Plugin Thank you for purchasing Green House Data File Sharing. This guide will show you how to install and configure the Outlook Plugin on your desktop.

More information

Google Drive: Access and organize your files

Google Drive: Access and organize your files Google Drive: Access and organize your files Use Google Drive to store and access your files, folders, and Google Docs, Sheets, and Slides anywhere. Change a file on the web, your computer, tablet, or

More information

Creating a Restaurant Website

Creating a Restaurant Website 11 Creating a Restaurant Website In This Lesson This lesson looks at the process of creating a small business website, in this case for a restaurant. Starting from a needs analysis, this lesson shows you

More information

Mail Merge Tutorial (for Word 2003-2007) By Allison King Spring 2007 (updated Fall 2007)

Mail Merge Tutorial (for Word 2003-2007) By Allison King Spring 2007 (updated Fall 2007) Mail Merge Tutorial (for Word 2003-2007) By Allison King Spring 2007 (updated Fall 2007) What is mail merge? You've probably heard it mentioned around the office or at an interview (especially for a temp

More information

Welcome to MailChimp.

Welcome to MailChimp. Welcome to MailChimp. MailChimp is a powerful, easy way to send email newsletters. This guide will help you get your first campaign off the ground. We ll also offer tips for managing your list, viewing

More information

Step by step guides. Deploying your first web app to your FREE Azure Subscription with Visual Studio 2015

Step by step guides. Deploying your first web app to your FREE Azure Subscription with Visual Studio 2015 Step by step guides Deploying your first web app to your FREE Azure Subscription with Visual Studio 2015 Websites are a mainstay of online activities whether you want a personal site for yourself or a

More information

Outlook Data File navigate to the PST file that you want to open, select it and choose OK. The file will now appear as a folder in Outlook.

Outlook Data File navigate to the PST file that you want to open, select it and choose OK. The file will now appear as a folder in Outlook. Migrate Archived Outlook Items Outlook includes archiving functionality that is used to free up space on the mail server by moving older items from the mail server to PST files stored on your computer

More information

Introduction: The Xcode templates are not available in Cordova-2.0.0 or above, so we'll use the previous version, 1.9.0 for this recipe.

Introduction: The Xcode templates are not available in Cordova-2.0.0 or above, so we'll use the previous version, 1.9.0 for this recipe. Tutorial Learning Objectives: After completing this lab, you should be able to learn about: Learn how to use Xcode with PhoneGap and jquery mobile to develop iphone Cordova applications. Learn how to use

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

Skype for Business. User Guide. Contents

Skype for Business. User Guide. Contents Skype for Business User Guide Contents What is Skype for Business... 2 Accessing Skype for Business... 2 Starting Skype for Business for the first time... 2 Subsequent access to Skype for Business... 3

More information

e-template Instructions

e-template Instructions e-template Instructions Quick Start It s easy to load an e-template into Outlook. Aside from one difference, it s just like attaching a file to an email message. Here s a quick start. More detailed instructions

More information

Sage One. Our 5 top tips to stress-free payroll. tress-free. ayroll

Sage One. Our 5 top tips to stress-free payroll. tress-free. ayroll Sage One tress-free ayroll Our 5 top tips to stress-free payroll What do I need to think about? Setting up and running a small business takes a lot of time and effort, so you need enthusiasm, confidence

More information

ios App Development for Everyone

ios App Development for Everyone ios App Development for Everyone Kevin McNeish Getting Started Plugging into the Mother Ship Welcome! This is the part of the book where you learn how to get yourself and your computer set for App development

More information

Podcasting with Audacity

Podcasting with Audacity Podcasting with Audacity Table of Contents Introduction... 1 Why Podcast?... 2 Audacity Set-Up... 2 Installation... 2 Configuration... 2 Audacity Intro... 3 Adding tracks... 4 Prepare to Start Recording...

More information

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide

CONTENTM WEBSITE MANAGEMENT SYSTEM. Getting Started Guide CONTENTM WEBSITE MANAGEMENT SYSTEM Getting Started Guide Table of Contents CONTENTM WEBSITE MANAGEMENT SYSTEM... 1 GETTING TO KNOW YOUR SITE...5 PAGE STRUCTURE...5 Templates...5 Menus...5 Content Areas...5

More information

Lesson 2. From computer to USB

Lesson 2. From computer to USB Lesson 2 From computer to USB How do I save my designs from my computer to a USB Flash drive to stitch out on my BERNINA? So now you have designs on your computer and want to put them onto your BERNINA

More information

TakeMySelfie ios App Documentation

TakeMySelfie ios App Documentation TakeMySelfie ios App Documentation What is TakeMySelfie ios App? TakeMySelfie App allows a user to take his own picture from front camera. User can apply various photo effects to the front camera. Programmers

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

MOBILE APPS. QA Testing for mobile applications

MOBILE APPS. QA Testing for mobile applications MOBILE APPS QA Testing for mobile applications How familiar are you with Apple devices? This question can be asked for apple devices as well as Android devices - depending on the company your interviewing

More information

Beginning Web Development with Node.js

Beginning Web Development with Node.js Beginning Web Development with Node.js Andrew Patzer This book is for sale at http://leanpub.com/webdevelopmentwithnodejs This version was published on 2013-10-18 This is a Leanpub book. Leanpub empowers

More information

INTRODUCTION TO WEB DESIGN WITH DREAMWEAVER

INTRODUCTION TO WEB DESIGN WITH DREAMWEAVER INTRODUCTION TO WEB DESIGN WITH DREAMWEAVER By Michael L Curry COMPANION WEBSITE http://michaelcurry.com/default.aspx?p=73&n=articles-on-web-design-topics COURSE DESCRIPTION This class explains how to

More information

Your Guide to the All New, Drag & Drop, Mobile-Responsive Email Builder

Your Guide to the All New, Drag & Drop, Mobile-Responsive Email Builder Your Guide to the All New, Drag & Drop, Mobile-Responsive Email Builder The All New Drag & Drop Email Builder from Net-Results Contents I. Introduction II. Overview - The Canvas & Builder Tools III. The

More information

Terminal Four (T4) Site Manager

Terminal Four (T4) Site Manager Terminal Four (T4) Site Manager Contents Terminal Four (T4) Site Manager... 1 Contents... 1 Login... 2 The Toolbar... 3 An example of a University of Exeter page... 5 Add a section... 6 Add content to

More information

Application Note. Building a Website Using Dreamweaver without Programming. Nan Xia. MSU ECE 480 Team 5

Application Note. Building a Website Using Dreamweaver without Programming. Nan Xia. MSU ECE 480 Team 5 Application Note Building a Website Using Dreamweaver without Programming Nan Xia MSU ECE 480 Team 5 11/16/2012 Table of Contents Abstract... 3 Introduction and Background... 3 Keywords... 3 Procedure...

More information

A Parents Guide to. 2015 ConnectSafely.org saferinternet.org.uk

A Parents Guide to. 2015 ConnectSafely.org saferinternet.org.uk A Parents Guide to 2015 ConnectSafely.org saferinternet.org.uk At the UK Safer Internet Centre, one of our key objectives is to develop new educational and awareness-raising resources for parents in the

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

If you know exactly how you want your business forms to look and don t mind detail

If you know exactly how you want your business forms to look and don t mind detail Advanced Form Customization APPENDIX E If you know exactly how you want your business forms to look and don t mind detail work, you can customize QuickBooks forms however you want. With QuickBooks Layout

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

Microsoft Expression Web

Microsoft Expression Web Microsoft Expression Web Microsoft Expression Web is the new program from Microsoft to replace Frontpage as a website editing program. While the layout has changed, it still functions much the same as

More information

The default option is that full headers appear at the BOTTOM of each received message.

The default option is that full headers appear at the BOTTOM of each received message. AOL Email The email files are in an html format. The objective is to save the file in html format. This can be done as follows: - Open the email message you want to save, as if you were reading it - Near

More information

A quick guide to setting up your new website

A quick guide to setting up your new website A quick guide to setting up your new website Hi there. Welcome to MrSite we re really happy you chose to build your brand new website with us and look forward to seeing what you create! We re sure you

More information

educ Office 365 email: Remove & create new Outlook profile

educ Office 365 email: Remove & create new Outlook profile Published: 29/01/2015 If you have previously used Outlook the with the SCC/SWO service then once you have been moved into Office 365 your Outlook will need to contact the SCC/SWO servers one last time

More information

RIDICULOUSLY EASY GUIDE TO SOCIAL MEDIA TWITTER

RIDICULOUSLY EASY GUIDE TO SOCIAL MEDIA TWITTER RIDICULOUSLY EASY GUIDE TO SOCIAL MEDIA Alberta s a big place and while you could run round the province telling everyone you see about Change Day AB, it s probably not the best use of your time and could

More information

Skype for Business User Guide

Skype for Business User Guide Skype for Business User Guide Contents Accessing Skype for Business... 2 Starting Skype for Business for the first time... 2 Subsequent access to Skype for Business... 3 Customising Skype for Business

More information

Quick Reference Guide

Quick Reference Guide Simplified Web Interface for Teachers Quick Reference Guide Online Development Center Site Profile 5 These fields will be pre-populated with your information { 1 2 3 4 Key 1) Website Title: Enter the name

More information

Microsoft PowerPoint 2010 Templates and Slide Masters (Level 3)

Microsoft PowerPoint 2010 Templates and Slide Masters (Level 3) IT Services Microsoft PowerPoint 2010 Templates and Slide Masters (Level 3) Contents Introduction... 1 Installed Templates and Themes... 2 University of Reading Templates... 3 Further Templates and Presentations...

More information

Cloud Storage Services. Keep In Mind

Cloud Storage Services. Keep In Mind Cloud Storage Services The term the cloud is a buzzword thrown around by many, as something new and wonderful, but is never fully explained. As far as any explanation goes, it s usually no more than a

More information

TortoiseGIT / GIT Tutorial: Hosting a dedicated server with auto commit periodically on Windows 7 and Windows 8

TortoiseGIT / GIT Tutorial: Hosting a dedicated server with auto commit periodically on Windows 7 and Windows 8 TortoiseGIT / GIT Tutorial: Hosting a dedicated server with auto commit periodically on Windows 7 and Windows 8 Abstract This is a tutorial on how to host a dedicated gaming server on Windows 7 and Windows

More information

Planning a Responsive Website

Planning a Responsive Website Planning a Responsive Website Planning a website is important for both web designers and website owners. Planning your website before you start building it can save you time, keep your site code more accurate

More information

Windows Intune Walkthrough: Windows Phone 8 Management

Windows Intune Walkthrough: Windows Phone 8 Management Windows Intune Walkthrough: Windows Phone 8 Management This document will review all the necessary steps to setup and manage Windows Phone 8 using the Windows Intune service. Note: If you want to test

More information

Basic tutorial for Dreamweaver CS5

Basic tutorial for Dreamweaver CS5 Basic tutorial for Dreamweaver CS5 Creating a New Website: When you first open up Dreamweaver, a welcome screen introduces the user to some basic options to start creating websites. If you re going to

More information

THIS HAD BETTER BE GOOD

THIS HAD BETTER BE GOOD THIS HAD BETTER BE GOOD A nd trust me, it is. What would you think if I told you that you can make an international call of high quality sound, and it would cost you nothing? I know, it sounds like one

More information

Virtual Private Network (VPN)

Virtual Private Network (VPN) Virtual Private Network (VPN) Creating a Virtual Private Network (VPN) environment and using it to connect machines to each other is another way of accessing Roll Call remotely. A VPN establishes a secure

More information

04 Links & Images. 1 The Anchor Tag. 1.1 Hyperlinks

04 Links & Images. 1 The Anchor Tag. 1.1 Hyperlinks One of the greatest strengths of Hypertext Markup Language is hypertext the ability to link documents together. The World Wide Web itself consists of millions of html documents all linked together via

More information

Sage Accountants Business Cloud EasyEditor Quick Start Guide

Sage Accountants Business Cloud EasyEditor Quick Start Guide Sage Accountants Business Cloud EasyEditor Quick Start Guide VERSION 1.0 September 2013 Contents Introduction 3 Overview of the interface 4 Working with elements 6 Adding and moving elements 7 Resizing

More information

Quarterly Mobile Apps, Business Intelligence, & Database. BILT Meeting June 17, 2014. Meeting Minutes

Quarterly Mobile Apps, Business Intelligence, & Database. BILT Meeting June 17, 2014. Meeting Minutes Quarterly Mobile Apps, Business Intelligence, & Database BILT Meeting June 17, 2014 Meeting Minutes :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

More information

Hello. What s inside? Ready to build a website?

Hello. What s inside? Ready to build a website? Beginner s guide Hello Ready to build a website? Our easy-to-use software allows you to create and customise the style and layout of your site without having to understand any coding or HTML. In this guide

More information