The WebBrowser control is the heart of Internet Explorer. It can. Using the WebBrowser Control. Chapter 19

Size: px
Start display at page:

Download "The WebBrowser control is the heart of Internet Explorer. It can. Using the WebBrowser Control. Chapter 19"

Transcription

1 Chapter 19 Using the WebBrowser Control In This Chapter Discover the versatile WebBrowser control, and create your own dialog boxes using plain HTML templates Enumerate and access DHTML elements Link script procedures to DHTML buttons using GetRef, and bypass Internet Explorer security dialogs Control your WebBrowser form window through HTML commands Validate HTML form input, and color-code missing form fields Let your COM object respond to events fired by the WebBrowser control, and disable the context menu this way Use radio buttons and determine which radio button was selected Customize your HTML dialog container, change caption text, and disable sizing The WebBrowser control is the heart of Internet Explorer. It can display HTML documents and is a very versatile design element you can incorporate into your own dialog boxes. In this chapter, learn how to use the WebBrowser control to create fully configurable HTML-based custom dialog boxes and transfer the results back into your scripts. The WebBrowser Control: Mastering Real-World Tasks Microsoft has stuffed all kinds of controls into Windows, and while most s of them are busy working for the operating system, your scripts can access those components, too. One of the most versatile controls is the WebBrowser control. It works inside of any Internet Explorer window, and because Microsoft keeps expanding the role HTML plays, you ll see this control in many Windows 2000 system dialog boxes, too. The WebBrowser control is actually a miniature Web browser. It contains everything necessary to load and display HTML content.

2 540 Part V: Accessing Hidden Components Actually, Internet Explorer is just a wrapping around the WebBrowser control. The Internet Explorer application provides the toolbars and other gadgets helpful to navigate the Web, but the true power comes from the WebBrowser control embedded in Internet Explorer. The WebBrowser control is by no means limited to displaying Web pages. In Chapter 5, I showed you how to use Internet Explorer as a versatile Scripting Host output window. Now it s time to take a close look at the real heart of Internet Explorer. The WebBrowser control is the perfect foundation for truly customizable dialog boxes. It makes much more sense to use the WebBrowser control directly instead of accessing it through Internet Explorer and paying the price for all of the overhead involved. Creating custom dialog boxes There s a definite need for custom dialog boxes. The built-in set of dialog boxes accessible to the Scripting Host is very limited, and it s impractical to create COM objects for any custom dialog box you may need. A much more versatile approach are HTML dialog boxes. You can create them with your favorite HTML editor in a matter of minutes, and it s easy to design these dialog boxes just as you can design a Web page. All you need is a way to display your HTML dialog boxes. Displaying is easy just feed the HTML template to the WebBrowser control. In addition, you ll need some extra tricks to be able to retrieve the results typed into your dialog box. I ve designed a COM object that uses the WebBrowser control and includes many fascinating tricks for interacting with the user. Install the COM object \install\webdialog\setup.exe. Full source code is provided at \components\webdialog\webdialog.vbp. Designing your form: Creating an HTML template The first thing needed is an HTML template. This template defines the elements of your dialog box. Here s a simple example. Type it into your favorite text editor and save it as TEMPLATE.HTM in the same folder you are going to use for the sample scripts: <html> <head> <style> p {font: 12pt Arial} </style> </head> <body bgcolor = #CCCCCC scroll= no > <p>your name: <input type= text name= namefield ></p> <input type= button name= help value= Help > </body> </html>

3 Chapter 19: Using the WebBrowser Control 541 Next, open the template file. Internet Explorer displays the form, and you can check whether everything looks the way you planned. Displaying the template dialog box Now you are ready to display the form template with your new custom dialog COM object (see Figure 19-1). Make sure the following sample script is stored in the same folder you stored your HTML template! 19-1.VBS set tool = CreateObject( Web.dialog ) current path myname = WScript.ScriptFullName cp = left(myname, InstrRev(myname, \ )) template template = cp & template.htm size dialog tool.width = 400 tool.height = 300 tool.title = My Form tool.seticon shell32.dll, 3 tool.resizable = true display dialog and return object reference set webcontrol = tool.showdialog(template) MsgBox TypeName(webcontrol) Figure 19-1: Use an HTML template to design your own dialog box. The script creates a dialog box and displays your HTML template. Once you click OK, the COM object returns a reference to the element collection. You ll need this reference in a minute. First, take a look at your options in Table 19-1.

4 542 Part V: Accessing Hidden Components Table 19-1 Method/Property Properties and Methods to Control the WebBrowser Dialog Box Property CancelButton As String Function DisplayDialog As Object Property Height As Long Function LoadDialog(ByVal template As String) As Object Property OKButton As String Property Resizable As Boolean Sub SetIcon(ByVal iconlib As String, ByVal index As Long) Sub ShowButtons(ByVal mode As Boolean) Function ShowDialog(ByVal template As String) As Object Property Title As String Property Width As Long Description Caption name of Cancel button. Shows dialog box and returns element collection. Height of dialog box in pixels. Loads dialog template and returns element collection. Caption name of OK button. True: Dialog box is resizable. Sets the dialog box icon. Supply name of icon file and icon index. True: Dialog box displays OK and Cancel buttons. Combines LoadDialog and ShowDialog: Loads a template file, displays the dialog box, and returns element collection. Title of dialog box. Width of dialog box in pixels. Getting access to template elements Displaying your HTML template alone won t be enough. You need a way to access the elements in your HTML template in order to query their values. After all, you want to know what the user has entered into your form (see Figure 19-2). Figure 19-2: Examine the elements accessible in your HTML template.

5 Chapter 19: Using the WebBrowser Control 543 The COM object returns a reference to the element collection. This collection contains references to all the elements you placed onto your HTML page. Let s check out how to read this collection: 19-2.VBS set tool = CreateObject( Web.dialog ) current path myname = WScript.ScriptFullName cp = left(myname, InstrRev(myname, \ )) template template = cp & template.htm size dialog tool.resizable = true tool.width = 400 tool.height = 300 tool.title = My Form tool.seticon shell32.dll, 3 display dialog and return object reference set webcontrol = tool.showdialog(template) read all named elements for each element in webcontrol on error resume next elname = element.name if not err.number=0 then element has no name tag! elname = no name property, type: & TypeName(element) on error goto 0 list = list & elname & vbcr next MsgBox list This time, once you click OK, the script returns a list of all the elements inside your HTML template. There are a lot of unnamed control elements, but you also see all the named elements. Named elements are elements you assigned a NAME= tag. Now it s easy to retrieve the results someone has entered into your form: 19-3.VBS set tool = CreateObject( Web.dialog ) current path myname = WScript.ScriptFullName cp = left(myname, InstrRev(myname, \ ))

6 544 Part V: Accessing Hidden Components template template = cp & template.htm size dialog tool.resizable = true tool.width = 400 tool.height = 300 tool.title = My Form tool.seticon shell32.dll, 3 display dialog and return object reference set webcontrol = tool.showdialog(template) read input if TypeName(webcontrol)= Nothing then MsgBox You cancelled! else MsgBox You entered: & webcontrol.namefield.value Expand your HTML template to ask for more than one piece of information. It s completely up to you how complex you want your dialog window to get! Figure 19-3: It works your script retrieves the input. Designing dialog box templates The most obvious advantage of HTML dialog boxes is their versatility. You can change the design of your dialog box templates without having to change the COM object in any way, and you don t need any complicated subclassing techniques to dynamically add or remove form elements. There s only one thing you need to ensure, and that s to supply a NAME= tag for each input element you want to query. Without the NAME= property, your script can t access the element s value. Also take a look at the BODY tag. This tag defines the background color and turns off the vertical scroll bar.

7 Chapter 19: Using the WebBrowser Control 545 The STYLE section uses a style sheet to change the font the P element uses. Style sheets are a great way to globally assign formatting information to your form elements. Revealing implementation details Before I show you more tricks you can do with your new HTML dialog box tool, here are some implementation details. If you don t care how the COM object does its work, skip this part! The Resizable property is one of the most remarkable features: This property controls whether or not your form window is resizable. This may not seem to be a big deal, but actually it is. You can t change properties like this one during run-time. The window frame which determines whether the form is resizable or not needs to be defined at design-time. There are ways to overcome this limitation, but they are very complex. The COM object uses a much simpler approach. It actually uses two forms one is resizable, and the other one isn t. The Resizable property sets a global reference to one of the two forms, and all other properties and methods use this reference. This is why you should use the Resizable property before you use any of the other properties and methods. Generally, your dialog box is centered onscreen. Again, there are many complex ways to center a form, but they are completely unnecessary. The form contains a property called StartUpPosition, and this property just needs to be set to CenterScreen. That s all there is to it. The VBScript has some interesting parts, too! It uses ScriptFullName to retrieve its own file path and extracts the pure path information. This way, the script knows the folder name it is stored in. This folder is appended to the template filename, and as a result, you don t need to fiddle around with template file paths. Just make sure the template file is stored in the same folder you stored your script in. Advanced WebBrowser Tricks Let s take a quick look at the architecture of your HTML dialog boxes. Three components are involved. Your script is part one. It launches the COM object, which in turn displays the WebBrowser control. This is part two. Part three is your HTML template, shown inside the WebBrowser control. To get the most out of this architecture, you need ways to communicate between these components. Communication requires handles to the participating objects, and in the preceding examples, you saw how this works. CreateObject returns a handle to the COM object so your script can call its internal methods. ShowDialog in turn again returns a handle. To be exact, it returns an element collection, and this element collection contains the

8 546 Part V: Accessing Hidden Components handles of all the elements inside your HTML template. Both your script and your COM object can access any single HTML element in your template, and the example used this handle to retrieve the value entered into the text field. Calling script procedures through your HTML template Maybe you noticed the Help button on the sample form. It was of no use clicking the button didn t do a thing. Not yet, anyway. Test your new knowledge about inter-component communications and hook up a script procedure to this button (see Figure 19-4). Your script needs to access the button. That s easy, because your script knows the element s reference so it can access all properties. How can your script ask the button to execute a script procedure? Your script needs to get a reference to the script procedure and pass it to the onclick event of the button. Sounds complicated, but it isn t! 19-4.VBS set tool = CreateObject( Web.dialog ) current path myname = WScript.ScriptFullName cp = left(myname, InstrRev(myname, \ )) template template = cp & template.htm size dialog tool.width = 400 tool.height = 300 tool.title = My Form load template first! This way, you get a handle to the HTML elements without displaying the form yet set webcontrol = tool.loaddialog(template) configure the dialog hook up a script procedure to the help button webcontrol.help.onclick = GetRef( showhelp ) now display the dialog. Note that the help button now invokes the showhelp procedure! set webcontrol = tool.displaydialog read input if TypeName(webcontrol)= Nothing then MsgBox You cancelled!

9 Chapter 19: Using the WebBrowser Control 547 else MsgBox You entered: & webcontrol.namefield.value sub ShowHelp MsgBox Please enter your full name! Now it works! Every time you click the Help button, a help message appears. This help message comes from your script. The help button remotely invokes the ShowHelp procedure defined in your script. You now can call any script procedure while the dialog box is still visible. Imagine the possibilities not only can you supply Help buttons for any input field, you can also update form elements through a database, or you can check the form contents before you allow the user to quit the form. Figure 19-4: The Help button invokes the help procedure of your own script. The magic behind this is GetRef. This method returns a reference to the script procedure, which in turn can be attached to the button onclick event. Communication between the HTML template and the COM object So far, your script has communicated with both the COM object and the HTML template elements. Is there a way your HTML template can communicate with the COM object, too? The COM object hosts your HTML template, and it can be nice to include buttons in your template that control the COM object. For example, you can include a button that closes the dialog box. But how? Your HTML document needs a reference to your COM object. This is why the COM object tries to insert such a reference into your HTML document. hookquit tries to assign the reference to a variable called parentobj. However, this fails because there is no such variable inside your HTML document.

10 548 Part V: Accessing Hidden Components But, you can change your HTML template. Open it inside a text editor and add a script block. Then save it as TEMPLATE2.HTM: (see Figure 19-5) <html> <head> <style> p {font: 12pt Arial} </style> </head> <body bgcolor = #CCCCCC scroll= no > <script language= VBScript > set parentobj = Nothing sub Quit if not TypeName(parentobj)= Nothing then parentobj.quit false sub Leave if not TypeName(parentobj)= Nothing then parentobj.quit true </script> <p>your name: <input type= text name= namefield ></p> <input type= button name= help value= Help > <input type= button name= quit value= Quit! onclick= Quit() > <input type= button name= leave value= Done! onclick= Leave() > </body> </html> Now try your script again: Exchange TEMPLATE.HTM inside the script with TEMPLATE2.HTM, or use script VBS. The form has changed, and there are two more buttons Quit and Done. Quit does exactly what your Form window Cancel button does, and Done mimics the OK button. Figure 19-5: You new template features a Quit button that closes the form.

11 Chapter 19: Using the WebBrowser Control 549 Take a look at the new script block. It defines an object reference called parentobj and sets it to Nothing. Then, it defines two procedures Quit and Leave. These call the Quit method defined in the parentobj object. But what is the parentobj object anyway? To make things work, your COM object inserts a reference to its own Form object into the HTML document parentobj variable. This happens inside hookquit. Parentobj now points to the form object of your COM object, and inside the form, there s now a Quit procedure. Your HTML document now can remotely access your form object s internal procedures (see Figure 19-6). You can expand this concept easily. Your HTML document now can access any internal method your COM object provides. Because now that your HTML document can handle the OK and Cancel operations remotely, your dialog box no longer needs to provide its own buttons. Remove them VBS set tool = CreateObject( Web.dialog ) current path myname = WScript.ScriptFullName cp = left(myname, InstrRev(myname, \ )) template template = cp & template2.htm size dialog tool.width = 400 tool.height = 300 tool.title = My Form remove buttons tool.showbuttons false load template first! This way, you get a handle to the HTML elements without displaying the form yet set webcontrol = tool.loaddialog(template) configure the dialog hook up a script procedure to the help button webcontrol.help.onclick = GetRef( showhelp ) now display the dialog. Note that the help button now invokes the showhelp procedure! set webcontrol = tool.displaydialog read input if TypeName(webcontrol)= Nothing then

12 550 Part V: Accessing Hidden Components MsgBox You cancelled! else MsgBox You entered: & webcontrol.namefield.value sub ShowHelp MsgBox Please enter your full name! Figure 19-6: Get rid of the standard buttons and use your own template to control the form. Now, you are absolutely free in your design. Your input elements can access the COM object methods and hook them to their own events. Your own OK and Cancel buttons can use DHTML script to check the input before allowing the form to close. Automatically closing the form on RETURN For example, the next HTML template accesses the document s onkeypress event. It checks for the character codes 13 (RETURN) and 27 (ESC) and calls the COM object methods to either send the input or cancel the dialog box. As a result, the keys [Esc] and [Enter] now are connected to the Cancel and OK buttons. Once you finish your input with [Enter], the form is automatically closed, and you don t need to grab the mouse and click OK. Save this template as TEMPLATE3.HTM and change your scripts accordingly. You can also use script VBS on the CD. <html> <head> <style> p {font: 12pt Arial} </style> </head> <body bgcolor = #CCCCCC scroll= no >

13 Chapter 19: Using the WebBrowser Control 551 <script language= VBScript > set parentobj = Nothing done = false sub Quit if not TypeName(parentobj)= Nothing then parentobj.quit false sub Leave if not TypeName(parentobj)= Nothing then parentobj.quit true sub document_onkeypress() this procedure is executed anytime a key is pressed retrieve key code of key pressed keycode = window.event.keycode is it RETURN? Leave! if keycode = 13 then Leave is it ESC? Quit! elseif keycode = 27 then Quit </script> <p>your name->: <input type= text name= namefield ></p> <input type= button name= help value= Help > <input type= button name= quit value= Quit! onclick= Quit() > <input type= button name= leave value= Done! onclick= Leave() > </body> </html> Hooking COM procedures to individual elements The previous template responds to [Esc] and [Return] no matter which element is currently selected. Maybe you don t like this idea. You can also hook the keyboard checker to specific input elements. Save this template as TEMPLATE4.HTM and change your scripts accordingly, or use script VBS. <html> <head> <style> p {font: 12pt Arial} </style>

14 552 Part V: Accessing Hidden Components <script language = VBScript > sub focusit document.all.namefield.focus() </script> </head> <body bgcolor = #CCCCCC scroll= no onload= call window.settimeout( focusit(), 100) > <p>your name->: <input type= text name= namefield onkeypress= checkkeyboard() ></p> <input type= button name= help value= Help > <input type= button name= quit value= Quit! onclick= Quit() > <input type= button name= leave value= Done! onclick= Leave() > <script language= VBScript > set parentobj = Nothing sub Quit if not TypeName(parentobj)= Nothing then parentobj.quit false sub Leave if not TypeName(parentobj)= Nothing then parentobj.quit true sub checkkeyboard() keycode = window.event.keycode if keycode = 13 then Leave elseif keycode = 27 then Quit </script> </body> </html> This time, the [Esc] and [Enter] keys are recognized only inside your text box element. The script inside the template has placed the keyboard check into a regular procedure called checkkeyboard. This procedure is then hooked to the keypress event of the text box. The script demonstrates another nice advantage your text box element receives the focus automatically, and you no longer have to click the element before entering text. Now, your dialog box is ready, and you can type in text immediately. And [Enter] sends the input to your script. Your HTML dialog box is just as convenient to use as the built-in InputBox method.

15 Chapter 19: Using the WebBrowser Control 553 Assigning the input focus to an element in regular Web pages is easy. Just call the focus method of the element that you want to receive the focus. However, this won t work in the preceding example. The focus() method can switch focus to the element only once it is visible onscreen. This is why the script calls the focus method in the BODY tag onload property. This still isn t enough. Even though the document is loaded when onload is executed, it takes some extra time for the elements to be fully programmable. This is why the script doesn t call the focusit procedure directly. Instead, it uses the timer built into the window object and calls it with a 100-millisecond delay. Note also that the focusit procedure needs to be defined in the HEAD section. It needs to be defined before the WebBrowser control parses the BODY tag. If you want another element to receive the focus, just change the element name in the focusit procedure. Checking for valid form entries Using your own OK and Cancel buttons instead of the buttons the COM object provides has many advantages. For example, you can double-check the user input before you allow the form window to close. Save this template as TEMPLATE5.HTM and change your scripts accordingly, or use script VBS (see Figure 19-7). <html> <head> <style> p {font: 12pt Arial} </style> <script language = VBScript > sub focusit document.all.namefield.focus() </script> </head> <body bgcolor = #CCCCCC scroll= no onload= call window.settimeout( focusit(), 1000) > <p>your name->: <input type= text name= namefield onkeypress= checkkeyboard() ></p> <input type= button name= help value= Help > <input type= button name= quit value= Quit! onclick= Quit() > <input type= button name= leave value= Done! onclick= Leave() > <input type= button name= focus value= Focus! onclick= focusit() > <script language= VBScript > set parentobj = Nothing sub Quit

16 554 Part V: Accessing Hidden Components if not TypeName(parentobj)= Nothing then parentobj.quit false sub Leave if document.all.namefield.value= then document.all.namefield.style.background = #FF0000 MsgBox You did not fill out the form! document.all.namefield.style.background = #FFFFFF document.all.namefield.focus elseif not TypeName(parentobj)= Nothing then parentobj.quit true sub checkkeyboard() keycode = window.event.keycode if keycode = 13 then Leave elseif keycode = 27 then Quit </script> </body> </html> The Leave procedure now checks whether the user has entered text at all. If the text field is empty, the script flashes the text box background color and displays a message. As long as the text box is empty, the Cancel button is the only way to close the form window. Figure 19-7: Automatically focus and check the input. Use this as a foundation for your own checks. You can check more than one field. You can check the content and make sure the user has entered the type of data you expect. You can even disable the OK button for as long as the user input contains errors.

17 Chapter 19: Using the WebBrowser Control 555 Responding to WebBrowser control events So far, your COM object displays any HTML file you provide. But how can you access the events raised by the WebBrowser control? Use the WithEvents statement. The COM object defines a variable called htmldoc of type HTMLDocument as WithEvents. The deeper meaning behind this is that the variable htmldoc now can host a reference to an HTML document and can also handle any events the HTML page may raise. Then, the LoadDialog procedure assigns the handle to the WebBrowser control document to this variable. From now on, your COM object can respond to events raised by the HTML document. And it does. The function htmldoc_oncontextmenu is called anytime a user tries to open a context menu. Because you don t want an Internet Explorerstyle context menu to appear on your dialog box, the function always returns false, effectively disabling context menus. The oncontextmenu event is supported only on IE5. Reading Groups of Radio Buttons HTML forms can consist of more than just text boxes. Radio buttons work like the radio buttons on your old car stereo only one selection in a group can be chosen at any time. Radio buttons are perfect for offering mutually exclusive options. However, how do you create Radio button groups, and even more important, how can your script read the selected option? Creating a group of radio buttons Radio buttons are plain INPUT elements of type radio. Their name property groups them together (see Figure 19-8). Radio buttons work mutually exclusively only when you group them together. Grouping takes place by assigning the same name to all radio button elements in this group. Here s an example file. Save it as TEMPLATE6.HTM. <html> <head> <style> p {font: 12pt Arial}.mystyle {font: 10pt Arial; font-weight: bold} </style> </head> <body bgcolor = #CCCCCC scroll= no >

18 556 Part V: Accessing Hidden Components <fieldset><legend class= mystyle >Choose an Option!</legend> <p><input type= radio value= Option 1 checked name= R1 >Option 1<br> <input type= radio name= R1 value= Option 2 >Option 2<br> <input type= radio name= R1 value= Option 3 >Option 3<br></p> </fieldset> </body> </html> Figure 19-8: Use fixed-sized dialog boxes and display any kind of form element you like. To display this template, use the following script: 19-6.VBS set tool = CreateObject( Web.dialog ) current path myname = WScript.ScriptFullName cp = left(myname, InstrRev(myname, \ )) template template = cp & template6.htm size dialog tool.resizable =false tool.width = 400 tool.height = 200 tool.title = Option Dialog set webcontrol = tool.showdialog(template) read input MsgBox Done! The dialog box form displays nicely, but your script can t read the selected option. If you try to access the webcontrol.r1.value option, you get an error (see Figure 19-9).

19 Chapter 19: Using the WebBrowser Control 557 Whenever you group an input field by naming all elements the same, it s treated as an array. You can t access individual elements of a group directly. Instead, you need to determine the size of the array (the number of elements in the group) and pick the one you are interested in. Because there are three elements called r1, you need to treat r1 as an object array. Actually, in your template, there is no element called r1, but there are three elements called r1(0), r1(1), and r1(2). This is how you can read any group of input elements and determine the value of the checked one: read input if TypeName(webcontrol)= Nothing then MsgBox You cancelled! else for x=0 to (webcontrol.r1.length)-1 if webcontrol.r1(x).checked then optionval = webcontrol.r1(x).value next MsgBox You chose: & optionval Figure 19-9: Now you can read in the results from the options dialog box group. Append this code to your script, and you are all set. Here s the complete script: 19-7.VBS set tool = CreateObject( Web.dialog ) current path myname = WScript.ScriptFullName cp = left(myname, InstrRev(myname, \ )) template template = cp & template6.htm size dialog tool.resizable =false tool.width = 400

20 558 Part V: Accessing Hidden Components tool.height = 200 tool.title = Option Dialog set webcontrol = tool.showdialog(template) read input if TypeName(webcontrol)= Nothing then MsgBox You cancelled! else for x=0 to (webcontrol.r1.length)-1 if webcontrol.r1(x).checked then optionval = webcontrol.r1(x).value next MsgBox You chose: & optionval Because the Web is based mainly on JavaScript, the HTML object model returns the number of elements in the group using the length property instead of the VBScript Count property. Still, your VBScript can use this property even though it doesn t follow VBScript naming conventions. A loop checks all elements in the group and returns the value of the element marked as checked. You need to deal with element arrays only when you read form content from within a Web page using script statements. If you submit a form to some Web server, you don t need to care much. Submitting a form sends only the checked elements, so there won t be more than one r1 element, and you can access its value directly. Summary The WebBrowser control is a real gem. This chapter has shown you some of what it can do for you. The COM object I developed serves as a general-purpose dialog box container, and you have seen many examples on how to create your own dialog boxes using plain HTML templates. This is a great foundation for teamwork. You can let a graphic designer create the dialog box design while you provide the COM object to host it. Through advanced event handling, your COM container can be controlled entirely by your HTML template. You can even close the form window from inside your HTML script code.

How to use the Assets panel

How to use the Assets panel Adobe Dreamweaver Guide How to use the Assets panel You can use the Assets panel in Dreamweaver to manage assets in the current site (Figure 1). The Assets panel displays assets for the site associated

More information

Animation and style sheets

Animation and style sheets L E S S O N 6 Animation and style sheets Lesson objectives To learn about animation and style sheets, you will: Suggested teaching time 35-40 minutes a b Animate text, outlines, and web pages with Dynamic

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

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

WideQuick Remote WideQuick Designer

WideQuick Remote WideQuick Designer FLIR ThermoVision CM training This manual is starting off with a quick instruction on how to start the system and after that there are instructions on how to make your own software and modify the FLIR

More information

Want to add cool effects like rollovers and pop-up windows?

Want to add cool effects like rollovers and pop-up windows? Chapter 10 Adding Interactivity with Behaviors In This Chapter Adding behaviors to your Web page Creating image rollovers Using the Swap Image behavior Launching a new browser window Editing your behaviors

More information

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introducing Visual Basic 8 Installing Visual Studio 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects

More information

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Table of Contents Introduction!... 1 Part 1: Entering Data!... 2 1.a: Typing!... 2 1.b: Editing

More information

Interface. 2. Interface Adobe InDesign CS2 H O T

Interface. 2. Interface Adobe InDesign CS2 H O T 2. Interface Adobe InDesign CS2 H O T 2 Interface The Welcome Screen Interface Overview The Toolbox Toolbox Fly-Out Menus InDesign Palettes Collapsing and Grouping Palettes Moving and Resizing Docked or

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

How To Capture Screen Shots

How To Capture Screen Shots What Is FastStone Capture? FastStone Capture is a program that can be used to capture screen images that you want to place in a document, a brochure, an e-mail message, a slide show and for lots of other

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

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 Get Organized... 1 Create the Home Page... 1 Save the Home Page as a Word Document...

More information

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

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

COPYRIGHTED MATERIAL. Using Adobe Bridge. Lesson 1

COPYRIGHTED MATERIAL. Using Adobe Bridge. Lesson 1 Lesson Using Adobe Bridge What you ll learn in this lesson: Navigating Adobe Bridge Using folders in Bridge Making a Favorite Creating metadata Using automated tools Adobe Bridge is the command center

More information

Locate it inside of your Class/DreamWeaver folders and open it up.

Locate it inside of your Class/DreamWeaver folders and open it up. Simple Rollovers A simple rollover graphic is one that changes somehow when the mouse rolls over it. The language used to write rollovers is JavaScript. Luckily for us, when we use DreamWeaver we don t

More information

(Refer Slide Time: 01:40)

(Refer Slide Time: 01:40) Internet Technology Prof. Indranil Sengupta Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture No #25 Javascript Part I Today will be talking about a language

More information

Creating a new form with check boxes, drop-down list boxes, and text box fill-ins. Customizing each of the three form fields.

Creating a new form with check boxes, drop-down list boxes, and text box fill-ins. Customizing each of the three form fields. In This Chapter Creating a new form with check boxes, drop-down list boxes, and text box fill-ins. Customizing each of the three form fields. Adding help text to any field to assist users as they fill

More information

Burning CDs in Windows XP

Burning CDs in Windows XP B 770 / 1 Make CD Burning a Breeze with Windows XP's Built-in Tools If your PC is equipped with a rewritable CD drive you ve almost certainly got some specialised software for copying files to CDs. If

More information

Creating Buttons and Pop-up Menus

Creating Buttons and Pop-up Menus Using Fireworks CHAPTER 12 Creating Buttons and Pop-up Menus 12 In Macromedia Fireworks 8 you can create a variety of JavaScript buttons and CSS or JavaScript pop-up menus, even if you know nothing about

More information

IN THIS CHAPTER. Inserting an Explore Interaction 287. Exploring CourseBuilder 264. Copying Support Files 267. Using the General Tab 288

IN THIS CHAPTER. Inserting an Explore Interaction 287. Exploring CourseBuilder 264. Copying Support Files 267. Using the General Tab 288 IN THIS CHAPTER Exploring CourseBuilder 264 Copying Support Files 267 Adding the Template Fix 270 Examining Browser Compatibility 270 Inserting an Explore Interaction 287 Using the General Tab 288 Using

More information

Graphing Interface Overview

Graphing Interface Overview Graphing Interface Overview Note: This document is a reference for using JFree Charts. JFree Charts is m-power s legacy graphing solution, and has been deprecated. JFree Charts have been replace with Fusion

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

Getting Started with. PowerPoint 2010

Getting Started with. PowerPoint 2010 Getting Started with 13 PowerPoint 2010 You can use PowerPoint to create presentations for almost any occasion, such as a business meeting, government forum, school project or lecture, church function,

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

Using Dreamweaver CS6

Using Dreamweaver CS6 Using Dreamweaver CS6 7 Dynamic HTML Dynamic HTML (DHTML) is a term that refers to website that use a combination of HTML, scripting such as JavaScript, CSS and the Document Object Model (DOM). HTML and

More information

ITEC447 Web Projects CHAPTER 9 FORMS 1

ITEC447 Web Projects CHAPTER 9 FORMS 1 ITEC447 Web Projects CHAPTER 9 FORMS 1 Getting Interactive with Forms The last few years have seen the emergence of the interactive web or Web 2.0, as people like to call it. The interactive web is an

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

Getting started 7. Setting properties 23

Getting started 7. Setting properties 23 Contents 1 2 3 Getting started 7 Introduction 8 Installing Visual Basic 10 Exploring the IDE 12 Starting a new project 14 Adding a visual control 16 Adding functional code 18 Saving projects 20 Reopening

More information

Chapter 25. Build Creations with Your Photos

Chapter 25. Build Creations with Your Photos Chapter 25 Build Creations with Your Photos 2 How to Do Everything with Photoshop Elements How to Create a slide show to show off your images Post your images in web pages Build cards, calendars, and postcards

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

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved.

NiceForm User Guide. English Edition. Rev Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com, info@nicelabel.com English Edition Rev-0910 2009 Euro Plus d.o.o. & Niceware International LLC All rights reserved. www.nicelabel.com Head Office Euro Plus d.o.o. Ulica Lojzeta Hrovata

More information

Creating Pages with the CivicPlus System

Creating Pages with the CivicPlus System Creating Pages with the CivicPlus System Getting Started...2 Logging into the Administration Side...2 Icon Glossary...3 Mouse Over Menus...4 Description of Menu Options...4 Creating a Page...5 Menu Item

More information

Amacro is a sequence of commands or keystrokes that Word records

Amacro is a sequence of commands or keystrokes that Word records Chapter 1: Recording and Using Macros In This Chapter Recording a macro Running a macro Editing a macro Using auto macros Amacro is a sequence of commands or keystrokes that Word records and lets you play

More information

A Step-by-Step Guide to Survey Success

A Step-by-Step Guide to Survey Success A Step-by-Step Guide to Survey Success Table of Contents Why VerticalResponse?... 3 Quickstart Guide... 4 Step 1: Setup Your Account... 4 Step 2: Create Your Survey... 6 Step 3. Access Your Dashboard and

More information

Printing Envelopes in Microsoft Word

Printing Envelopes in Microsoft Word Printing Envelopes in Microsoft Word P 730 / 1 Stop Addressing Envelopes by Hand Let Word Print Them for You! One of the most common uses of Microsoft Word is for writing letters. With very little effort

More information

Classroom Blogging. Training wiki:

Classroom Blogging. Training wiki: Classroom Blogging Training wiki: http://technologyintegrationshthornt.pbworks.com/create-a-blog 1. Create a Google Account Navigate to http://www.google.com and sign up for a Google account. o Use your

More information

PBWORKS - Student User Guide

PBWORKS - Student User Guide PBWORKS - Student User Guide Fall 2009 PBworks - Student Users Guide This guide provides the basic information you need to get started with PBworks. If you don t find the help you need in this guide, please

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

Taskbar: Working with Several Windows at Once

Taskbar: Working with Several Windows at Once Taskbar: Working with Several Windows at Once Your Best Friend at the Bottom of the Screen How to Make the Most of Your Taskbar The taskbar is the wide bar that stretches across the bottom of your screen,

More information

Integrated Projects for Presentations

Integrated Projects for Presentations Integrated Projects for Presentations OUTLINING AND CREATING A PRESENTATION Outlining the Presentation Drafting a List of Topics Imagine that your supervisor has asked you to prepare and give a presentation.

More information

CROMWELLSTUDIOS. Content Management System Instruction Manual V1. Content Management System. V1

CROMWELLSTUDIOS. Content Management System Instruction Manual V1.   Content Management System. V1 Content Management System Instruction Manual V1 www.cromwellstudios.co.uk Cromwell Studios Web Services Content Management System Manual Part 1 Content Management is the system by which you can change

More information

Content Author's Reference and Cookbook

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

More information

Controlled Assessment Task. Question 1 - Describe how this HTML code produces the form displayed in the browser.

Controlled Assessment Task. Question 1 - Describe how this HTML code produces the form displayed in the browser. Controlled Assessment Task Question 1 - Describe how this HTML code produces the form displayed in the browser. The form s code is displayed in the tags; this creates the object which is the visible

More information

Dreamweaver: Accessible Web Sites

Dreamweaver: Accessible Web Sites Dreamweaver: Accessible Web Sites Introduction Adobe Macromedia Dreamweaver 8 provides the most complete set of tools available for building accessible web sites. This workshop will cover many of them.

More information

To get started with Visual Basic 2005, I recommend that you jump right in

To get started with Visual Basic 2005, I recommend that you jump right in In This Chapter Chapter 1 Wading into Visual Basic Seeing where VB fits in with.net Writing your first Visual Basic 2005 program Exploiting the newfound power of VB To get started with Visual Basic 2005,

More information

Lab 5 Classy Chat. XMPP Client Implementation --- Part 2 Due Oct. 19 at 11PM

Lab 5 Classy Chat. XMPP Client Implementation --- Part 2 Due Oct. 19 at 11PM Lab 5 Classy Chat XMPP Client Implementation --- Part 2 Due Oct. 19 at 11PM In this week s lab we will finish work on the chat client programs from the last lab. The primary goals are: to use multiple

More information

XP: Backup Your Important Files for Safety

XP: Backup Your Important Files for Safety XP: Backup Your Important Files for Safety X 380 / 1 Protect Your Personal Files Against Accidental Loss with XP s Backup Wizard Your computer contains a great many important files, but when it comes to

More information

How To Capture Screen Shots

How To Capture Screen Shots What Is FastStone Capture? FastStone Capture is a program that can be used to capture screen images that you want to place in a document, a brochure, an e-mail message, a slide show and for lots of other

More information

JS Lab 1: (Due Thurs, April 27)

JS Lab 1: (Due Thurs, April 27) JS Lab 1: (Due Thurs, April 27) For this lab, you may work with a partner, or you may work alone. If you choose a partner, this will be your partner for the final project. If you choose to do it with a

More information

CST272 Getting Started Page 1

CST272 Getting Started Page 1 CST272 Getting Started Page 1 1 2 3 4 5 6 8 Introduction to ASP.NET, Visual Studio and C# CST272 ASP.NET Static and Dynamic Web Applications Static Web pages Created with HTML controls renders exactly

More information

The Very Basics of the R Interpreter

The Very Basics of the R Interpreter Chapter 2 The Very Basics of the R Interpreter OK, the computer is fired up. We have R installed. It is time to get started. 1. Start R by double-clicking on the R desktop icon. 2. Alternatively, open

More information

SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman

SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman SharePoint 2010 Site Owner s Manual by Yvonne M. Harryman Chapter 9 Copyright 2012 Manning Publications Brief contents PART 1 GETTING STARTED WITH SHAREPOINT 1 1 Leveraging the power of SharePoint 3 2

More information

Jump to: Using AAUP Photos AAUP Logos Embedding the AAUP Twitter Feed Embedding the AAUP News Feed CREATING A WEBSITE

Jump to: Using AAUP Photos AAUP Logos Embedding the AAUP Twitter Feed Embedding the AAUP News Feed CREATING A WEBSITE Jump to: Using AAUP Photos AAUP Logos Embedding the AAUP Twitter Feed Embedding the AAUP News Feed CREATING A WEBSITE You can make a simple, free chapter website using Google Sites. To start, go to https://sites.google.com/

More information

Using Adobe Contribute 4 A guide for new website authors

Using Adobe Contribute 4 A guide for new website authors Using Adobe Contribute 4 A guide for new website authors Adobe Contribute allows you to easily update websites without any knowledge of HTML. This handout will provide an introduction to Adobe Contribute

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

Table of contents. Universal Data Exporter ASP DMXzone.com

Table of contents. Universal Data Exporter ASP DMXzone.com Table of contents About Universal Data Exporter ASP... 2 Features in Detail... 3 Before you begin... 9 Installing the extension... 9 The Basics: Exporting an HTML table... 10 Introduction... 10 How to

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

Technical White Paper

Technical White Paper Technical White Paper Via Excel (VXL) Item Templates This technical white paper is designed for Spitfire Project Management System users. In this paper, you will learn how to create Via Excel Item Templates

More information

How to Make a Contact Us PAGE in Dreamweaver

How to Make a Contact Us PAGE in Dreamweaver We found a great website on the net called http://dreamweaverspot.com and we have basically followed their tutorial for creating Contact Forms. We also checked out a few other tutorials we found by Googling,

More information

MCS 2 USB Software for OSX

MCS 2 USB Software for OSX for OSX JLCooper makes no warranties, express or implied, regarding this software s fitness for a particular purpose, and in no event shall JLCooper Electronics be liable for incidental or consequential

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

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

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

Context-sensitive Help

Context-sensitive Help USER GUIDE MADCAP DOC-TO-HELP 5 Context-sensitive Help Copyright 2018 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software described in this

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

FRONTPAGE STEP BY STEP GUIDE

FRONTPAGE STEP BY STEP GUIDE IGCSE ICT SECTION 15 WEB AUTHORING FRONTPAGE STEP BY STEP GUIDE Mark Nicholls ICT lounge P a g e 1 Contents Introduction to this unit.... Page 4 How to open FrontPage..... Page 4 The FrontPage Menu Bar...Page

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

seminar learning system Seminar Author and Learning System are products of Information Transfer LLP.

seminar learning system Seminar Author and Learning System are products of Information Transfer LLP. seminar learning system Seminar Author and Learning System are products of Information Transfer LLP. Burleigh House 15 Newmarket Road Cambridge UK CB5 8EG E-mail: support@seminar.co.uk Phone: +44 (0)1223

More information

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next.

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next. Getting Started From the Start menu, located the Adobe folder which should contain the Adobe GoLive 6.0 folder. Inside this folder, click Adobe GoLive 6.0. GoLive will open to its initial project selection

More information

Keep Track of Your Passwords Easily

Keep Track of Your Passwords Easily Keep Track of Your Passwords Easily K 100 / 1 The Useful Free Program that Means You ll Never Forget a Password Again These days, everything you do seems to involve a username, a password or a reference

More information

HTML TIPS FOR DESIGNING.

HTML TIPS FOR DESIGNING. This is the first column. Look at me, I m the second column.

More information

TMG Clerk. User Guide

TMG  Clerk. User Guide User Guide Getting Started Introduction TMG Email Clerk The TMG Email Clerk is a kind of program called a COM Add-In for Outlook. This means that it effectively becomes integrated with Outlook rather than

More information

Contents. How to use Magic Ink... p Creating Magic Revealers (with Magic Ink)... p Basic Containers... p. 7-11

Contents. How to use Magic Ink... p Creating Magic Revealers (with Magic Ink)... p Basic Containers... p. 7-11 Rachel Heroth 2014 Contents Magic Ink: How to use Magic Ink... p. 1-2 Creating Magic Revealers (with Magic Ink)... p. 3-6 Containers: Basic Containers... p. 7-11 Troubleshooting Containers...... p. 12

More information

A method is a procedure that is always associated with an object and defines the behavior of that object.

A method is a procedure that is always associated with an object and defines the behavior of that object. Using Form Components Old Content - visit altium.com/documentation Modified by Rob Evans on 15-Feb-2017 Parent page: VBScript Using Components in VBScript Forms Although Forms and Components are based

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

Content Author's Reference and Cookbook

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

More information

1 Getting started with Processing

1 Getting started with Processing cis3.5, spring 2009, lab II.1 / prof sklar. 1 Getting started with Processing Processing is a sketch programming tool designed for use by non-technical people (e.g., artists, designers, musicians). For

More information

Teacher Activity: page 1/9 Mathematical Expressions in Microsoft Word

Teacher Activity: page 1/9 Mathematical Expressions in Microsoft Word Teacher Activity: page 1/9 Mathematical Expressions in Microsoft Word These instructions assume that you are familiar with using MS Word for ordinary word processing *. If you are not comfortable entering

More information

Tutorial: Overview. CHAPTER 2 Tutorial

Tutorial: Overview. CHAPTER 2 Tutorial 2 CHAPTER 2 Tutorial... Tutorial: Overview This tutorial steps you through the creation of a simple banner for a web page and shows how to actually put the movie on the web. The tutorial explains how to

More information

PowerPoint Tips and Tricks

PowerPoint Tips and Tricks PowerPoint Tips and Tricks Viewing Your Presentation PowerPoint provides multiple ways to view your slide show presentation. You can access these options either through a toolbar on your screen or by pulling

More information

File: SiteExecutive 2013 Core Modules User Guide.docx Printed September 30, 2013

File: SiteExecutive 2013 Core Modules User Guide.docx Printed September 30, 2013 File: SiteExecutive 2013 Core Modules User Guide.docx Printed September 30, 2013 Page i Contact: Systems Alliance, Inc. Executive Plaza III 11350 McCormick Road, Suite 1203 Hunt Valley, Maryland 21031

More information

We aren t getting enough orders on our Web site, storms the CEO.

We aren t getting enough orders on our Web site, storms the CEO. In This Chapter Introducing how Ajax works Chapter 1 Ajax 101 Seeing Ajax at work in live searches, chat, shopping carts, and more We aren t getting enough orders on our Web site, storms the CEO. People

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

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9

EDITOR GUIDE. Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 EDITOR GUIDE Button Functions:...2 Inserting Text...4 Inserting Pictures...4 Inserting Tables...8 Inserting Styles...9 1 Button Functions: Button Function Display the page content as HTML. Save Preview

More information

Create Reflections with Images

Create Reflections with Images Create Reflections with Images Adding reflections to your images can spice up your presentation add zest to your message. Plus, it s quite nice to look at too So, how will it look? Here s an example You

More information

Understanding Acrobat Form Tools

Understanding Acrobat Form Tools CHAPTER Understanding Acrobat Form Tools A Adobe Acrobat X PDF Bible PDF Forms Using Adobe Acrobat and LiveCycle Designer Bible Adobe Acrobat X PDF Bible PDF Forms Using Adobe Acrobat and LiveCycle Designer

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

Unit 21 - Creating a Navigation Bar in Macromedia Fireworks

Unit 21 - Creating a Navigation Bar in Macromedia Fireworks Unit 21 - Creating a Navigation Bar in Macromedia Fireworks Items needed to complete the Navigation Bar: Unit 21 - House Style Unit 21 - Graphics Sketch Diagrams Document ------------------------------------------------------------------------------------------------

More information

Help For TorontoMLS. Report Designer

Help For TorontoMLS. Report Designer Report Designer Creating Report Designs... 2 Report Designer Toolbar... 6 Positioning Items... 8 Layout Basics... 11 Aligning Items... 14 Editing and Deleting Report Designs... 17 Report Designer Tips...

More information

Word for Research Writing I: Text and Structure

Word for Research Writing I: Text and Structure Word for Research Writing I: Text and Structure Last updated: 10/2017 Shari Hill Sweet dteditor@nd.edu or 631-7545 1. The Graduate School Template...1 1.1 Document structure... 1 1.1.1 Beware of Section

More information

NVU Web Authoring System

NVU Web Authoring System NVU Web Authoring System http://www.nvu.com/index.php Table of Contents Using Nvu as Your Web Page Authoring System: Getting Started Opening a page, saving, and previewing your work...3 Formatting the

More information

Introduction to Dreamweaver CS3

Introduction to Dreamweaver CS3 TUTORIAL 2 Introduction to Dreamweaver CS3 In Tutorial 2 you will create a sample site while you practice the following skills with Adobe Dreamweaver CS3: Creating pages based on a built-in CSS page layout

More information

Chapter 5. window, so the built-in communication paths use the MsgBox and Popup functions.

Chapter 5. window, so the built-in communication paths use the MsgBox and Popup functions. Chapter 5 Using Internet Explorer as the Output Window In This Chapter Find out the secret Internet Explorer scripting commands Open and size the IE window by script Write text into the IE window Change

More information

PowerPoint Basics: Create a Photo Slide Show

PowerPoint Basics: Create a Photo Slide Show PowerPoint Basics: Create a Photo Slide Show P 570 / 1 Here s an Enjoyable Way to Learn How to Use Microsoft PowerPoint Microsoft PowerPoint is a program included with all versions of Microsoft Office.

More information

Lab: Supplying Inputs to Programs

Lab: Supplying Inputs to Programs Steven Zeil May 25, 2013 Contents 1 Running the Program 2 2 Supplying Standard Input 4 3 Command Line Parameters 4 1 In this lab, we will look at some of the different ways that basic I/O information can

More information

Bruce Moore Fall 99 Internship September 23, 1999 Supervised by Dr. John P.

Bruce Moore Fall 99 Internship September 23, 1999 Supervised by Dr. John P. Bruce Moore Fall 99 Internship September 23, 1999 Supervised by Dr. John P. Russo Active Server Pages Active Server Pages are Microsoft s newest server-based technology for building dynamic and interactive

More information

Handout created by Cheryl Tice, Instructional Support for Technology, GST BOCES

Handout created by Cheryl Tice, Instructional Support for Technology, GST BOCES Handout created by Cheryl Tice, Instructional Support for Technology, GST BOCES Intro to FrontPage OVERVIEW: This handout provides a general overview of Microsoft FrontPage. AUDIENCE: All Instructional

More information

EasySites Quickstart Guide. Table Of Contents

EasySites Quickstart Guide. Table Of Contents EasySites Quickstart Guide Table Of Contents 1. Introduction: What is an Easysite? Page 2 2. Log In: Accessing your Easysite Page 2 3. Categories: A Navigation Menu for your Website Page 3 4. Entries:

More information