Example of crossdomain.xml support with Flickr.com

The applet above shows the most recent Flickr photos for a given user. The applet is only 8k with Pack200 compression, starts quickly, and if you are using JavaSE 6 update 10 then it requires no signing or warning dialogs, even though it is connecting live to Flickr.com. If you are using an older browser then it will fall back to a signed version. When you click on a photo it will take you to the Flickr page for that photo.

This applet demostrates the following features of the new plugin:

The animated loading GIF was generated by loadinfo.net.

you can embed this applet in your own page with the following applet tag:


                
        <applet code="photostrip.Applet"
                archive="http://projects.joshy.org/demos/PhotoStrip/webstart/PhotoStrip.jar"
                width="300" height="200"
                >
            <param name="image" value="loadinfo.net.gif"/>
            <param name="boxmessage" value="loading..."/>
            <param name="boxborder" value="false"/>
            <param name="jnlp_href" value="http://projects.joshy.org/demos/PhotoStrip/photostrip.jnlp">
            <param name="flickruser" value="31706743@N00"/>
            <param name="size" value="100"/>
            <param name="cols" value="3"/>
            <param name="rows" value="2"/>
        </applet>