Showing posts with label flash. Show all posts
Showing posts with label flash. Show all posts

Monday, October 09, 2006

Gene Gateway

Thanks to the Human Genome Project, huge volume of the data on human chromosomes and genes residing on them are available freely on Internet.

Gene Gateway is a collection of guides and tutorials designed to to introduce new users to genetic disorder and bioinformatics resources on the Web.
> Download the Gene Gateway PDF here!

Source of this swf file: Human Genome Landmarks Poster: Chromosome Viewer

Also, you can order the free copy of the Human Genome Landmarks: Selected Genes, Traits, and Disorders printed wall poster!

Wednesday, August 02, 2006

Memo: Flash and XML

Dynamic Flash with XML

1. Create XML (generate with JSP)

jsp:
<%@ page contentType="text/xml" %> <?xml version="1.0" encoding="UTF-8"?> <itemlist> ... </itemlist>

2. Load the external XML into Flash (fla). Create swf
ActionScript:
myTest = new XML(); //create a new xml object myTest.ignoreWhite = true; //ignore whitespace myTest.load("sample.xml"); ...

3. Embed the swf (and set xml path) in HTML
HTML:
<object width="250" height="250" id="some_id"> <param name=movie value="test.swf"> <embed src="test.swf"> </embed> </object>

Bookmarks

1. JSP / XML 2. Flash