1
1
I would like to know how a flash file plays/loads in the users PC. For instance, if my code is as below -
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="970" height="490" id="PRE" align="middle">
<param name="allowScriptAccess" value="always" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="cmck_rhp_pre.swf" /><param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="PRE.swf" quality="high" bgcolor="#ffffff" width="970" height="490" name="PRE" align="middle" allowScriptAccess="always" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
The PRE.swf file is about 413KB. When the user launches this page, how does the file actually play, as in, does the 413KB download to the user's PC and then starts to play or ...? Basically, I would like to know how flash files, be it swf or flv, play on a user's PC. This is in order to understand the impact before deploying.
UPDATE 1: If I open the swf file by typing in \\\PRE.swf, in the IE, the flash file plays. However, I do not see anything in the Temporary Internet Files folder.
stackoverflow ? – ukanth – 2009-11-11T12:53:13.970
1I too thought so, but since it is not exactly programming related, I thought I will post it here. In fact, I have the question ready to be posted on SO as well. – Kanini – 2009-11-11T13:14:38.640
1@Kanini, no, please don't multipost the same question on Stack Overflow. If people think it belongs there (which I don't), then this very question will be moved. – Arjan – 2009-11-11T13:42:13.057
Thanks Arjan, which is why I have not posted it in SO. – Kanini – 2009-11-12T10:07:14.043