Origami
Thursday, November 15th, 2007A couple of Days ago I was at my cousin’s home and I find out that she likes and practice Origami. These are some models that she made. Click on photos to enlarge!
A couple of Days ago I was at my cousin’s home and I find out that she likes and practice Origami. These are some models that she made. Click on photos to enlarge!

Download:
(more…)

Today we learn how to Create Motion Tween Animation in Flash CS3. Here is the final
result!
The Animation Tween
If your animation follows some simple guidelines, you can save yourself lots of work (and reduce your file size, too) by using Flash to calculate the in-between frames for you automatically. You create just the first and last keyframes, and Flash figures out what should go in between. In animation technobabble, that’s called tweening — a quick, fun way to create great animations.
You can do a lot with Flash’s tweening capabilities, including:
And with both motion tweening and shape tweening, you can:
Note: Information from Flash CS3 for Dummies ebook. Let’s start the tutorial!
[1] Open Flash and create a new Flash File (ActionScript 3.0)


Today we learn together how to create a simple effect in Flash. You can buy or download (trial version) the software from here. Here is the final result!
Who Framed the Animation?
The secret of animation in Flash, as in the movies, is that nothing ever really moves. A Flash movie creates the illusion of movement by quickly displaying a sequence of still images. Each still image is slightly different. Your brain fills in the gaps to give you the impression of movement.
One of the great things about Flash is that you can easily create complicated, spectacular extravaganzas of animation. And Flash stores lots of information in the super-compact vector format. Because the files can be small, they can be transmitted over the Web quickly. That’s good for your Web site viewers.

From today on the site you will see Flash tutorials. I want to learn with you how to create
website’s in flash, how to work with swf and action script 3.0! I start with some Flash Icons
in PNG format!





Bypass the Search Results—and Go Directly to the First Page on the List
You have another option after you enter your search query, other than clicking the Google Search button. When you click the I’m Feeling Lucky button, Google shoots you directly to the Web page that ranked at the top of your search results, no extra clicking necessary. If you trust Google to always deliver the one best answer to your query, this is a fun option to try. For the rest of us, however, it’s still best to view the rest of the search results to see what other sites might match what we’re looking for.
Narrow Your Search to a Specific Domain or Web Site
Maybe you want to search only those sites within a specific top-level Web domain, such as .com or .org or .edu—or, perhaps, within a specific country’s domain, such as .uk (United Kingdom) or .ca (Canada). Google lets you do this
by using the site: operator. Just enter the operator followed by the domain name, like this: site:.domain.
For example, to search only those sites within the .edu domain, you’d enter site:.edu. To search only Canadian sites, enter site:.ca. Remember to put the “dot” before the domain.
The site: operator can also be used to restrict your search to a specific Web site. In this instance, you enter the entire top-level URL, like this: site:www.website.domain.
To search only within PiticStyle’s Web site (www.piticstyle.com), enter site:www.piticstyle.com. Your results will include only pages listed within the specified Web site.

An action is a way of automatically applying a technique to an image using a prerecorded series of commands. Actions are triggered either by pressing one or a combination of keys or selecting the action from the Actions palette (1). Many actions
are already supplied with Photoshop and can be found at the bottom of the Actions menu (2) by clicking on the side-arrow at the top right of the Actions palette.
An action can be as simple as opening a new canvas or as advanced as creating a drop shadow on an existing picture or, as
in our example, making snow.
Ready-made actions can be downloaded from the internet, saved to your hard drive and then installed in Photoshop. Use the Load Actions command (3) in the Actions menu to search for and install the downloaded ATN or Photoshop Actions fi le.
(more…)

Today we learn how to create animations in Photoshop! My example is with text because i don’t have photos for this kind of tutorial! Let’s start!
[1] Open Adobe Photoshop and create a new page with the size 350px x 150px!

![]()
Today we learn how to create a search form in HTML! You have all files here and the
final result here!
[1] Open Notepad and type the next code.
<html>
<head>
<title>PiticStyle - Create a Search Form</title>
<style type=”text/css”>
body {
background-image: url(”bg.gif”);
}
img {
float: left;
}
</style>
</head>
<body><br>
<form action=”http://www.google.com/search” method=”get”><img src=”search.gif” mce_src=”search.gif”>
<input type=”text” name=”q”>
<input type=”submit” value=”Search”>
</form>
</body>
</html>