Latest Posts

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 4 of 41234