Latest Posts

Posted by Thurein on 29th August 2009

Collection of Flash Tutorial Websites

Adobe Flash is one of the most popular animation softwares. Flash has supported animation through tweens ( timeline, keyframes  ) and ActionScript . I hope this collection would be support to beginner and flash learner. You can learn flash effect, animation and ActionScript form those site. I hope you may enjoy this post.
ိိ

Actionscript.org

actionscript.org
ိိ

Flash Tuts+

flash-tuts
ိိ

Continue Reading

Posted by Thurein on 27th August 2009

Incredible Photoshop Tutorial Websites

If you are looking for photoshop tutorials, you will enjoy this post. In this collection of photoshop tutorial websites, you will find really nice photoshop tutorials. Maybe some of those you haven’t seen before.

PSDFan

psdfan

 

Best Photoshop Tutorials

bestphotoshoptutorials

 

Continue Reading

Posted by Thurein on 25th August 2009

Amazing Photoshop Tutorials

Adobe photoshop is the most popular software to create design and graphic editing. If you would like to become a designer, you should check these very nice photoshop tutorials.

Curled Corner

curled-corned

Old Fantasy Map of Your Area

old-fantasy-map

Continue Reading

Posted by Thurein on 24th August 2009

Free Textures And Patterns Websites

When you design with photoshop , you may need high quality texture and pattern. This is the list of free texture and pattern sites. You can download free of charge from these websites.

1. Grungetextures.com

Grungetextures.com

2. Squidfingers.com

squidfingers.com Continue Reading

Posted by Thurein on 22nd August 2009

SWFObject: Javascript Flash Player detection and embed script

Do you get the problem when you embedding flash (swf) file on your website with Adobe script ( automatically added from dreamwaver )?

<script type="text/javascript">
AC_FL_RunContent( 'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0', 'width', '940', 'height', '800', 'title', 'flashmo_template', 'src', 'flashmo_183_photo_rotator', 'quality', 'high', 'pluginspage', 'http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash', 'bgcolor', '#FFFFFF', 'movie', 'flashmo_183_photo_rotator' ); //end AC code
</script>

You can solve easily with swfobject javascript embed script.
SWFObject is a small Javascript file used for embedding Adobe Flash content. The script can detect the Flash plug-in in all major web browsers (on Mac and PC) and is designed to make embedding Flash movies as easy as possible.

How it works?

Using SWFObject is easy. Simply include the swfobject.js Javascript file, then use a small amount of Javascript on your page to embed your Flash movie. Here is an example showing the minimum amount of code needed to embed a Flash movie:

<script type="text/javascript" src="swfobject.js"></script>

<div id="flashcontent">
This text is replaced by the Flash movie.
</div>

<script type="text/javascript">
var so = new SWFObject("movie.swf", "mymovie", "400", "200", "8", "#336699");
so.write("flashcontent");
</script>

Continue Reading

Page 3 of 3123