Archives Posts
March 28th, 2008 by steamfrog
Designed to view full-size photos and images inline without requiring a separate web page load.
License
FancyZoom is totally free for your non-commercial website.
In a bit of an experiment: if your website is commercial (i.e. makes you money), you can license FancyZoom for $39 per site, a one-time fee.
Reference Site:
http://www.cabel.name/draft1/2008/02/fancyzoom-10.html
And for Wordpress as a Plugin
CLICK HERE
And even for Joomla
CLICK HERE
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
Archives Posts
March 25th, 2008 by steamfrog
Whole Code:
Add a new video instance to the stage & for this example name it “videoPlayer” without the quotes.
Go to Library

Then

Drag the video from the library onto the stage and give it an instance name of videoPlayer.
Add the code below on that frame.
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
videoPlayer.attachVideo(ns);
ns.play(”YOUR FLV FILE LOCATION IN HERE“);
ns.onStatus = function(info) {
if (info.code == “NetStream.Play.Stop”) {
ns.seek(0);
}
};
References:
http://www.tomontheweb.ca/Blog/2006/05/looping-flv.html
http://www.quip.net/blog/2006/flash/how-to-load-external-video
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.
Archives Posts
March 16th, 2008 by steamfrog
Users of Dreamweaver check out the cool srpy effects here.
http://labs.adobe.com/technologies/spry/demos/effects/
Users with CS3 can access the effects through the behaviors panel.
WINDOW>Behaviours>effects
Or shortcut SHIFT+F4 > Effects
Share and Enjoy:
These icons link to social bookmarking sites where readers can share and discover new web pages.