Hi FlexCoders,

Got a question again.

I am embedding my SWF object in an ASPX page.

The HTML markup for the aspx page is shown as below:

<object id='mySwf' 
            classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
            
codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab";
            height='100%'
            width='100%'>
            <param name="src" value="App_Swf/Facilities.swf"/>
            <param name="flashVars" value=""/>
            <embed src="App_Swf/Facilities.swf" 
                   pluginspage="http://www.adobe.com/go/getflashplayer";
                   type="application/x-shockwave-flash"
                   height="100%"
                   width="100%" 
                   flashVars="">
            </embed>
    </object>

When I run the page, the SWF file is not loading.  I think the embedded SWF 
object itself is not being rendered.
I tried to simulate the same on another site I have and when the SWF file is 
not present, right clicking on the page (where the SWF is embedded) will give a 
context menu informing user that Movie is not loaded.
I wonder why when I try to embed the same on another page, the embedded object 
is not there.
I tried to view the source and in the HTML markup, the object should be there.
* This is from the View Source
<object id='mySwf' 
            classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
            
codebase="http://fpdownload.macromedia.com/get/flashplayer/current/swflash.cab";
            height="88%" 
            width='100%'>
            <param name="src" value="App_Swf/Facilities.swf"/>
            <param name="flashVars" value=""/>
            <embed src="App_Swf/Facilities.swf" 
                   pluginspage="http://www.adobe.com/go/getflashplayer";
                   type="application/x-shockwave-flash"
                   height="88%"
                   width="100%" 
                   flashVars="">
            </embed>
    </object>
Appreciate your inputs. Thanks.


      

Reply via email to