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
GanuGanu 

VF page to Site

I have created visual force page, using .swf file(I have upload in static resource) its working fine in the SF tabs, but its not when I include in Site page, when I right click there it says "Movie not loaded.."
Code:
<apex:page showHeader="false" sidebar="false">
<apex:form >
<apex:flash src="{!$Resource.Gaugesemicircular}" flashvars="Maxi" width="110%" height="150%" play="true"/>    
</apex:form> 
</apex:page>

 Please let me know where I commited mistakes?
Best Answer chosen by Admin (Salesforce Developers) 
BulentBulent
Make sure the cache control field is set to "Public" for your static resource

All Answers

BulentBulent
Make sure the cache control field is set to "Public" for your static resource
This was selected as the best answer
GanuGanu
Hi Bulent,
 
Thanks you for your reply its working...
 
--
Ganu