It is possible to create Outlook Calendar pages generated as HTML format, and to incorporate them into your website created using FrontPage (or Dreamweaver). To generate the pages, do the following:
1) On Outlook's Go menu, click Calendar.
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!
Like most software applications, Dreamweaver is not immune to system errors. From the common errors that occur in Dreamweaver, the “dwscripts” error is a fairly frequent one. Here is a handy trick to troubleshoot this problem.
A simple way to deal with JavaScript errors 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 Dreamweaver. 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
Adobe Dreamweaver’s CSS Style 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 Dreamweaver text rollover 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