Tutorials
Deco Tool in Flash
Stephanie Valentin is a true artist that I admire. She is a french violinist, painter and sculptor. She offers artwork, free wallpapers, tutorials, videos and more on her website as well as Youtube. Visit Stephanie Valentin for more tutorials.
Adding Blank Spaces
To get this result:
Link1 | Link2 | Link3
Code:
Link1 | Link2 | Link3
Flash Tutorials
Motion Tween in Flash
There are several ways to make animations in Flash. One of the most popular ways is tweens (means in between). See the tutorials:Understanding Tweens | Motion Editor Creating motion tweens | View More
The Bone Tool
Learn how to animate segments of a symbol by using Flash's bone tool.Character animation | Flash Downunder | CS5 Tutorial | Animate with Bone Tool
ActionScript 3.0 (AS3)
Simple HTML Codes
JUMP
You can jump to a certain part of another page. Here is an example using two pages.
<!-- First make a link to jump from on page 1-->
PAGE 1:
<!-- Link to jump from -->
See PHP on page
<a href="page2.html#php">2</a>
<!--Then make the place the user will jump too on page 2-->
PAGE 2:
<a name="php">Learn PHP</a>
Simple PHP Script
Displaying the current date in an HTML page.
<html>
<head>
<title>Example #1 TDavid's Very First PHP Script ever!</title>
</head>
<? print(Date("l F d, Y")); ?>
<body>
</body>
</html>
Simple HTML Form Code
This code:
<form>
First name: <input type="text" name="firstname" /><br />
Last name: <input type="text" name="lastname" />
</form>
Produces this:
The <input type="text" /> defines a one-line input field that a user can enter text into. To learn more about Forms, visit W3schools.