Archive for the ‘Adobe Dreamweaver’ Category

Adobe CS6 available

Monday, May 7th, 2012

CS6 is finally here. You can get the products from http://www.adobe.com

CS6 Rumor: Cloud based purchasing

Monday, April 23rd, 2012

We will find out everything about CS6 today but here is the latest. There will be a cloud based service so that users can purchase the software at $50 a month instead of buying it forever. This means that you could essentially rent the software. This would actually be great for my students who only need it for a few months:

Source: http://www.engadget.com/2012/04/23/adobe-cs6-subscription-creative-cloud-photoshop-official/

Adobe CS6 will be announced today

Monday, April 23rd, 2012

At an event in San Fran, Adobe will announce the release of CS6 today. Very excited to see if all the rumors are true.

Source: http://www.washingtonpost.com/business/technology/adobe-systems-to-launch-creative-suite-6-will-make-it-available-on-a-subscription-basis/2012/04/23/gIQAQeb3aT_story.html

Adobe Suite 6 rumored to be coming spring or summer 12

Tuesday, March 20th, 2012

According to the rumors, the latest versions of Flash, Photoshop, Dreamweaver, and the rest of the Adobe suite will be coming this summer. Here are a few pieces from an interview with the CEO of Adobe:

“Question

And with respect to the CS5 mid-cycle release, is that going to impact the timing of CS6?

Adobe CEO

Well, I think the way you can look at that is the real goals for the mid-cycle release are to continue to enhance the functionality

And then you can expect another release in 2012.

Question

So then just to confirm, you said the next milestone release after the mid-cycle release will be in 2012. Is that correct?

Adobe CEO

That’s correct.”

 

How to FTP

Thursday, September 1st, 2011

Adding a Background image in dreamweaver

Thursday, August 5th, 2010

This video shows you how to add a background image in dreamweaver:

Editing Text in dreamweaver

Friday, May 21st, 2010

This video shows you how to edit text in dreamweaver and how to use the internal CSS to change the size/color

Saving files in Dreamweaver

Friday, May 21st, 2010

This video shows you how to save files in dreamweaver

Beginning Dreamweaver

Friday, May 21st, 2010

This tutorial walks through the initial stages of opening up dreamweaver

php: Contact Page

Wednesday, April 21st, 2010

for those of you interested in creating a contact page with a form (fields and submit button) that goes directly to your email, check this out. You simply need to copy and paste this code into the body of your html. You also need to put your email address in the part that says ‘YourEmailAddressHere’ and need to save the page as something like: contact.php, not something like contact.html. And thats it. Very easy to do.

<form name=”form1″ id=”form1″ method=”post” action=”<?=$PHP_SELF?>”>
<p>Name:
<input type=”text” name=”name” />
</p>
<p>&nbsp;</p>
<p>Email:
<input type=”text” name=”email” />
</p>
<p>&nbsp;</p>
<p>Subject:
<input type=”text” name=”subject” />
</p>
<p>&nbsp;</p>
<p>Message:
<textarea name=”comments” cols=”40″></textarea>
</p>
<p>&nbsp;</p>
<p>
<input name=”submitentry” type=”submit” value=”SUBMIT” />
<input type=”reset” name=”Submit2″ value=”Reset” />
</p>
</form>
<p>
<?php
if ($submitentry == “SUBMIT”){
$sql = “‘$name’, ‘$email’, ‘$comments’”;
$em = “‘$subject’”;
mail(‘YourEmailAddressHere’, $em, $sql);
echo(“<p>Your message has been sent!” . “</p>”);
}
?></p>