You will be doing most of your web authoring in the Design Window.
Nevertheless, the Document window still offers you 4 different views:
1. Design View - renders a page in a browser-like context.
2. Code View - displays the page's source code.
3. Code + Design View - displays both code and design views. (this view is activated by pressing the Split button)
4. Live View - renders a page in a live browser within Dreamweaver.
Any changes in one view will also be instantly reflected in other views.
.......notes and excerpts from "Adobe Classroom in a Book"
Adobe Flash animation; Dreamweaver website authoring; Photoshop imaging and graphics design; Wordpress blogging and content management system; Web Development
Tuesday, November 16, 2010
Dreamweaver - .html or .htm
it is only a matter of personal preference whether you want to use .html or .htm for file extensions. But you should be consistent!
Most websites use the name index.html for their homepages.
Most websites use the name index.html for their homepages.
Dreamweaver - Selecting a CSS Layout
Notes and excerpts from "Adobe Classroom in a Book"
Adobe Dreamweaver cs4 provides 32 CSS layout files, all with different designs. In an exercise, you will select one and then modify it.
These CSS layouts are carefully tested to comply with web standards and to work cross-platform on all major browsers with no additional changes to the layout.
The following types of CSS layouts are provided:
1. popular two- and three- column layouts
2. fixed-width layouts (shown with a lock symbol)
3. percentage- or em-based layouts (shown with a spring symbol to indicate elasticity)
4. layouts that are a mixure of pixels, percentages, and ems
Adobe Dreamweaver cs4 provides 32 CSS layout files, all with different designs. In an exercise, you will select one and then modify it.
These CSS layouts are carefully tested to comply with web standards and to work cross-platform on all major browsers with no additional changes to the layout.
The following types of CSS layouts are provided:
1. popular two- and three- column layouts
2. fixed-width layouts (shown with a lock symbol)
3. percentage- or em-based layouts (shown with a spring symbol to indicate elasticity)
4. layouts that are a mixure of pixels, percentages, and ems
Adobe Dreamweaver will set itself as the default editor for the following file types:
Active Server Pages (asp)
Java Server Pages (jsp) [not automatically selected, did not select manually]
ColdFusion (cfm,cfc)
ASP.NET (aspx, ascx) [not automatically selected, did not select manually]
PHP (php, php3, php4)
JavaScript (js)
Cascading Style Sheet (css)
Extensible Markup Language (xml)
XSL Style Sheets (xsl, xslt)
Java Server Pages (jsp) [not automatically selected, did not select manually]
ColdFusion (cfm,cfc)
ASP.NET (aspx, ascx) [not automatically selected, did not select manually]
PHP (php, php3, php4)
JavaScript (js)
Cascading Style Sheet (css)
Extensible Markup Language (xml)
XSL Style Sheets (xsl, xslt)
Dreamweaver - basics - local and uploaded remote sites
in dreamweaver, you initially work with a local site stored on your hard drive. After you are finished, you can publish your site, and then you would also be working with a remote version of your site, which is stored on your web host's servers.
Monday, November 15, 2010
AdobeConnect - Broadcast and Record Webcasts
Talks on Computing Systems
Each week, the Carnegie Mellon Silicon Valley campus features a different speaker giving a talk on computing and tech topics.
Talks are broadcast and recorded using AdobeConnect.
Remote attendance is available via http://cmysv.acrobat.com/tocs.
Recordings are available in the talk archive.
http://www.cmu.edu/silicon-valley/news-events/seminars/index.html
http://www.cmu.edu/silicon-valley/news-events/seminars/archive.html
Each week, the Carnegie Mellon Silicon Valley campus features a different speaker giving a talk on computing and tech topics.
Talks are broadcast and recorded using AdobeConnect.
Remote attendance is available via http://cmysv.acrobat.com/tocs.
Recordings are available in the talk archive.
http://www.cmu.edu/silicon-valley/news-events/seminars/index.html
http://www.cmu.edu/silicon-valley/news-events/seminars/archive.html
Sunday, November 7, 2010
Flash - ActionScript - Using Labels on Keyframes
Your actionScript code tells flash to go to a different frame number when the user clicks each of the buttons. However, if you decide to edit your Timeline and add or delete a few frames, you will need to go back into your ActionScript and change your code so the frame numbers match.
An easy way to avoid this problem is to use frame labels instead of fixed frame numbers. Frame labels are names that you give to keyframes. Instead of referring to keyframes by their frame number, you refer to them by their label. So, even if you move your destination keyframes as you edit, the labels remain with their keyframes.
To reference frame labels in ActionScript, you must enclode them in quotation marks.
The command gotoAndStop("label1") makes the playhead go to the keyframe with the label called label1.
(to label a frame: in the Proerties inspector, enter label1 in the Label Name field.)
** excerpted from "Adobe Flash cs5 Classroom in a Book" **
An easy way to avoid this problem is to use frame labels instead of fixed frame numbers. Frame labels are names that you give to keyframes. Instead of referring to keyframes by their frame number, you refer to them by their label. So, even if you move your destination keyframes as you edit, the labels remain with their keyframes.
To reference frame labels in ActionScript, you must enclode them in quotation marks.
The command gotoAndStop("label1") makes the playhead go to the keyframe with the label called label1.
(to label a frame: in the Proerties inspector, enter label1 in the Label Name field.)
** excerpted from "Adobe Flash cs5 Classroom in a Book" **
Subscribe to:
Posts (Atom)