August 9, 2007

Save an Outlook Calendar as a Web page

Save an Outlook Calendar as a Web pageIt is possible to create pages generated as HTML format, and to incorporate them into your website created using (or ).  To generate the pages, do the following:

1)  On Outlook's Go menu, click .

2)  On the File menu, click Save as Web page.

3) Under Duration, set the Start date and End date.

4) Under Options, specify if you'd like to include your calendar appointment details or specify a background graphic according to your preferences.

5) Under Save As, specify the page title and file name.  You can also choose to open the saved web page immedately upon generation.

6)  Lastly, under Save As, type the calendar name, and then specify the path and the file name where you want to place the calendar, then click Save.

If you're new here, you'll want to subscribe to our RSS feed. Thanks for visiting!

Filed under Dreamweaver, FrontPage, Outlook by kseek

del.icio.us Digg Furl Reddit StumbleUpon Help
Permalink Print Comment

August 6, 2007

Troubleshooting Dreamweaver JavaScript Errors by deleting cache files

Like most software applications,  is not immune to system errors. From the common errors that occur in , the “dwscripts” error is a fairly frequent one. Here is a handy trick to troubleshoot this problem.

A simple way to deal with is by deleting FileCache.dat files. Specifically, if you are seeing “dwscripts” errors or the “translators were not loaded” error message, delete the WinFileCache-7A9586CB.dat, MacFileCache-BFE7CE2E.dat or FileCache.dat file. These files are located in the Dreamweaver user configuration folder.

The location of the FileCache.dat files depends on your operating system and your version of . In general, the location for different versions are as follows:

  • For Dreamweaver CS3 on Windows Vista: C:\Users\[username]\AppData\Roaming\Adobe\Dreamweaver 9\Configuration
  • For Dreamweaver CS3 on Windows XP: C:\Documents and Settings\[username]\Application Data\Adobe\Dreamweaver 9\Configuration
  • For Dreamweaver 8 on Windows XP: C:\Documents and Settings\[username]\Application Data\Macromedia\Dreamweaver 8\Configuration
  • For Dreamweaver 8 on Windows Vista: C:\Users\[username]\AppData\Roaming\Macromedia\Dreamweaver 8\Configuration

 

Filed under Dreamweaver by kseek

del.icio.us Digg Furl Reddit StumbleUpon Help
Permalink Print Comment

August 3, 2007

Activating text rollovers using Dreamweaver CSS Style

Adobe ’s saves you from the boredom of mindless repetitive actions. For example, the action below enables you to create text rollovers and to delete the link underlines. Here’s a tip to easily activate that text rollover:

To activate a in a particular place by using CSS Style, use the following trick:  

•  Paste the HTML code between the head tags –

<style type="text/css"> 
.links { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #003399} 
.links:hover {font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #FF8B22; text-decoration: none}
</style>

• Select the link style following the example given below:

<a href="link.htm" mce_href="link.htm" target="_parent" class="links">link text</a>

 

Filed under Dreamweaver by kseek

del.icio.us Digg Furl Reddit StumbleUpon Help
Permalink Print Comment