If the FLA is saying the video is in same folder (e.g
component inspector just had video name.flv and not complete path)
then simply upload the SWF, FLV and .JS to the same folder on your
website.
SKIN: If you've designed your skin in PS and imported it into
Flash, then it'll be embedded within the SWF and you wont need to
separately upload it. The built in skins are exported separately
and need to be uploaded - but in your case this wont be necessary.
EXAMPLE CODE FOR HEADER IN WEBPAGE (THIS ALSO HAS ERROR
REPORTING SO IF FLASH NOT INSTALLED OR WRONG VERSION - IT WILL
PROMPT TO DOWNLOAD)
script language="javascript"> AC_FL_RunContent = 0;
</script>
<script language="javascript"> DetectFlashVer = 0;
</script>
<script src="AC_RunActiveContent.js"
language="javascript"></script>
<script language="JavaScript" type="text/javascript">
<!--
//
-----------------------------------------------------------------------------
// Globals
// Major version of Flash required
var requiredMajorVersion = 9; //OR 10 IF ITS PUBLISHED IN
FLASH 10
// Minor version of Flash required
var requiredMinorVersion = 0;
// Revision of Flash required
var requiredRevision = 115;
//
-----------------------------------------------------------------------------
// -->
</script>
EXAMPLE OF CODE IN THE BODY OF YOUR HTML PAGE:
<script language="JavaScript" type="text/javascript">
AC_FL_RunContent(
'codebase', '
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
'width', 'YOUR SETTINGS',
'height', 'YOUR SETTINGS',
'src', 'VIDEONAME',
'quality', 'best',
'pluginspage', '
http://www.adobe.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'VIDEONAME',
'bgcolor', 'COLOUR',
'name', 'VIDEONAME',
'menu', 'true',
'allowFullScreen', 'true',
'allowScriptAccess','sameDomain',
'movie', 'VIDEONAME',
'salign', ''
); //end AC code
</script>
<noscript>
<object
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"
width="YOURSETTINGS" height="YOURSETTINGS" id="active"
align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="true" />
<param name="movie" value="THENAME.swf" /><param
name="quality" value="best" /><param name="bgcolor"
value="#ffffff" /> <embed src="THENAME.swf" quality="best"
bgcolor="#ffffff" width="YOURSETTINGS" height="YOURSETTINGS"
name="NAMEOFSWF" align="middle" allowScriptAccess="sameDomain"
allowFullScreen="true" type="application/x-shockwave-flash"
pluginspage="
http://www.adobe.com/go/getflashplayer"
/>
</object>
Then upload the HTML to the web and it will fetch the swf and
JS file. The SWF will fetch the skin and the FLV.