how to link to subfolder html

Aknox

New Member
I have uploaded an html page and two swf files into my SUBFOLDER on my site.
When I write in the browser: http: www .mysite.com/folder/my.html
I see nothing.
I have to write this to see the individual swf files:
http: www .mysite.com /folder/swf1.swf
http: www .mysite.com /folder/swf2.swf

Can somebody explain to me why I cannot view the html directly?
it's blank.

Thanks!
 

LouTheDesigner

New Member
It's almost certainly due to a failure to upload the necessary Javascript files. I bet the SWF files work locally right? Do you happen to be using Dreamweaver? If so, you should try:

http://www.youtube.com/watch?v=jlbyUGjjrXc

If not, just send me your exact file paths and names of your swf objects, and I'll generate the necessary code for you.


-Lou
 

cools4u

New Member
just check the path u have put for SWFs files in your webpage...as it seems ur webpage files and swfs files are located in the same folder so there must be a problem of the path u have mentioned for swfs files. Try using the path: "~/swf1.swf" and "~/swf2.swf" instead of just "swf1.swf" and "swf2.swf" in webpage where u have included flash files.....
 

dynacameron

New Member
An example will probably make things a lot clearer.
Subfolder example
Example of website organization using subfolders


You can see the organization of an imaginary website www.classy-car-stuff.com above. There are four subfolders, one each for support files and images, one for pages about Ford cars, and one for pages about Porsche cars.

If the Ford Mustang page was included in the navbar, the navbar link would have to give the full URL http://www.classy-car-stuff.com/ford/mustang.shtml

The link to the navbar virtual include would be
<!--#include virtual="../support-files/navbar.html" -->

Without the ../ the program would look for a subfolder called support-files inside the folder of the page you were currently on. If you were on the Ford Mustang page and clicked on a navbar link, the program would look in the ford folder for the support files folder.

With the ../ the program goes up one folder to the classy-car-stuff.com folder, and looks for the support-files subfolder there.

With the virtual include placed in the subfolder support-files you need to have that in the path to the link i.e. support-files/navbar.html

If navbar.html was not in a subfolder but the car pages were, the virtual include link would be <!--#include virtual="../navbar.html" -->

With no subfolders at all the virtual include link would be
<!--#include virtual="navbar.html" -->
 

kumarimcs

New Member
insert the below code in to your HTML file...I think this will help you...if not sorry....

<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="flashwidth" height="flashheight">
<param name="movie" value="filename.swf" />
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="filename.swf" width="flashwidth" height="flashheight">
<!--<![endif]-->
<param name="quality" value="high" />
<param name="wmode" value="opaque" />
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>
 
Top