Category Archives: Tutorials

Flash Game – Raining Anvils

What do we want to do Create a game where you play as Road Runner. Dodging anvils dropped from above (assumably by the Coyote). Where this game will differ from other script based projects we have done in the past … Continue reading

Posted in Tutorials | Leave a comment

What is Flash and Should I Learn It?

What is Flash? Adobe Flash is a multimedia tool that gives the ability to develop animation, audio, video and advanced interactivity using a simple visual interface. While the final result is often used on websites, it is also possible to … Continue reading

Posted in Tutorials | Leave a comment

Beginning Actionscript 3

Starting out with any programming language is difficult to grasp at first. What you will find however is that after learning the concepts behind one language, it gets easier when you move to another language (Javascript, PHP…). The following are … Continue reading

Posted in Tutorials | 1 Comment

Beginning PHP

The syntax of PHP is very similar to that of Javascript. The difference is use, we use PHP for any backend functionality for our website: sending email, adding customers to a database, logging in to our website… You want to … Continue reading

Posted in Tutorials | Tagged , , , , , , | 1 Comment

Installing PHP on our computer using XAMPP

What is php? PHP is a scripting language that is generally used to combine front end technologies like HTML and CSS to backend technologies such as a MySQL database. PHP can be used to send email from a form, generate … Continue reading

Posted in Tutorials | Tagged , , , , , , | Leave a comment

Javascript Form Checking

A very popular use for JavaScript is its ability to check input data from forms before we send it to the server to be processed (added to a database, email, etc.) What we will be doing is creating a simple … Continue reading

Posted in Tutorials | Tagged , , , , , , , , | Leave a comment

Javascript Tab Content Menu

To start this example, download the following html document: http://jeffkilroy.com/myfiles/class/javascript_3_start.html (You can right click the link and go to File>Save As) You can see in this file we have our HTML and CSS already completed, in our HTML we list … Continue reading

Posted in Tutorials | Tagged , , , , , | 1 Comment

CSS and Javascript (DHTML)

One of the nice uses of javascript is that it can change some of the styles on our page. In this example we are going to use certain events such as the page loading or clicking a button modify some … Continue reading

Posted in Tutorials | Tagged , , , , , | Leave a comment

Beginning Javascript

Up next, Javascript! We use Javascript for client side programming. It is a great way to make our webpages more interactive by dynamicly changing content and styles, as well as verifying input data such as forms. We can even combine … Continue reading

Posted in Tutorials | Tagged , , , , , | Leave a comment

HTML / CSS Forms

HTML/CSS forms can be a bit scary at first. Let’s take a look at a simple HTML form and break it down, tag by tag: <div class=”blueform”> <form> <fieldset> <legend>Email Us</legend> <div> <label>Your Name</label> <input type=”text” name=”your_name” value=”" /> </div> … Continue reading

Posted in Tutorials | Leave a comment