Welcome to the Cumulus Support forum.

Latest Cumulus MX V3 release 3.28.6 (build 3283) - 21 March 2024

Cumulus MX V4 beta test release 4.0.0 (build 4019) - 03 April 2024

Legacy Cumulus 1 release 1.9.4 (build 1099) - 28 November 2014
(a patch is available for 1.9.4 build 1099 that extends the date range of drop-down menus to 2030)

Download the Software (Cumulus MX / Cumulus 1 and other related items) from the Wiki

CumulusRealtime.swf XHTML Validation

Discussion and questions about Cumulus weather station software version 1. This section is the main place to get help with Cumulus 1 software developed by Steve Loft that ceased development in November 2014.
Post Reply
TNETWeather

CumulusRealtime.swf XHTML Validation

Post by TNETWeather »

If you are creating your own web pages and using one of the XHTML doctypes... the current insertion of CumulusRealtime.swf into the page will not validate because it uses the depreciated "EMBED" elements.

The original code is:

Code: Select all

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    id="CumulusRealtime" width="600" height="300"
    codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab">
    <param name="movie" value="CumulusRealtime.swf" />
    <param name="quality" value="high" />
    <param name="wmode" value="transparent" />
    <param name='flashVars' value='interval=60'/>
    <param name="allowScriptAccess" value="sameDomain" />
    <embed src="CumulusRealtime.swf" quality="high" wmode="transparent"
        width="600" height="300" name="CumulusRealtime" align="middle"
        play="true"
        loop="false"
        quality="high"
        allowScriptAccess="sameDomain"
        flashVars='interval=60'
        type="application/x-shockwave-flash"
        pluginspage="http://www.adobe.com/go/getflashplayer">
    </embed>
</object>
A replacement for the above which works in FF and IE is:

Code: Select all

<object type="application/x-shockwave-flash" data="CumulusRealtime.swf"
    width="600" height="300" id="CumulusRealtime" >
    <param name="movie" value="CumulusRealtime.swf"/>
    <param name="quality" value="high"/>
    <param name="scale" value="noscale"/>
    <param name="bgcolor" value="#FFFFFF"/>
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="wmode" value="transparent" />
    <param name='flashVars' value='interval=60'/>    
</object>
Post Reply