On the following page (http://www.expressonline.com.au/) there is a flash file displayed below the menu items and to the left of the login screen but can not locate it in the source anywhere?
Anyone able to find it in the code?
Printable View
On the following page (http://www.expressonline.com.au/) there is a flash file displayed below the menu items and to the left of the login screen but can not locate it in the source anywhere?
Anyone able to find it in the code?
Here ya go:
HTML Code:<object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="740" height="203"><param name="movie" value="/flash/bannerLoader1.swf"><param name="wmode" value="transparent"><param name="quality" value="high"><embed id="exol_banner" src="/flash/bannerLoader1.swf" type="application/x-shockwave-flash" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" width="740" height="203"></object>
Here is the HTML for the banner section:
Looks like they are using javascript to show the swf file. Check out the swf file in the javascript.... "/flash/bannerLoader1.swf"HTML Code:<div id="EXOL_top_banner">
<div id="exol_banner"><object height="203" width="740" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param value="/flash/bannerLoader1.swf" name="movie"/><param value="transparent" name="wmode"/><param value="high" name="quality"/><embed height="203" width="740" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" wmode="transparent" type="application/x-shockwave-flash" src="/flash/bannerLoader1.swf" id="exol_banner"/></object></div>
<script language="javascript">
FlashReplace.replace("exol_banner", "/flash/bannerLoader1.swf", "exol_banner",
740, 203, 10, { wmode : "transparent", quality: "high" });
</script>
</div>
EDIT:
IT seems they are using "Loader1.swf" to load a random swf file... So i dont think you will beable to get the one you want. They have disallowed directory listing of their flash folder as well.