The one I created is a simple ksh script called via a crontab entry. The source used by the page is a PHP script...
Both are a bit on the gross side. I am about to redo that stuff as I move my sites over to a new web server that I have been building and testing the past week.
They ksh script is:
#!/usr/bin/ksh
############################################################################
# A Project of TNET Services, Inc.
############################################################################
#
# Project: TNET Weather Station Pages
# Module: grlevel_move.ksh
# Purpose: Main Index Page for TNETWeather
# Authors: Kevin W. Reed <kreed@tnet.com>
# TNET Services, Inc.
# Dist: INTERNAL
#
# Copyright: (c) 1992-2007 Copyright TNET Services, Inc.
############################################################################
# This document uses Tab 4 Settings
############################################################################
STORE='...homedir.../'
DT=`/usr/bin/date '+%Y%m%d%H%M'`
GETFILE='kiwa_br1.jpg'
#################################################
if [ ! -e ${GETFILE} ]] ; then exit ; fi
mv ${GETFILE} br1.jpg
sleep 10
# Process Image
/usr/local/bin/convert br1.jpg -crop 590x590+50+0 br1a.jpg
/usr/local/bin/convert br1a.jpg grlevel3-bot.gif -append br1b.jpg
/usr/local/bin/composite -gravity NorthWest tws-grlevel3-topbox.gif br1b.jpg br1c.jpg
/usr/local/bin/convert br1c.jpg -resize 200x210! gr1_0-currentsm.jpg
/usr/local/bin/composite -gravity SouthWest tws-grlevel3-logo.gif br1c.jpg br1d.jpg
#################################################
mv br1d.jpg gr1_0-current.jpg
cutfiles
cp gr1_0-current.jpg ${STORE}/${DT}image.jpg
#################################################
# Remove tmp files
rm br1a.jpg br1b.jpg br1c.jpg br1d.jpg br1.jpg
#################################################
the PHP script has stuff in it I can't release right at the moment though...
BTW, you can include the SWF slide show without using EMBED...
I sent this to the autor, but apparently he hasn't updated his examples with it...
<object type="application/x-shockwave-flash"
data="slideshow.swf?php_source=slshow.php&license=yourlicense"
width="590" height="646" >
<param name="movie" value="slideshow.swf?php_source=slshow.php&license=yourlicense" />
<param name="quality" value="high" />
<param name="bgcolor" value="#000000" />
<param name="wmode" value="transparent" />
</object>