IntelliSense options

Microsoft Office FrontPage 2003

Show All Show All

IntelliSense options

IntelliSense provides an array of coding options in Code view.

Microsoft FrontPage provides the following IntelliSense commands, which you can set to appear automatically:

OptionDescription

List Members

Simplifies the completion of HTML statements and script statements.

For example, typing an object and a scope operator (such as window.) displays a list of appropriate elements (such as the event open), enabling you to complete the string:

window.open

Parameter Info

Simplifies the determination of the correct parameters to add to the script.

For example, after window.open, you can type an opening parenthesis:

window.open(
A list of appropriate parameters appears, guiding you in the choices you have for completing the string:

window.open([url],[name],[features],[replace])

Complete Word

Simplifies the completion of code as you type.

For example, you can type part of a start tag:
<tab
By pressing CTRL+SPACE, the rest of the tag appears:
<table

The closing tag delimiter is not added, so you can continue to add tag attributes.

View Code Snippets

Simplifies the insertion of code snippets as you type.

For example, to begin writing a script, you could invoke the script block, which is a standard code snippet:

<script language="JavaScript">
<!--

//-->
</script>