HTML file not working ..!

Okay so i`ve created a website on flash mx , converted it into html .. uploaded on domain on member.webs.com.. here is the link of file nawazbaig.webs.com/website2.html .. it shows up the blank page . ? it is running perfectly fine on my computer.. but on domain it is not working.. here is the code of html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>website2</title>
</head>
<body bgcolor="#ffffff">
<!--url's used in the movie-->
<!--text used in the movie-->
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="100%" height="100%" id="website2" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="website2.swf" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<PARAM NAME="SCALE" VALUE="exactfit">
<embed src="website2.swf" quality="high" bgcolor="#ffffff" width="100%" height="100%" name="website2" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash"SCALE="exactfit" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</body>
</html>
"  I would really appreciate your comment on this problem..!

relaxatraja may be right, it could just be your path which is wrong.....
But you are already using a "relative" path... so that can stay the same... it just might be the wrong one.
From an old article on pathing:
Pathing issues
Almost always when it works on the local machine and not the server, it's a pathing problem.
You can put your Flash related files in whatever folders you want, they do NOT have to be in the root, they do NOT all have to be in the same folder. But if you have a problem and if sticking them all in the root folder works, then you know that the issue was a pathing problem.
Just remember that paths used in the .swf become relative to the Web page on which the .swf is placed, NOT it’s physical location.  So for example, if your .swf is in the flash/data folder and you use that .swf on a Web page in the root folder, you are in effect, removing that .swf from flash/data and putting it in root. So if the .swf is loading any related files (xml, images, video, etc), the path used inside the .swf to load the .xml file has to be relative to it's new location in root and then back down into flash/data. This is true even though when testing the .swf by itself, it can be inside flash/data and work just fine, since relative to it's location, the path is just fine, they are in the same folder. But if that same path is used when the .swf is placed on a page two folder levels up, the relative path has changed, the old "same folder" path will not work.
In fact if you are placing the .swf on a web page in a different folder than the .swf is stored in, and that .swf calls external assets, then direct clicking and opening of the .swf in it’s folder should NOT work! That’s because the paths to the external assets should be relative to the Web page and not the physical location of the .swf.
So just be sure that you use addresses relative to the final Web page locations (not physical file locations) and you can put the Flash related files in what ever folders you want.
Best wishes,
Eye for Video
www.cidigitalmedia.com
Best wishes,
Adninjastrator

Similar Messages

  • In IE7 CLSID In HTML File Not Working With 1.4 and 1.5 Plugins Installed

    Thanks in advance.
    I'm using JRE 1.4.2_03 with a CLSID attribute in my HTML file. It works fine with Internet Explorer 6. If I install a newer version of the JRE (i.e. 1.5.0) IE6 still uses the 1.4.2_03 plugin.
    But, when we install Internet Explorer 7, IE ignores the CLSID in the HTML file and starts the 1.5.0 plugin.
    Has anyone encountered this problem? If so, then how do I solve it?
    Thanks.

    Yes, I solved it by using this classid in the <OBJECT> tag in my HTML file:
    classid = "clsid:CAFEEFAC-0014-0002-FFFF-ABCDEFFEDCBA"
    The "FFFF" in the middle tells the IE browser to use the highest build of the major version of the JRE that you specifiy in the clsid. In the case of my example, above, the browser selects the highest build of JRE 1.4.2. But, the catch is that you have to install JRE 1.5.0 (I think it's 1.5.0_07) or later. Just install 1.5.0_11 and it will work. This may seem strange, but, for some reason, Sun didn't implment the fix in 1.4.

  • Locally stored html files not working in default b...

    I use html files transferred from my computer till my Nokia 5800. But after I upgraded to the latest firmware 21-something, the links between the pages don't work anymore. All the links are relative and refer to pages and pictures stored in the same folder. It worked before the upgrade. 
    Any ideas to what the problem might be? 
    The link look like this in the source:
    <a href="_2NameIndex.html">Name</a><br> 

    These files, which display the html snippet in the webpage, are missing :
    http://www.mackenzieproductions.com/Scripts/Widgets/HTMLRegion/Paste.js
    http://www.mackenzieproductions.com/Scripts/Widgets/HTMLRegion/Paste.css
    And this is the widget :
    http://www.mackenzieproductions.com/Mackenzie_Films_files/widget0_markup.html

  • Jsp:include of html file not working

              Hi
              I wrote:
              <jsp:include page="include.html" />
              <% pageContext.include("include.html"); %>
              in my jsp, but there is no output and no error message.
              What could be the problem?
              If I include include.jsp it works.
              Does jsp:include only work with jsp, not with html???
              I am wondering whether our servlet registrations could be responsible. We have:
              weblogic.httpd.defaultServlet=*.jsp
              weblogic.httpd.register.*.jsp=weblogic.servlet.JSPServlet
              weblogic.httpd.register.*.htm=weblogic.servlet.FileServlet
              weblogic.httpd.register.*.html=weblogic.servlet.FileServlet
              so that the default servlet is the JSPServlet, not the ServletServlet. We don't
              want to use the ServletServlet because it can deliver source code.
              What we want to do is a dynamic including of a file, like so:
              <% String s = ...; %>
              <jsp:include page="<%= s %>" />
              Thanks for any help.
              Alex
              

              By changing the weblogic servlets that are registered, I can get it to work. The
              combination that works is:
              weblogic.httpd.defaultServlet=file
              weblogic.httpd.register.*.jsp=weblogic.servlet.JSPServlet
              weblogic.httpd.register.file=weblogic.servlet.FileServlet
              I am surprised that it doesn't work if *.html is mapped explicitly to the FileServlet
              (which would leave the defaultServlet unused). Why is that?
              And why can't I map defaultServlet to "weblogic.servlet.FileServlet" directly,
              without the intervening virtual name "file"?
              What are the security implications of having FileServlet as the default servlet?
              Thanks
              Alex
              

  • Destinations from an HTML file not working with Acrobat XI

    When the link is executed in Acrobat X it opens to the correct destination. When opened with Acrobat XI it doesn't. In fact, when I open the PDF (created with Acrobat Pro X) with Acrobat Pro XI I don't see any destinations... I don't see where to view them if they do exist. I already tried disabling the protected settings in XI and that didn't work. What happens is a dialog for downloading the PDF opens and your only choice is opening the PDF to the first page (instead of the destination). This is also happening on all browsers... so I am suspecting something buried in the Control Panel. Please help.

    Thank you but this doesn't help... I know where the destination pane is... that's how I created them... Acrobat XI is not showing the destinations but the issue is Acrobat XI opening a download dialog instead of following the destination. I think it's an application or Windows issue but I don't see it...

  • Cookies in local HTML files not working

    I'm developing a widget and using Safari as a testing place for development. It is working well, however, I've noticed a problem with cookies.
    I'm temporarily using cookies to set preferences until I move to the widget world where I have a separate place to store preferences. The problem is, this isn't working.
    Cookies don't appear to work for files that are stored locally. I run the same exact page in Firefox and it works fine, but whenever I try to read a set cookie from safari it comes back as null. Also ... there are no errors in the Safari javascript console.
    Is this a limitation of Safari? If so, how do you program preferences for widgets since Apple has clearly stated to use Safari to test widgets when in development?
    This is with the latest versions of Safari (2.0.2) and Firefox (1.5).

    Nah, no use posting code, I'm pretty sure it is just a limitation of the browser, for whatever reason.
    I didn't have that much persistant stuff, so I just moved to the dashboard for development and that worked out okay.
    Here's my final product, if you're interested:
    http://www.apple.com/downloads/dashboard/games/widgzee.html

  • Home button in HTML Help Not Working

    My Home button in HTML Help Not Working.
    Also the Home option from the Options menu does not work. I receive the "This program cannot display the webpage" error.
    I have the correct file name (titlepg.htm) in the Advanced Windows Ptoperties "Default" field and the "Home" field. However, I still receive the "This program cannot display the webpage" error.
    How can I correct this situation? Thanks, your help is appreciated!

    Can you post a couple of screen captures please?
    One where you show the Project Explorer with the desired topic in view. Another where you show the dialog where you specify the Home page destination.
    Another thing you may wish to try is to define a totally new window, assign the values there and ensure you point to the window in the Single Source Layout recipe.
    Oh, and one other thing. Are you using RoboHelp HTML or RoboHelp for Word?
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Little video player (1 playback component, 3 buttons linked to 3 .flv files) not working in the published html! Why?

    Hey everyone out there that is smarter than me. I have made this little prototype video player, and it isn't working. It'll eventually become a nice little player show videos from our summer camp for the last few years, but first I want to make it work in a basic stripped down version.
    There is a playback component with one of the skins right above the three buttons.
    Here's the ActionScript:
    btn1.addEventListener(MouseEvent.CLICK, vid1);
    btn2.addEventListener(MouseEvent.CLICK, vid2);
    btn3.addEventListener(MouseEvent.CLICK, vid3);
    function vid1(e:Event):void{
    vidPlayer.source = "Video1.flv"
    function vid2(e:Event):void{
    vidPlayer.source = "Video2.flv"
    function vid3(e:Event):void{
    vidPlayer.source = "Video3.flv"
    It runs fine when I test in in flash and even the .swf file runs fine alone, but when I put it in a .html file  via Dreamweaver and in the published .html it doesn't run. What up?

    Oh yeah, all the files are in the same directory.

  • Exporting Crystal Report to HTML is not working in Windows 7

    Hi Sir,
    I am trying to export Crystal Report to HTML format using VB.NET code. Functionality is working fine at Windows XP Environment (Save to Disk, Open an Application and Email Attachment). But the same functionality is not working at Windows 7 Environment (both 32-Bit as well as 64-Bit).
    Below is the code to Exporting Crystal Report to HTML in VB.NET.
    Dim CrDiskFileDestinationOptions As New DiskFileDestinationOptions
    Dim CrFormatTypeOptions          As New HTMLFormatOptions
    Dim vFormat As Integer
    Dim CrExportOptions As New ExportOptions
    Dim vRdReport As New ReportDocument
    Dim sfd As SaveFileDialog
    Dim vFileName As String = Nothing
    vRdReport = vRptSource
    sfd = New SaveFileDialog
    If Not (vRptPath = "") Then
        sfd.InitialDirectory = vRptPath
    End If
    sfd.Filter = "Webpage, Complete(.htm;.htm)|.htm|Web Archive, Single file(.mht)|.mht|Webpage, HTML only(.htm;.html)|.html"
    If sfd.ShowDialog = DialogResult.OK Then
        ' Set the disk file options.
         CrDiskFileDestinationOptions.DiskFileName = sfd.FileName.ToString()
    Else
         Return
    End If
    CrExportOptions = vRdReport.ExportOptions
    CrFormatTypeOptions.HTMLFileName = vFileName
    CrFormatTypeOptions.HTMLEnableSeparatedPages = True
    CrFormatTypeOptions.HTMLEnableSeparatedPages = True
    CrFormatTypeOptions.HTMLHasPageNavigator = True
    CrFormatTypeOptions.UsePageRange = True
    With CrExportOptions
                        .ExportDestinationType = ExportDestinationType.DiskFile
                        .ExportFormatType = ExportFormatType.HTML32
                        .DestinationOptions = CrDiskFileDestinationOptions.DiskFileName
                        .FormatOptions = CrFormatTypeOptions
    End With
    vRdReport.Export()
    Catch ex As Exception
            MsgBox(ex.ToString)
    End Try
    Code working fine at Windows XP, But it is not woking in Windows 7 environment.
    Please can anyone share your valuable thoughts or ideas reg. this.
    Thanks in Advance
    Deivanayaga Perumal D.

    user13509659 wrote:
    Run this code to reproduce the issue.Which issue?
    It looks like inheritance is broken in the component hierarchy for JFrame in Windows 7 JDK 1.6.0_23-b05. The only thing remotely related to inheritance in your code snippet is the WindowListener, which does little. See camickr's advice about built-in exit management.
    EDIT - using the post title as a clue, I realize you may be talking about the component hierarchy, and whether the contentPane's background is visible through the upper layers. Instead of guessing, I'd prefer you describe your "issue" accurately (observed vs expected behavior).
    Edited by: jduprez on Feb 10, 2011 1:01 PM

  • Edge.oam animation file not working in Muse

    Anybody tell me what I'm doing wrong?
    I've created an edge animation, published an .oam file and placed it on a Muse wepage (no prob).
    Preview in Muse works beautifully.
    Preview in browser from Muse works beautifully.
    Export Muse to HTML and Edge animation not displaying – looked at the code, shows an iframe with link to edge html, but just not working.
    ...help please

    Someone please help me with this... I dont understand where the src path should point to when updated? Can you give an example path. I am not using edge animate but instead HYPE 3 which is relatively the same thing, exports html animations as an OAM or html file. When I use the OAM in muse it previews fine in browser and in Muse. But when I publish it shows a blank box. I looked at the code and see the iframe pointing to assets/example/example.html.
    I've tried exporting the Muse file as HTML after I've placed the OAM widget in Muse.. Then I navigate to the assets file and open the HTML file and try and locate the iframe code line but it does NOT exist. But if i Publish the site with Muse and OAM widget and use the developers tools I can see the iframe. After that I've tried going through filezilla to the assets folder and opening the HTML file but still NO iframe code line exists. I only find src for .js code.
    PLEASE HELP... would really like to integrate these animations into my projects.
    Thanks

  • WebLogic 9.0 - HTC files not working when specified as a part of cascading

    Same problem as described in:
    http://support.bea.com/application?namespace=askbea&origin=ask_bea_answer.jsp&event=link.view_answer_page_clfydoc&answerpage=solution&page=wls/S-10511.htm
    but resolution does not work for me.
    I have created a mimemappings.properties file in BEA directory BEA\user_projects\domains\myDomain\config\mimemappings.properties with following content:
    htm=text/html
    gif=image/gif
    jpg=image/jpeg
    htc=text/plain
    png=image/png
    CSS file:
    .calendarClass {behavior:url(calendar.htc)}
    Web.xml:
    <mime-mapping>
    <extension>htc</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    I also tried htc=text/x-component.
    Stop / Start of server, Redeploy of War, this does not work.
    Any idea ?

    Thanks Ben!
    That helped. I also was using that
    from the examples, and it did not play well in the HTMLPanel.
    I appreciate the quick assistance, as I am pretty new to Spry. I have been creating version 2 of my website code, and one of the conversions has beenfrom JQuery to Spry for almost everything. Spry is a lot easier to conceptualize, except I completely missed the setting you gave me.
    One of my problems is lack of knowledge on how to see what is happening, or not ahppening with javascript on a page.  I have firebug, and that seems to give me some info.  But when I tried to look at stuff with scripts running on the HTMLPanel, I was unable to see anything.
    Thanks again,
    Jamie

  • TCS2 - Cross References between linked Frame files not working

    Hi,
    All the cross-references in my linked in FrameMaker 9 files work when output in PDF, however, when outputting WebHelp from RoboHelp 8, FrameMaker cross references that reference another FrameMaker file (i.e. not Current) do not work. The format is correct, they appear blue and underlined like every other link/cross-reference, but when moused over in the browser, there's no link to click.  The HTML created by RoboHelp does not point to a file.  For example, here's the HTML for one link not working as shown from within RoboHelp:
    <p class="FM_Bulleted"><span style="font-family: 'Times New Roman'; font-size: 7.0pt;">&#160;&#160;&#160;</span>•<span
         style="font-family: 'Times New Roman'; font-size: 7.0pt;">&#160;&#160;&#160;</span><a><span
         class="FM_Link">Create Supported App from
    Install</span></a><span class="FM_Bold">.</span>
    RoboHelp appears to partially convert the link as <span class="FM_Link"> appears in the HTML  but I think there should be more information in the <a> definition, such as in the HTML created for a link that references a topic created from the same FrameMaker file.
    <p class="FM_Bulleted"><span style="font-family: 'Times New Roman'; font-size: 7.0pt;">&#160;&#160;&#160;</span>•<span
         style="font-family: 'Times New Roman'; font-size: 7.0pt;">&#160;&#160;&#160;</span><a
         href="#XREF_17096_Creating_an">Creating an App</a></p>
    I've ensured all the cross-references in each framemaker file in the book have the same format and are mapped to <$paratext> in the project settings. I've also tried importing the FrameMaker book instead of linking it and the same problem persists.
    Any ideas on how to make RoboHelp create the link correctly?   Any help you can offer would be greatly appreciated.
    Thank you,
    Jacquie Finney

    Most of the major cross reference issues have been resolved in TCS 2 with further improvements in TCS 3.
    Please ensure that you have all the patches of TCS 2 installed on your system.
    If the issue is still there, there could be an altogether different reason for cross reference not working or the issue might have been fixed in TCS 3.
    The reason or workaround can be analysed once the sample files with the issues are provided.
    It will be great if you could share a small sample FM document containing the cross reference and target having the issue. If the cross reference is across documents, then a FrameMaker book along with its FM files can be shared in a zip format.
    You can mail the documents to me at magrawalATadobeDOTcom
    Mayank

  • Powershell, design manager, uploading html file not creating associated master page file

    I am uploading a xyz.html file through powershell for 2 site collections, when .html file is uploaded and published it automatically creates xyz.master file. It is working fine for not publishing sites collection only, for publishing site collection .html file
    is uploaded successfully but it is not creating associated .master file. If I close powershell console and run again it works successfully.
    another interesting thing I noticed that if I specify "spadmin" account which I used to install sharepoint as  site collection primary administrator, all works well, currently I am using "spsiteCollection" account for primary site collection
    administrator and I am having above mentioned issue.
    powershell script is also running with spadmin account.
    I have ensured .html is checked in and publish properly, If I manually unpublish and publish .html file it creates .mater file. What could be the issue?

    Hi,
    According to your post, my understanding is that you have an issue about upload html file to master page gallery.
    I have used the PowerShell contains in the codeplex to upload the files to master page gallery, it works without any issue.
    https://uploadmasterpages.codeplex.com/
    You can check your PowerShell with this article, or use this bat file to upload directly to check whether it works.
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • Link to named anchor in current file not working

    Links to named anchors are not working at this particular site. Works with Konqueror.
    Go to this web site: http://www.kusc.org/playlist/
    Right below the calendar displays is a section "Playing this Hour" and below is list hours for AM and PM. You should be able to click one of the hours and page should skip down to that hour in the playlist. This doesn't work with FIREFOX 7. Has not work since FIREFOX 5 or 6 at least. Works with other browsers.
    Executing FIREFOX 7.0 on openSUSE 11.4. Mouseover shows the link as an anchor with #. Although, the referenced page is not the same. But again, this works with Konqueror on Linux and IE on Windows.

    Something to do with your coding. The page we opens is HTML not a PDF file. When we click on the links, it opens the PDF. I can see that destination tag along with the URL and the PDF is properly bookmarked. So check ur code.

  • SSI Files not working in Opera or Chrome

    Hi Everyone,
    Okay I'm running into a few problems but one especially. I created SSI files in this website and they seem to work well in Firefox and IE8 but when it comes to Opera and Chrome the areas where the info should appear are blank. I'm naming the HTML files as SHTML. Is there aomething I should do as a default for these two browsers. I'm using Dreamweaver CS3
    Thaks
    Steve

    Hi,
    I'm sorry that I didn't post better info, I wasn't thinking. I'll do that in the future.
    Now the good news , I think.
    When I was using ssi files I renamed any page that was using an SSI file with the extension, SHTML. This seemed to work fine in IE & Firefox, but not in Opera, Chrome and Safari. What I DIDN"T do is rename the "index.html" to "index.shtml". I didn't do this because I wasn't using the SSI option on the index page because that is where the original code is, so I thought I didn't have to rename the index file extension to SHTML. Once I renamed the extension to SHTML , all the browsers worked. Does that make sense to everyone?
    Thanks
    Steve

Maybe you are looking for