Resize Flash Gauges
Posted: Mon 07 Dec 2009 2:07 pm
I want to resize the two gauges for wind and direction made in Flash. I think they are a little too big. Which parameters in the HTML file makes my day?
Support forum for Cumulus weather station software
https://cumulus.hosiene.co.uk/
Code: Select all
<!-- This is the real time wind display. If you don't want to use it, delete everything between this comment and the next one. -->
<div align="center">
<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=<#realtimeinterval>'/>
<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=<#realtimeinterval>'
type="application/x-shockwave-flash"
pluginspage="http://www.adobe.com/go/getflashplayer">
</embed>
</object>
</div>
<!-- end of real time display -->
Indeed. Are you saying you got it work? I changed both and it didn't for me.beteljuice wrote:There are TWO references to the width and height paramaters, the first is obvious and at the start of the code:
id="CumulusRealtime" width="600" height="300"
The second is lower down in the <embed ....... construct.