Archive for November, 2007

Origami

Thursday, November 15th, 2007

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!

Origami Picures

(more…)

Prison Break - Season 3, Episode 8 - Bang and Burn

Wednesday, November 14th, 2007

Prison Break Cover

Download:
(more…)

Create Motion Tween Animation in Flash CS3

Wednesday, November 14th, 2007

Flash CS3 Icon PNG

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:

  • Motion tweening: This is definitely the most common type of tweening. With simple motion tweening, you can move your objects in a straight line from here to there. You can use motion tweening also to animate an object along any path that you create, even one with lots of curves.
  • Shape tweening: This type of tweening gradually changes any shape to another shape. You create the first and last shapes. These days, kids call it morphing. The results may be quite unpredictable and require a lot of computer processing but are usually interesting. You can add shape hints to try to tell Flash exactly how you want your shape to morph.

And with both motion tweening and shape tweening, you can:

  • Change an object’s size: For example, if you make an object smaller as you move it, the object often appears to be moving away from the viewer.
  • Rotate an object: You specify the amount of the rotation. Flash combines the motion or shape tweening with the rotation so that you get both effects at one time.
  • Change color or transparency or both: Flash creates a gradual change in color based on your starting and ending colors.

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)

(more…)

Learn Flash with a simple example!

Tuesday, November 13th, 2007

Flash Icon PNG

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.

(more…)

Flash Icons!

Tuesday, November 13th, 2007

Flash Icon PNG

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!

 
(more…)

Free Photoshop Actions

Sunday, November 11th, 2007

PAGE CURL

Page Curl Photoshop Action

Download

POLAROID

Polaroid Photoshop Actions

Download

(more…)

Google Secrets!

Saturday, November 10th, 2007

Google Logo PNG

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.

(more…)

Actions in Adobe Photoshop

Friday, November 9th, 2007

Action window in Adobe Photoshop CS3

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…)

Create Animation in Adobe Photoshop!

Friday, November 9th, 2007

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!

(more…)

Create a Search Form in HTML!

Thursday, November 8th, 2007

Contact Form

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>

(more…)