I am developing the dreamweaver extension for our project. In that i have a
requirement of loading the images from the server and showing the images as
thumbnails. I am using the flash player embedded into the dreamweaver ui. I
am directly loading the images from the server using the src attribute of the
embed tag. I am not using any swf to load the images. I am not able to
capture any events from the object tag. This is a very critical issue please
help me in solving this issue. Attached is the code snippet


document.forms[0].tile[y].src=gFilePath[y+(gMax*(pageNo-1))];


document.forms[0].asset[y].innerHTML=gFileName[y+(gMax*(pageNo-1))].substring(0,
12);


document.forms[0].imageField[y].src=gFilePath[y+(gMax*(pageNo-1))];//document.fo
rms[0].tile[y].src;



<td width="22%"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
rsion=7,0,19,0" width="100" height="100">

<param name="movie" value="comJava.swf" />

<param name="quality" value="high" />

<param name="bgcolor" value="#d4d0c8" />

<embed name="tile" src="comJava.swf" quality="high"
pluginspage="http://www.macromedia.com/go/getflashplayer"
type="application/x-shockwave-flash" width="100" height="100"></embed>

</object></td>