VOL ALPHA FIVE WEB APPLICATIONS: THE TUTORIAL

Size: px
Start display at page:

Download "VOL ALPHA FIVE WEB APPLICATIONS: THE TUTORIAL"

Transcription

1 VOL II ALPHA FIVE WEB APPLICATIONS: THE TUTORIAL

2 Copyright 2011 Alpha Software, Inc. All rights reserved. Written by: Martin Heller, PhD. Editing and Screenshots by: Dave McCormick and James Andrews Book Design by: Mervyn Jose First Printing: January 2011 Printed in USA. Alpha Software 70 Blanchard Rd., Burlington, MA USA

3 Chapter 4 A5W Pages 3 Contents Chapter Four: A5W Pages... 5 WHAT WE LL LEARN... 5 Before We Begin... 6 HTML... 6 CSS... 6 JavaScript... 7 What Is A5W?... 8 Creating Blank A5w Pages... 9 Creating A5W Pages From A Layout Template Editing A5w Pages Importing Html Layouts Adding Components To A5W Pages Adding components in WYSIWYG view Adding components in source view Adding components with third-party page editors A5w Genies Accordion Auto-suggest Background fill Cascading selects Edit-combo Message Box Tab Tree Finding Items In The HTML Editor Inserting HTML Elements Using Tables Using Html Forms Using CSS Style Sheets Summary Chapter Five: Tabbed User Interface and Page Layout Builders Tabbed User Interface Builder Building a simple tabbed navigation interface Customizing the Tabbed UI container page Advanced Using containers to organize your buttons

4 Using other design elements Exploring Tabbed UI button/hyperlink properties Nesting Tabbed UIs Page Layout Builder Page Layouts versus Tabbed UIs Building a simple Page Layout Page Layouts versus A5W pages Combining layouts Using layouts in tabbed UIs Summary Chapter Six: Linked Grids Linking And Filtering Grids Row Expanders Linked Content Areas Summary Chapter Seven: Basic Reports How Reporting Works Defining A Data Source Options For Designing A Report Introducing The Report Editor Using The Quick Report Genie Quick Tabular Report Quick Repeating Form Report Quick Groups with Totals Report Quick Summary Report Editing A Generated Report Designing A Report From Scratch Parameterizing a Data Source Running A Report From A Web Page Report Version Control Summary

5 4 Chapter Four: A5W Pages CHAPTER 4 In the Volume 1 of this book we learned quite a bit about Alpha Five Version 10 s fabulous Ajax Grid component. In this chapter, we ll cover A5W pages. WHAT WE LL LEARN We ll start by explaining what A5W pages are, and how they compare to other Web server technologies. Then we ll learn how to create and edit A5W pages, import and bind HTML layouts, add components to A5W pages, use the many A5W genies, and use HTML elements and CSS style sheets within A5W pages.

6 Before We Begin If you already know all about HTML, CSS, and JavaScript you can skip to the next section, What is A5W?. If not, perhaps this is a good time to bring you up to speed. HTML HyperText Markup Language (HTML) is the publishing language of the World Wide Web. HTML tags can tell a Web browser to render the text contained within the scope of the tag, display images, define hyperlinks, and define tables and data-entry forms. You can spot HTML tags because they are enclosed in angle brackets, for example: <p>this text is normal. <b>this text is bold.</b> This text is normal.</p> This markup will display in a browser as: This text is normal. This text is bold. This text is normal. The slash in some tags is used to denote the end of a matching tag's scope, as in <b>bold</b>. HTML pages start with a <head> section that is not displayed, and then continue with a <body> section that is displayed. NOTE If this is new to you, it might be a good idea to read an introduction to HTML. Alpha Five shields you from having to write HTML for the most part, but it's important for you to be able to at least read HTML. CSS HTML tags can have associated styles. These can be placed inside each tag, placed in a separate style section within the page head, or placed in an external

7 Chapter 4 A5W Pages 7 file called a style sheet. These Cascading Style Sheets (CSS) are a very powerful way to control how a page is rendered independent of the HTML content. So, for example, you can define CSS that says that all <p> (paragraph) tags should be rendered as blue, 12 point text in the Verdana font, and that all <h1> (1 st - level heading) tags should be rendered as grey, 16 point text in the Times New Roman font: p { color: #0000ff; font- family: Verdana; font- size: 12pt; } h1 { color: #808080; font- family: Times New Roman; font- size: 16pt; } Alpha Five shields you from having to write CSS, just as it shields you from having to write HTML. It helps if you can at least understand CSS when you see it. JavaScript Within almost every Web browser is an engine that can run scripts written in the JavaScript language. JavaScript can do quite a lot of work, including manipulating the HTML and CSS on your web pages. This is called Dynamic HTML. JavaScript can also call back to your server to get additional information or do additional work, such as updating a database. This is called Ajax. Alpha Five shields you from having to write much JavaScript, just as it shields you from having to write much HTML and CSS. It also helps if you can at least read JavaScript so that you can understand what the JavaScript code generated by Alpha is doing.

8 What Is A5W? A5W pages are server-side Web scripts, written in a combination of standard HTML, CSS, and JavaScript and augmented by Alpha's Xbasic language and Alpha Five web components; these in turn interact with your databases. In response to a request for a page from a browser, the Alpha Web Application Server interprets the Xbasic and components on the page, binds them to their data, and emits standard Web pages that can be displayed by any modern Web browser. The following figure illustrates how all of this fits together: FIGURE 4-1: A5W: Server side Web Scripts A5W pages serve roughly the same function as ASP, ASP.NET, ColdFusion, JSP, Perl,PHP,Python, and Ruby on Rails pages. The main difference between A5W pages and the other technologies is the use of the Xbasic language and Alpha Five Web components, including the powerful Ajax Grid we discussed in the previous volume of this book. As you work with A5W pages, you ll discover many amenities that make it easy to produce functional pages quickly without necessarily knowing very much about HTML, CSS, JavaScript or Xbasic.

9 Chapter 4 A5W Pages 9 Creating Blank A5w Pages You can create an A5W page easily from within Alpha Five. Open a Web project, and click on New in the Web Projects Control Panel. Then select A5W Page and click on OK: FIGURE 4-2: A5W: Creating blank A5W Page On the next page, you ll have the option of choosing Blank Page, Import External HTML Form, or Template: Create Page from Layout

10 FIGURE 4-3: A5W: Selecting Blank Page For now, choose Blank Page. You ll see a page like this: FIGURE 4-4: Page Link for Blank Page Creation

11 Chapter 4 A5W Pages 11 Notice the three tabs at the bottom of the window: WYSISYG, Source, and Interactive. Click on the Source tab, and you ll see the skeleton of a default blank page: FIGURE 4-5: Default Blank Page Save this page as Start.A5W. Start the process either by clicking on the Save button on the toolbar, clicking on the File Save menu item, or pressing Ctrl-S. Then type Start into the File name field, and press the Save button. Creating A5W Pages From A Layout Template If you instead choose Create Page from Layout Template for your new A5W page, you will see the Select HTML Page Layout Template dialog:

12 FIGURE 4-6: Creating A5W from Layout Template Look at the various templates, and pick the one you want. You will also have a choice of three measurement units: ems, percentage, and pixels. An em is the width of the letter 'm' in the current font. A pixel is one addressable spot on a screen or printer. Most designers currently prefer to use percentage units, because of the way the recent generation of browsers does zooming. We have included layouts in ems and pixel units for designers who prefer them for specific purposes. Once you have picked a layout and pressed OK, you will see the Save Page dialog. Enter your desired page name and press OK. If you left Open page in HTML editor?checked, you will see the page ready to edit, either in WYSIWYG view or Source view, depending on your selected default. Here's what the 3-column menu-body-menu layout looks like in WYSIWYG view:

13 Chapter 4 A5W Pages 13 FIGURE 4-7: 3-Column Menubody-menu Layout What's all that funny foreign text, starting with "Loremipsum dolor sit amet?" It's what designers call "Greek," although in fact it is an excerpt from a classical Latin text. It's there to help you see how the layout behaves as you resize the page. Replace it with your own text, images, and Alpha Five components. NOTE Note that it sometimes takes three mouse clicks to select text in these layouts in WYSIWYG mode. The first click chooses the outer <div> with simple drag points for dragging or resizing; the second click selects the inner <div> with a hashed border and drag points; the third click sets the cursor in the text for editing.

14 Editing A5w Pages You can edit your A5W pages either in WYSIWYG view or Source view. You can freely switch between the two views. WYSIWYG view is more convenient and easier to understand, and is best when you re adding components and simple HTML. Source view allows more control, and is best when you re writing Xbasic scripts. The default tab used when the HTML editor is opened is controlled by a setting reached via the View Settings Preferences HTML Editormenu item. Some users prefer to always edit in Source mode because then they have complete control over how their HTML is laid out. Other users rarely leave WYSIWYG view. In WYSIWYG view, your toolbars will look like this: FIGURE 4-8: WYSIWYG View Toolbar In Source view, they will look like this: FIGURE 4-9: Source View Toolbar Note that many toolbar options are now greyed out, since they don t apply in Source view. On other hand, your Code Library, which contains HTML Character Entities, HTML Colors, and HTML Tags, is active in Source view and greyed out in WYSIWYG view. Try editing Start.A5W in WYSIWYG view for now. Add a line of text, and set it to Heading 1 style. Add a second line of text, and leave it in Normal style.

15 Chapter 4 A5W Pages 15 Add a third line of text, and set it to Heading 2 style. Save the page, and it will look something like this: FIGURE 4-10: Editing Start.A5W You may have been surprised to see Arial text change to Times New Roman when you saved the page. That was because the default font for the page was applied when you saved. Select all the text on the page, and change it to the Verdana font. It should now look like this:

16 FIGURE 4-11: Changing Fonts If you switch to the Source view, you ll see font face overrides within each style tag: FIGURE 4-12: Switching to Source View Return to WYSIWYG view and save the page. Feel free to experiment with the text controls in the formatting toolbar. You ll probably recognize the toolbar icons from using Word or other Windows rich text editors; if you re in doubt

17 Chapter 4 A5W Pages 17 about the function of any icon allow your mouse to hover over the icon to see its function in words. Importing Html Layouts Note: this section is advanced material. It requires some knowledge of HTML forms If you re an experienced Web page designer (or know one), you probably have existing page designs that you want to reuse in Alpha Five, and would rather not start over from scratch. Static HTML pages that are intended to be bound to data at a later time are often called web templates or wireframes; what we have in the V10 import genie is a very easy way to convert a template design to a working Ajax database application. Of course, the form fields will have to map to the database fields for this to make sense. You ll also need buttons or links that serve as the record navigation controls. You can get the HTML for the input form from a file, or from a string. In the case of a string you ll get a text window; this is convenient when you re copying one form from a complex HTML page. The import wizard expects your form or div container to have a name; all of the input fields within the container will also need to have names.the form field names don t have to match the database field names, but if they do match the V10 genie can automatically generate the map between them. If they don t match, you can map them by hand. V10 can currently create five kinds of Ajax pages from imported HTML forms: Enter, Generic Edit, Single Record Edit, Generic View, and Single Record View. An Enter form can map to a DBF table, SQL table, or Property Variables.

18 FIGURE 4-13: Import HTML Genie The other kinds of form can map to a DBF table or a SQL table. Note the Create a new table button on the right side of this form. Say you have a great looking wireframe form and you want to bind it to a table, but you don't yet have a table definition. Press this button, and you can create a new DBF or SQL table to match the requirements of your form. So, in effect not only are you creating a data bound form, you are also defining a table.

19 Chapter 4 A5W Pages 19 FIGURE 4-14: Creating a New Table in HTML Genie When you re mapping a field, you can specify a default value, whether the field is required, and a regular expression that the field must match: FIGURE 4-15: Specifying the field

20 When you re building an Enter form, you will need buttons or A tags for Save and Reset: FIGURE 4-16: Building an Enter Form For a Generic Editform, you will need buttons or A tags for Save, Delete, Reset, First, Previous, Next, Last, and New: FIGURE 4-17: Generic Edit form Buttons

21 Chapter 4 A5W Pages 21 For a Single Record Editform, you will need buttons or A tags for Save, Delete, and Reset; for a Generic View form, First, Previous, Next, and Last; and for a Single Record View, no buttons are required. Let s go through the exercise of importing and binding a simple Single Record Editform to the Suppliers table in the Northwind database. Here s the essential HTML for the form (with the spacing markup removed for clarity): <form id="shippers" action="" method="post"> ID<input disabled name="shipperid" style="width: 59px" ><br> Shipper <input name="companyname" style="width: 258px" ><br> Phone <input name="phone" style="width: 258px" ><br> <input type="image" id="first" name="first" src="images/backward_01.png"> <input type="image" id="previous" name="previous" src="images/backward.png"> <input type="image" id="next" name="next" src="images/forward.png"> <input type="image" id="last" name="last" src="images/forward_01.png"><br> </form> The form looks like this: FIGURE 4-18: Single Record Editform The images I used for the navigation controls come from freeiconsweb.com. A zip file containing my starter HTML file and the four images can be downloaded from Note that this site is case-sensitive, so don't forget the capital S in Shippers. To import and bind this HTML, first unpack the zip file to your hard disk and open a Web project in Alpha Five V10. Create a new A5W page:

22 FIGURE 4-19: Importing and Binding HTML Pick the Import External HTML Form wizard, press OK, and navigate to the saved HTML file Shippers.html:

23 Chapter 4 A5W Pages 23 FIGURE 4-20: Selecting the HTML file Click Next, choose Generic View, and select the Shippers form: FIGURE 4-21: Selecting the Shippers Form Click Next, choose SQL, and pick the nw connection if it s defined in your project. If it s not defined, navigate to the Northwind.mdb file in your C:\My

24 Documents\Alpha Five V10\MDBFiles directory and use it to create the nw connection. If this directory does not exist, copy the MDBFiles directory from your Alpha Five V10 program installation. (This process is described in Volume 1, Chapter 1 of this book.) Now select the Shippers table: FIGURE 4-22: Selecting Shippers Table Click Next, click Auto Bind Columns, and click on one of the columns to see the additional options:

25 Chapter 4 A5W Pages 25 FIGURE 4-23: Auto Bind Columns Click Next, and bind the four buttons to the appropriate actions: FIGURE 4-24: Binding Buttons to Appropriate Actions

26 Click Next four times, check Open saved files in HTML editor? and then click Done. You should see two files in the HTML editor, Shippers.A5W and Shippers.ajax.A5W: FIGURE 4-25: Two files in the HTML Editor Before we can publish these files, we need to do two things: copy the images directory that holds our four navigation icons to C:\A5Webroot\, and start the Application Server if it is not already running. With those complete, right-click the Shippers file in the A5W pages pane of the Web Projects Control Panel, click Publish (Local Webroot) and Open, and you should see a working table browser for the Northwind shippers table:

27 Chapter 4 A5W Pages 27 FIGURE 4-26: Working Table Browser We can also preview the files. For this we need to copy the images directory that holds our four navigation icons to C:\A5Webroot\LivePreview\, then select the HTML editor page that is displaying Shippers.A5W, and click on the Execute icon on the toolbar. An interesting question arises when you ve done something like this: what have you gained over creating a Grid to do the same thing? The short answer is that you have gained complete design freedom. The counter-argument would be that the Grid Form layout or Detail View (which are essentially the same beast) give you plenty of design freedom for most purposes, and that would probably be sufficient, at least from a programmer s point of view -- but don t try to convince your friendly local page designer of that!

28 Adding Components To A5W Pages Alpha Five makes it very easy to add components that you ve created to A5W pages in the WYWIWYG view of its HTML editor. It s a little harder to add the components in source view or in a third-party editor, but still straightforward. We ll demonstrate all three methods. Adding components in WYSIWYG view Start by opening your A5W page in WYWIWYG view. If you re starting with a fresh page, save it and give it a name before attempting to insert components. We re going to use the Start.A5W page we created earlier. FIGURE 4-27: Start.A5W Page Change the top heading to Component Test and delete the other lines of text. Put your cursor at the bottom of the page, and click on the Insert Component toolbar icon. Press the Select button:

29 Chapter 4 A5W Pages 29 FIGURE 4-28: Changing the Heading and you ll see a selection of your existing components: FIGURE 4-29: Existing Components

30 We re going to choose the Categories Detail grid that we created in Volume 1 of this book, but you can pick any component you have. Press OK. Press OK again, and you ll see three buttons on the page representing the three parts of a grid component: FIGURE 4-30: Buttons representing parts of a Grid Component If the Execute Page icon is not enabled on the toolbar, start the Application Server. Click the this page: Execute Page icon and you should see a Live Preview of

31 Chapter 4 A5W Pages 31 FIGURE 4-31: Live Preview of the Execute Page Icon Use the controls to step through the table rows. If you save the page, you can also publish and view it by right-clicking on the page name in the Web Projects Control Panel and clicking Publish (Local Webroot) and Open. By the way, when you are editing an A5W page that has components on the page, you can quickly edit a component by double-clicking on it. Adding components in source view If you look at the Start page in the Source tab of the HTML Editor, you ll see that quite a bit of Xbasic code has been generated for you by the Insert Component genie.

32 FIGURE 4-32: Start Page in the Source tab of HTML Editor Notice that the Xbasic code is inside <%a5 %> tags. The contents of these tags are interpreted on the server, which generates HTML, CSS, and JavaScript for the Web browser. The web browser never sees what is inside the <%a5 %> tags. We don t want to write that Xbasic code by hand, but we don t have to: V10 will generate it for us, even though we're working in Source view. First let s look at what the Insert Component genie did in WYSIWYG view. There are three sections of code that were added to create the grid component. The top section is in the <head> section of the page; the middle section is a qualifier to the body tag: <body class="glassbluepagebody">. The third section is the table at the end of the <body> section:

33 Chapter 4 A5W Pages 33 Let s start over with a new page and see what it s like to add the grid component in Source view. Create a new blank A5W page, save it as SourceView.A5W, and switch to the Source tab: Now click on the Insert Component toolbar icon, select the Categories Detail grid, and press OK. This time you ll see a dialog to help you insert the code:

34 FIGURE 4-33: Dialog box to Insert Code Show the code for the head section: FIGURE 4-34: Code for the Head Section Copy the code using the button, and paste it into the HTML editor after the <head> tag, using the Ctrl-V key or the Edit Paste menu item:

35 Chapter 4 A5W Pages 35 FIGURE 4-35: Copying the Head Section Code/ Ctrl-V FIGURE 4-36: HTML Editor Source Code

36 Show the code for the body section: FIGURE 4-37: Body Section Code Copy the code using the button, and paste it into the HTML editor after the </p> tag: FIGURE 4-38: Body Section copied into the HTML Editor

Dreamweaver MX The Basics

Dreamweaver MX The Basics Chapter 1 Dreamweaver MX 2004 - The Basics COPYRIGHTED MATERIAL Welcome to Dreamweaver MX 2004! Dreamweaver is a powerful Web page creation program created by Macromedia. It s included in the Macromedia

More information

Overview of the Adobe Dreamweaver CS5 workspace

Overview of the Adobe Dreamweaver CS5 workspace Adobe Dreamweaver CS5 Activity 2.1 guide Overview of the Adobe Dreamweaver CS5 workspace You can access Adobe Dreamweaver CS5 tools, commands, and features by using menus or by selecting options from one

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 6 So far we have used CSS to arrange the elements on our web page. We have also used CSS for some limited formatting. In this section we will take full advantage of using CSS to format our web site. Just

More information

Getting Started with Eric Meyer's CSS Sculptor 1.0

Getting Started with Eric Meyer's CSS Sculptor 1.0 Getting Started with Eric Meyer's CSS Sculptor 1.0 Eric Meyer s CSS Sculptor is a flexible, powerful tool for generating highly customized Web standards based CSS layouts. With CSS Sculptor, you can quickly

More information

How to set up a local root folder and site structure

How to set up a local root folder and site structure Activity 2.1 guide How to set up a local root folder and site structure The first thing to do when creating a new website with Adobe Dreamweaver CS3 is to define a site and identify a root folder where

More information

Creating a Template in WordPerfect

Creating a Template in WordPerfect 1. File a. New From Project Creating a Template in WordPerfect b. Go to Options 2. Create A Category 1 3. Name it Family History (or a title of your choice) 4. Find Family History in the Drop down list

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide MS-Expression Web Quickstart Guide Page 1 of 24 Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program,

More information

How to lay out a web page with CSS

How to lay out a web page with CSS Activity 2.6 guide How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS4 to create a simple page layout. However, a more powerful technique is to use Cascading Style

More information

The figure below shows the Dreamweaver Interface.

The figure below shows the Dreamweaver Interface. Dreamweaver Interface Dreamweaver Interface In this section you will learn about the interface of Dreamweaver. You will also learn about the various panels and properties of Dreamweaver. The Macromedia

More information

Introduction to WEB PROGRAMMING

Introduction to WEB PROGRAMMING Introduction to WEB PROGRAMMING Web Languages: Overview HTML CSS JavaScript content structure look & feel transitions/animation s (CSS3) interaction animation server communication Full-Stack Web Frameworks

More information

Web-Friendly Sites. Planning & Design 1

Web-Friendly Sites. Planning & Design 1 Planning & Design 1 This tutorial presents useful tips and tricks to help you achieve a more Web-friendly design and make your sites more efficient. The following topics are discussed: How Z-order and

More information

1. Setup a root folder for the website 2. Create a wireframe 3. Add content 4. Create hyperlinks between pages and to external websites

1. Setup a root folder for the website 2. Create a wireframe 3. Add content 4. Create hyperlinks between pages and to external websites A. Pre-Production of Webpage 1. Determine the specific software needed WYSIWYG- design software that manipulates components of the web page without the user writing or editing code Uses graphical layout

More information

Using Dreamweaver. 6 Styles in Websites. 1. Linked or Imported Stylesheets. 2. Embedded Styles. 3. Inline Styles

Using Dreamweaver. 6 Styles in Websites. 1. Linked or Imported Stylesheets. 2. Embedded Styles. 3. Inline Styles Using Dreamweaver 6 So far these exercises have deliberately avoided using HTML s formatting options such as the FONT tag. This is because the basic formatting available in HTML has been made largely redundant

More information

Using Dreamweaver CS6

Using Dreamweaver CS6 Using Dreamweaver CS6 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

Objective % Select and utilize tools to design and develop websites.

Objective % Select and utilize tools to design and develop websites. Objective 207.02 8% Select and utilize tools to design and develop websites. Hypertext Markup Language (HTML) Basic framework for all web design. Written using tags that a web browser uses to interpret

More information

Schoolwires Editor Best Practices. Schoolwires Centricity2

Schoolwires Editor Best Practices. Schoolwires Centricity2 Schoolwires Editor Best Practices Schoolwires Centricity2 Schoolwires Centricity2 Editor Best Practices Table of Contents Introduction... 1 Practices for All Browsers... 2 Bullets Left Justify Bullets...

More information

FrontPage 2000 Tutorial -- Advanced

FrontPage 2000 Tutorial -- Advanced FrontPage 2000 Tutorial -- Advanced Shared Borders Shared Borders are parts of the web page that share content with the other pages in the web. They are located at the top, bottom, left side, or right

More information

Netscape Composer Tutorial

Netscape Composer Tutorial Netscape Composer Tutorial This tutorial will show you how to use Netscape Composer to create web pages. Netscape Composer integrates powerful What-You-See-Is-What-You-Get (WYSIWYG) document creation capabilities

More information

Before you begin, make sure you have the images for these exercises saved in the location where you intend to create the Nuklear Family Website.

Before you begin, make sure you have the images for these exercises saved in the location where you intend to create the Nuklear Family Website. 9 Now it s time to challenge the serious web developers among you. In this section we will create a website that will bring together skills learned in all of the previous exercises. In many sections, rather

More information

Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static

Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static Table of Contents Report Designer Report Types Table Report Multi-Column Report Label Report Parameterized Report Cross-Tab Report Drill-Down Report Chart with Static Series Chart with Dynamic Series Master-Detail

More information

Dear Candidate, Thank you, Adobe Education

Dear Candidate, Thank you, Adobe Education Dear Candidate, In preparation for the Web Communication certification exam, we ve put together a set of practice materials and example exam items for you to review. What you ll find in this packet are:

More information

Dreamweaver Basics Workshop

Dreamweaver Basics Workshop Dreamweaver Basics Workshop Robert Rector idesign Lab - Fall 2013 What is Dreamweaver? o Dreamweaver is a web development tool o Dreamweaver is an HTML and CSS editor o Dreamweaver features a WYSIWIG (What

More information

Using Dreamweaver CC. 5 More Page Editing. Bulleted and Numbered Lists

Using Dreamweaver CC. 5 More Page Editing. Bulleted and Numbered Lists Using Dreamweaver CC 5 By now, you should have a functional template, with one simple page based on that template. For the remaining pages, we ll create each page based on the template and then save each

More information

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links

Using Dreamweaver CC. Logo. 4 Creating a Template. Page Heading. Page content in this area. About Us Gallery Ordering Contact Us Links Using Dreamweaver CC 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan shown below.

More information

Using Dreamweaver CC. 6 Styles in Websites. Exercise 1 Linked Styles vs Embedded Styles

Using Dreamweaver CC. 6 Styles in Websites. Exercise 1 Linked Styles vs Embedded Styles Using Dreamweaver CC 6 So far we have used CSS to arrange the elements on our web page. We have also used CSS for some limited formatting. In this section we will take full advantage of using CSS to format

More information

Creating Page Layouts 25 min

Creating Page Layouts 25 min 1 of 10 09/11/2011 19:08 Home > Design Tips > Creating Page Layouts Creating Page Layouts 25 min Effective document design depends on a clear visual structure that conveys and complements the main message.

More information

Guidelines for doing the short exercises

Guidelines for doing the short exercises 1 Short exercises for Murach s HTML5 and CSS Guidelines for doing the short exercises Do the exercise steps in sequence. That way, you will work from the most important tasks to the least important. Feel

More information

Figure 1 Properties panel, HTML mode

Figure 1 Properties panel, HTML mode How to add text Adding text to a document To add text to a Dreamweaver document, you can type text directly in the Document window, or you can cut and paste text. You modify text by using the Properties

More information

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets Dreamweaver Basics Planning your website Organize site structure Plan site design & navigation Gather your assets Creating your website Dreamweaver workspace Define a site Create a web page Linking Manually

More information

Using Dreamweaver. 4 Creating a Template. Logo. Page Heading. Home About Us Gallery Ordering Contact Us Links. Page content in this area

Using Dreamweaver. 4 Creating a Template. Logo. Page Heading. Home About Us Gallery Ordering Contact Us Links. Page content in this area 4 Creating a Template Now that the main page of our website is complete, we need to create the rest of the pages. Each of them will have a layout that follows the plan that is shown below. Logo Page Heading

More information

Hypertext Markup Language, or HTML, is a markup

Hypertext Markup Language, or HTML, is a markup Introduction to HTML Hypertext Markup Language, or HTML, is a markup language that enables you to structure and display content such as text, images, and links in Web pages. HTML is a very fast and efficient

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

Dreamweaver Tutorial #2

Dreamweaver Tutorial #2 Dreamweaver Tutorial #2 My web page II In this tutorial you will learn: how to use more advanced features for your web pages in Dreamweaver what Cascading Style Sheets (CSS) are and how to use these in

More information

Lesson 5 Introduction to Cascading Style Sheets

Lesson 5 Introduction to Cascading Style Sheets Introduction to Cascading Style Sheets HTML and JavaScript BASICS, 4 th Edition 1 Objectives Create a Cascading Style Sheet. Control hyperlink behavior with CSS. Create style classes. Share style classes

More information

Exploring SharePoint Designer

Exploring SharePoint Designer Exploring SharePoint Designer Microsoft Windows SharePoint Services 3.0 and Microsoft Office SharePoint Server 2007 are large and sophisticated web applications. It should come as no surprise, therefore,

More information

Announcements. 1. Class webpage: Have you been reading the announcements? Lecture slides and coding examples will be posted

Announcements. 1. Class webpage: Have you been reading the announcements? Lecture slides and coding examples will be posted Announcements 1. Class webpage: Have you been reading the announcements? Lecture slides and coding examples will be posted 2. Campus is closed on Monday. 3. Install Komodo Edit on your computer this weekend.

More information

Insert/Edit Image. Overview

Insert/Edit Image. Overview Overview The tool is available on the default toolbar for the WYSIWYG Editor. The Images Gadget may also be used to drop an image on a page and will automatically spawn the Insert/Edit Image modal. Classic

More information

Dreamweaver CS6. Level 1. Topics Workspaces Basic HTML Basic CSS

Dreamweaver CS6. Level 1. Topics Workspaces Basic HTML Basic CSS Level 1 Topics Workspaces Basic HTML Basic CSS Tour the Workspace The arrangement of panels and menus you use to interact with a document is called the workspace. Much of Illustrator is customizable: you

More information

Microsoft Excel 2010 Handout

Microsoft Excel 2010 Handout Microsoft Excel 2010 Handout Excel is an electronic spreadsheet program you can use to enter and organize data, and perform a wide variety of number crunching tasks. Excel helps you organize and track

More information

Exploring the Interface

Exploring the Interface 2 Exploring the Interface Touring the Interface 13 Setting a Default Workspace 26 Saving Workspace Layouts 26 Defining a Default Browser 27 Using Shortcut Keys 28 One of the most daunting aspects of working

More information

Using Dreamweaver To Edit the Campus Template Version MX

Using Dreamweaver To Edit the Campus Template Version MX Using Dreamweaver To Edit the Campus Template Version MX Tennessee Tech University Clement Hall 215 Dreamweaver is an HTML (Hypertext Markup Language) editor that allows you to create HTML pages. This

More information

Announcements. 1. Class webpage: Have you been reading the announcements? Lecture slides and coding examples will be posted

Announcements. 1. Class webpage: Have you been reading the announcements? Lecture slides and coding examples will be posted Announcements 1. Class webpage: Have you been reading the announcements? Lecture slides and coding examples will be posted 2. Install Komodo Edit on your computer right away. 3. Bring laptops to next class

More information

Creating a Brochure. The right side of your Publisher screen will now change to Brochures.

Creating a Brochure. The right side of your Publisher screen will now change to Brochures. Creating a Brochure Open Microsoft Publisher. You will see the Microsoft Publisher Task Pane on the left side of your screen. Click the Brochures selection in the Publication Types area. The right side

More information

Html basics Course Outline

Html basics Course Outline Html basics Course Outline Description Learn the essential skills you will need to create your web pages with HTML. Topics include: adding text any hyperlinks, images and backgrounds, lists, tables, and

More information

PRESENCE. RadEditor Guide. SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA

PRESENCE. RadEditor Guide. SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA PRESENCE RadEditor Guide SchoolMessenger 100 Enterprise Way, Suite A-300 Scotts Valley, CA 95066 800-920-3897 www.schoolmessenger.com Contents Contents... 2 Introduction... 3 What is RadEditor?... 3 RadEditor

More information

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX

KillTest *KIJGT 3WCNKV[ $GVVGT 5GTXKEG Q&A NZZV ]]] QORRZKYZ IUS =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX KillTest Q&A Exam : 9A0-803 Title : Certified Dreamweaver 8 Developer Exam Version : DEMO 1 / 7 1. What area, in the Insert bar, is intended for customizing and organizing frequently used objects? A. Layout

More information

Using Microsoft Excel

Using Microsoft Excel Using Microsoft Excel Formatting a spreadsheet means changing the way it looks to make it neater and more attractive. Formatting changes can include modifying number styles, text size and colours. Many

More information

Reading 2.2 Cascading Style Sheets

Reading 2.2 Cascading Style Sheets Reading 2.2 Cascading Style Sheets By Multiple authors, see citation after each section What is Cascading Style Sheets (CSS)? Cascading Style Sheets (CSS) is a style sheet language used for describing

More information

Dreamweaver Basics Outline

Dreamweaver Basics Outline Dreamweaver Basics Outline The Interface Toolbar Status Bar Property Inspector Insert Toolbar Right Palette Modify Page Properties File Structure Define Site Building Our Webpage Working with Tables Working

More information

Taking Fireworks Template and Applying it to Dreamweaver

Taking Fireworks Template and Applying it to Dreamweaver Taking Fireworks Template and Applying it to Dreamweaver Part 1: Define a New Site in Dreamweaver The first step to creating a site in Dreamweaver CS4 is to Define a New Site. The object is to recreate

More information

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface

CHAPTER 1 COPYRIGHTED MATERIAL. Finding Your Way in the Inventor Interface CHAPTER 1 Finding Your Way in the Inventor Interface COPYRIGHTED MATERIAL Understanding Inventor s interface behavior Opening existing files Creating new files Modifying the look and feel of Inventor Managing

More information

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

More information

COMSC-031 Web We S ite Site Development Development- Part 2 Part-Time Instructor: Joenil Mistal November 7, 2013

COMSC-031 Web We S ite Site Development Development- Part 2 Part-Time Instructor: Joenil Mistal November 7, 2013 COMSC-031 Web Site Development- Part 2 Part-Time Instructor: Joenil Mistal November 7, 2013 Chapter 12 12 Creating and Applying Cascading Style Sheets This chapter shows you how to use Cascading Style

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

RICH ENTERPRISES. Small Business Series. Getting Started with HTML

RICH ENTERPRISES. Small Business Series. Getting Started with HTML RICH ENTERPRISES Small Business Series Getting Started with HTML SMALL BUSINESS SERIES Getting Started With HTML Rich Enterprises 1512 Dietrich Road Twin Lakes, WI 53181 Phone/Fax 262-877-8630 Introduction

More information

Fish Eye Menu DMXzone.com Fish Eye Menu Manual

Fish Eye Menu DMXzone.com Fish Eye Menu Manual Fish Eye Menu Manual Page 1 of 33 Index Fish Eye Menu Manual... 1 Index... 2 About Fish Eye Menu... 3 Features in Detail... 4 Integrated in Dreamweaver... 6 Before you begin... 7 Installing the extension...

More information

Step 1 Download and Install KompoZer Step by step instructions to build your first web page using KompoZer web editor.

Step 1 Download and Install KompoZer Step by step instructions to build your first web page using KompoZer web editor. All Creative Designs HTML Web Tutorial for PC Using KompoZer New version 2012 now available at: http://www.allcreativedesigns.com.au/pages/tutorials.html Step 1 Download and Install KompoZer Step by step

More information

Simple sets of data can be expressed in a simple table, much like a

Simple sets of data can be expressed in a simple table, much like a Chapter 1: Building Master and Detail Pages In This Chapter Developing master and detail pages at the same time Building your master and detail pages separately Putting together master and detail pages

More information

Quick Start Guide. This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions:

Quick Start Guide. This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions: Quick Start Guide This guide will help you get started with Kentico CMS for ASP.NET. It answers these questions:. How can I install Kentico CMS?. How can I edit content? 3. How can I insert an image or

More information

Creating your first website Part 4: Formatting your page with CSS

Creating your first website Part 4: Formatting your page with CSS Adobe - Developer Center : Creating your first website Part 4: Formatting your page... Page 1 of 23 Dreamweaver Article Creating your first website Part 4: Formatting your page with CSS Jon Varese Adobe

More information

The Domino Designer QuickStart Tutorial

The Domino Designer QuickStart Tutorial The Domino Designer QuickStart Tutorial 1. Welcome The Domino Designer QuickStart Tutorial You've installed Domino Designer, you've taken the Designer Guided Tour, and maybe you've even read some of the

More information

Creating Accessible Word Documents

Creating Accessible Word Documents Creating Accessible Word Documents 1 of 11 Creating Accessible Word Documents Contents 1. General principles... 1 2. Styles/ Headings... 2 3. Table of Contents... 3 Updating a Table of Contents... 5 4.

More information

Table of contents. Ajax AutoComplete Manual DMXzone.com

Table of contents. Ajax AutoComplete Manual DMXzone.com Table of contents Table of contents... 1 About Ajax AutoComplete... 2 Features in Detail... 3 The Basics: Creating a Basic AJAX AutoComplete Field... 12 Advanced: Generating an AutoComplete Field using

More information

USER GUIDE. MADCAP FLARE 2017 r3. Import

USER GUIDE. MADCAP FLARE 2017 r3. Import USER GUIDE MADCAP FLARE 2017 r3 Import Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is

More information

The purpose of this tutorial is to introduce you to the Construct 2 program. First, you will be told where the software is located on the computer

The purpose of this tutorial is to introduce you to the Construct 2 program. First, you will be told where the software is located on the computer Learning Targets: Students will be introduced to industry recognized game development software Students will learn how to navigate within the software Students will learn the basics on how to use Construct

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

Using Dreamweaver. 5 More Page Editing. Bulleted and Numbered Lists

Using Dreamweaver. 5 More Page Editing. Bulleted and Numbered Lists Using Dreamweaver 5 By now, you should have a functional template, with one simple page based on that template. For the remaining pages, we ll create each page based on the template and then save each

More information

Styles, Style Sheets, the Box Model and Liquid Layout

Styles, Style Sheets, the Box Model and Liquid Layout Styles, Style Sheets, the Box Model and Liquid Layout This session will guide you through examples of how styles and Cascading Style Sheets (CSS) may be used in your Web pages to simplify maintenance of

More information

Kendo UI. Builder by Progress : Using Kendo UI Designer

Kendo UI. Builder by Progress : Using Kendo UI Designer Kendo UI Builder by Progress : Using Kendo UI Designer Copyright 2017 Telerik AD. All rights reserved. December 2017 Last updated with new content: Version 2.1 Updated: 2017/12/22 3 Copyright 4 Contents

More information

Session 4. Style Sheets (CSS) Reading & References. A reference containing tables of CSS properties

Session 4. Style Sheets (CSS) Reading & References.   A reference containing tables of CSS properties Session 4 Style Sheets (CSS) 1 Reading Reading & References en.wikipedia.org/wiki/css Style Sheet Tutorials www.htmldog.com/guides/cssbeginner/ A reference containing tables of CSS properties web.simmons.edu/~grabiner/comm244/weekthree/css-basic-properties.html

More information

Introduction to IBM Rational HATS For IBM System i (5250)

Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS For IBM System i (5250) Introduction to IBM Rational HATS 1 Lab instructions This lab teaches you how to use IBM Rational HATS to create a Web application capable of transforming

More information

Corel Ventura 8 Introduction

Corel Ventura 8 Introduction Corel Ventura 8 Introduction Training Manual A! ANZAI 1998 Anzai! Inc. Corel Ventura 8 Introduction Table of Contents Section 1, Introduction...1 What Is Corel Ventura?...2 Course Objectives...3 How to

More information

The main differences with other open source reporting solutions such as JasperReports or mondrian are:

The main differences with other open source reporting solutions such as JasperReports or mondrian are: WYSIWYG Reporting Including Introduction: Content at a glance. Create A New Report: Steps to start the creation of a new report. Manage Data Blocks: Add, edit or remove data blocks in a report. General

More information

Bonus Lesson: Working with Code

Bonus Lesson: Working with Code 15 Bonus Lesson: Working with Code In this lesson, you ll learn how to work with code and do the following: Select code elements in new ways Collapse and expand code entries Write code using code hinting

More information

DOING MORE WITH POWERPOINT: MICROSOFT OFFICE 2013

DOING MORE WITH POWERPOINT: MICROSOFT OFFICE 2013 DOING MORE WITH POWERPOINT: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT POWERPOINT PAGE 03 Slide Views MORE TASKS IN MICROSOFT POWERPOINT PAGE 05 Formatting

More information

Numbers Basics Website:

Numbers Basics Website: Website: http://etc.usf.edu/te/ Numbers is Apple's new spreadsheet application. It is installed as part of the iwork suite, which also includes the word processing program Pages and the presentation program

More information

Alpha Five Web Applications for Access Developers

Alpha Five Web Applications for Access Developers 1 Alpha Five Web Applications for Access Developers by Martin Heller, VP of Education and Technology, Alpha Software While Access 2010 builds on the strengths of previous versions of Access for desktop

More information

WINDEV 23 - WEBDEV 23 - WINDEV Mobile 23 Documentation version

WINDEV 23 - WEBDEV 23 - WINDEV Mobile 23 Documentation version WINDEV 23 - WEBDEV 23 - WINDEV Mobile 23 Documentation version 23-1 - 04-18 Summary Part 1 - Report editor 1. Introduction... 13 2. How to create a report... 23 3. Data sources of a report... 43 4. Describing

More information

Creating Forms. Starting the Page. another way of applying a template to a page.

Creating Forms. Starting the Page. another way of applying a template to a page. Creating Forms Chapter 9 Forms allow information to be obtained from users of a web site. The ability for someone to purchase items over the internet or receive information from internet users has become

More information

Excel 2013 for Beginners

Excel 2013 for Beginners Excel 2013 for Beginners Class Objective: This class will familiarize you with the basics of using Microsoft Excel. Class Outline: Introduction to Microsoft Excel 2013... 1 Microsoft Excel...2-3 Getting

More information

USER GUIDE MADCAP FLARE Topics

USER GUIDE MADCAP FLARE Topics USER GUIDE MADCAP FLARE 2018 Topics Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this document is furnished

More information

Hands On: Dreamweaver CS3 NEW SPRY Widgets

Hands On: Dreamweaver CS3 NEW SPRY Widgets What is a Spry Widget? Spry widgets provide access to dynamic and interactive elements you might like to have on your Web page. These Spry elements include: Menu Bars Tabbed Panels Accordion Effects Collapsible

More information

Reference Services Division Presents. Microsoft Word 2

Reference Services Division Presents. Microsoft Word 2 Reference Services Division Presents Microsoft Word 2 This handout covers the latest Microsoft Word 2010. This handout includes instructions for the tasks we will be covering in class. Basic Tasks Review

More information

Web Publishing Basics II

Web Publishing Basics II Web Publishing Basics II Jeff Pankin Information Services and Technology Table of Contents Course Objectives... 2 Create a Site Definition... 3 The Dreamweaver CS4 Interface... 4 Panels are groups of icons

More information

Exercise 1: Introduction to MapInfo

Exercise 1: Introduction to MapInfo Geog 578 Exercise 1: Introduction to MapInfo Page: 1/22 Geog 578: GIS Applications Exercise 1: Introduction to MapInfo Assigned on January 25 th, 2006 Due on February 1 st, 2006 Total Points: 10 0. Convention

More information

Forms/Distribution Acrobat X Professional. Using the Forms Wizard

Forms/Distribution Acrobat X Professional. Using the Forms Wizard Forms/Distribution Acrobat X Professional Acrobat is becoming a standard tool for people and businesses to use in order to replicate forms and have them available electronically. If a form is converted

More information

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR

Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR Creating Reports in Access 2007 Table of Contents GUIDE TO DESIGNING REPORTS... 3 DECIDE HOW TO LAY OUT YOUR REPORT... 3 MAKE A SKETCH OF YOUR REPORT... 3 DECIDE WHICH DATA TO PUT IN EACH REPORT SECTION...

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

CS Multimedia and Communications. Lab 06: Webpage Tables and Image Links (Website Design part 3 of 3)

CS Multimedia and Communications. Lab 06: Webpage Tables and Image Links (Website Design part 3 of 3) CS 1033 Multimedia and Communications Lab 06: Webpage Tables and Image Links (Website Design part 3 of 3) REMEMBER TO BRING YOUR MEMORY STICK TO EVERY LAB! Table Properties Reference Guide The Property

More information

Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007

Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007 Grade: 7 Lesson name: Creating a School News Letter Microsoft Word 2007 1. Open Microsoft Word 2007. Word will start up as a blank document. 2. Change the margins by clicking the Page Layout tab and clicking

More information

Microsoft Excel 2010 Basic

Microsoft Excel 2010 Basic Microsoft Excel 2010 Basic Introduction to MS Excel 2010 Microsoft Excel 2010 is a spreadsheet software in the new Microsoft 2010 Office Suite. Excel allows you to store, manipulate and analyze data in

More information

A Guided Tour of Doc-To-Help

A Guided Tour of Doc-To-Help A Guided Tour of Doc-To-Help ii Table of Contents Table of Contents...ii A Guided Tour of Doc-To-Help... 1 Converting Projects to Doc-To-Help 2005... 1 Using Microsoft Word... 10 Using HTML Source Documents...

More information

FrontPage Help Center. Topic: FrontPage Basics

FrontPage Help Center. Topic: FrontPage Basics FrontPage Help Center Topic: FrontPage Basics by Karey Cummins http://www.rtbwizards.com http://www.myartsdesire.com 2004 Getting Started... FrontPage is a "What You See Is What You Get" editor or WYSIWYG

More information

Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear.

Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear. Users Guide Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear. Select an insert size When creating a new project, the first thing you

More information

RAGE WebDesign Quick Start 1 of 18. Welcome To RAGE WebDesign

RAGE WebDesign Quick Start 1 of 18. Welcome To RAGE WebDesign RAGE WebDesign Quick Start 1 of 18 Welcome To RAGE WebDesign RAGE WebDesign Quick Start 2 of 18 About This Quick Start Guide 3 An Introduction To Html 3 Helpful Tips For Working With Rage Webdesign 7 See

More information

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro for the Mac University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2012 KSU Department

More information

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step.

This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. This Tutorial is for Word 2007 but 2003 instructions are included in [brackets] after of each step. Table of Contents Just so you know: Things You Can t Do with Word... 1 Get Organized... 1 Create the

More information

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

Getting Started with Word

Getting Started with Word Getting Started with Word gcflearnfree.org/print/word2016/word-2016-28 Introduction Microsoft Word 2016 is a word processing application that allows you to create a variety of documents, including letters,

More information

Use signatures in Outlook 2010

Use  signatures in Outlook 2010 Use e-mail signatures in Outlook 2010 Quick Reference Card Download and use a signature template Note This procedure will take you away from this page. If necessary, print this page before you follow these

More information