function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Vivek ManchandaVivek Manchanda 

Problem in Displaying Static Resources in Visual Force Page.

Hi

I have uploaded .swf file in Static Resources and then I tried to display that Static Resources file in My VisualForce page

In this way

<apex:page  showHeader="false" sidebar="false">
    <apex:composition template="composition">
        <apex:define name="pagecontent">
            <apex:form>
             <apex:flash src="{!$Resource.MyFlexFile}" width="100%" height="100%" />   
            </apex:form>
        </apex:define>
    </apex:composition>
</apex:page>

I am getting this Resources file in my page but there is a problem .

The problem is  the display of my .SWF file is only on half page and rest whole the page is blank .

Can any one advice me that for what reason .SWF file is not displaced on whole page and how can I solve this problem .

Thanks
Vivek Manchanda
Ron HessRon Hess
try taking out the composition , define and form tags, not sure what they are adding to your flash tag

also i think you specify width and height in pixels  200px;