.swf displaying in preview, but not on actual web page

As above really. I don't really use Flash, but was just trying to put up a little video demo online.
Just dragged the video onto the canvas, published it as an .swf, but when I upload it all and visit the web page, the video clip / swf isn't displaying.
Its fine in the preview though.
The page is here :
http://www.hpwebdesign.co.uk/demo.html
Any ideas what I'm doing wrong?
Thanks.

OK - I didn't think you needed to upload the original video clip.
Anyway - I've recreated my steps.
1. Opened Flash.
2. Created a new ActionScript 3 page
3. File > Import > Video with Load external video with playback component
4. Save file
5. Publish SWF
6. Switch to DW and Insert > Media > SWF
Before switching to DW, it all looks OK in the preview.
How do I get Flash to create the HTML page? I had a quick look through the menus, but didn't see anything....

Similar Messages

  • SWF plays in preview but not in browser

    http://e-supplylink.com/
    The SWF file works pefectly fine in the previewer but on the site the file doesnt. If the file was working properly it would be seen under the "Integration Specialists" header. Can somebody please point me in the right direction??
    <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="150" height="90">
                        <param name="movie" value="Logos.swf">
                        <param name="quality" value="high">
                        <param name="wmode" value="opaque">
                        <param name="swfversion" value="11.0.0.0">
                        <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
                        <param name="expressinstall" value="../../../Scripts/expressInstall.swf">
                        <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
                        <!--[if !IE]>-->
                        <object type="application/x-shockwave-flash" data="Logos.swf" width="150" height="90">
                          <!--<![endif]-->
                          <param name="quality" value="high">
                          <param name="wmode" value="opaque">
                          <param name="swfversion" value="11.0.0.0">
                          <param name="expressinstall" value="../../../Scripts/expressInstall.swf">
                          <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
                          <div>
                            <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
                            <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
                          </div>
                          <!--[if !IE]>-->
                        </object>
                        <!--<![endif]-->
                      </object>

    The code posted above is not the code used on that page:
    Above shows:
    <param name="movie" value="Logos.swf">
    and
    data="Logos.swf
    while code on page has this path to the .swf:
    <param name="movie" value="../raw images/flash/Logos.swf">
    and
    data="../raw images/flash/Logos.swf"
    see the diff?
    And as Martin pointed out, the path to the express install (which can install the flash pluggin) is most like wrong also. But, you really don't even need to use that. But you do need to get the path to Logos.swf right.
    http://e-supplylink.com/Logos.swf
    is the correct path by the way (the code you posted above...Not what's on the site).
    Adninjastrator

  • CF Component work on local computer but not on actual web.

    I'm using CF9 on windows 7 professional. when ever i execute from a form to the action page i get this error:
    Could not find the ColdFusion component or interface VAFOINS_NEW.Componet.display. Ensure that the name is correct and that the component or interface exists.
    It works fine on my local computer, however the Componet is not invoking properly when on the actual web. Any suggestions?
    THE CFC syntax is below:
    <!--- Generated by Adobe Dreamweaver CS5 11.0.4.4993 [en] (Win32) - Fri Sep 23 2011 15:56:13 GMT-0400 (Eastern Daylight Time) --->
    <cfcomponent displayName="volno" hint="List all FCN, NS, FOID etc. Items By way of volno input">
    <cffunction name="volno" returntype="query">
    <cfquery name="volno"> select TRIM(CONCAT(name.fname,' ',name.xholy))AS Brother, name.foiid, fcn.*, nspay.*, Foidpay.*, otherpay.*, CONCAT(otherpay.othpayamt,' - ',otherpay.othpaytitle) AS otherpay, fcnsales.salesid,(fcnsales.salesamt) AS FCN_SOLD, salesdate
    FROM name, fcn, fcnsales, foidpay, nspay, otherpay
    WHERE 0=0
    AND Fcn.fcnvolno = '#form.volno#'
    AND name.foiid= fcnsales.salesfoiid
    AND FCN.fcnid= fcnsales.salesfcnid
    AND name.foiid= nspay.NSPAYfoiid
    AND nspay.nspaydate= fcnsales.salesdate
    AND name.foiid= FOIDPAY.foidpayfoiid
    AND FOIDPAY.foidpaydate= fcnsales.salesdate
    AND name.foiid= otherpay.othpayfoiid
    AND otherpay.othpaydate= fcnsales.salesdate
    ORDER BY name.city desc, name.foiid
    </cfquery>
    <cfreturn "#volno#">
    </cffunction>
    <!---NEW FUNCTION--->
    <cffunction name="total" returntype="query">
    <cfquery name="total">
    SELECT name.*, fcn.*, sum(fcnsales.salesamt) AS FCN_SOLD_This_Issue, salesdate
    FROM name, fcn, fcnsales
    WHERE 0=0
    AND Fcn.fcnvolno = '#form.volno#'
    AND name.foiid= fcnsales.salesfoiid
    AND FCN.fcnid= fcnsales.salesfcnid
    </cfquery>
    <cfreturn "#total#">
    </cffunction>
    <!---NEW FUNCTION--->
    <cffunction name="total_NS" returntype="query">
    <cfquery name="total_NS">
    SELECT SUM(nspay.nspayamt) AS total_ns
    FROM nspay
    WHERE 0=0
    AND nspay.nspayvolno= '#form.volno#'
    </cfquery>
    <cfreturn "#total_NS#">
    </cffunction>
    </cfcomponent>
    My action page which invokes the cfc has the code below:
    <cfinvoke
      component="VAFOINS_NEW.Componet.display"
      method="volno"
      returnvariable="volno">
    <!--- CFC Query --->
    </cfinvoke>
    <cfinvoke
      component="VAFOINS_NEW.Componet.display"
      method="total"
      returnvariable="total">
    <!--- CFC Query --->
    </cfinvoke>
    <cfinvoke
      component="VAFOINS_NEW.Componet.display"
      method="total_NS"
      returnvariable="total_NS">
    <!--- CFC Query --->
    </cfinvoke>
    <cfquery name="total_FOID" >
    SELECT SUM(foidpay.foidpayamt) AS total_foid
    FROM foidpay
    WHERE 0=0
    <!---AND foidpay.foidpaycity='richmond'--->
    AND foidpay.foidpayvolno= '#form.volno#'
    </cfquery>
    <cfquery name="total_other" >
    SELECT SUM(otherpay.othpayamt) AS total_other
    FROM otherpay
    WHERE 0=0
    <!---AND otherpay.othpaycity='richmond'--->
    AND otherpay.othpayvolno= '#form.volno#'
    </cfquery>
    <cfquery name="total_FOIClass_Attendance" >
    SELECT COUNT(CLASSFOIID) AS foic_attendance
    FROM foiclass
    WHERE 0=0
    <!---AND foiclass.classcity='richmond'--->
    AND foiclass.classvolno= '#form.volno#'
    </cfquery>
    <cfquery name="List_Class_Attendance" >
    select trim(CONCAT(name.type,': ',name.fname,' ',name.xholy,' ',name.slave))AS Brother, name.foiid, foiclass.classfoiid FROM name LEFT JOIN foiclass ON foiclass.classfoiid= name.foiid WHERE foiclass.classvolno='#form.volno#' order by name.type, brother
    </cfquery>
    <!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">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>VOL NO Results</title>
    </head>
    <body>
    <!---CFML Below--->
    </body>
    </html>

    My guess is a problem with the dot path notation. I'm always fighting with this. Most likly your local computer is using a virtual directory named VAFOINS_NEW (http://127.0.0.1/VAFOINS_NEW/) and your production site points directly to the VAFOINS_NEW directory (http://somesite.com/). On your live site the dot path notation you are using is expecting http://somesite.com/VAFOINS_NEW/. Dot paths are a pain and whoever invented them should retire as he or she has done enough damage.
    I usually do something like this (I'm typing from memory so there will most likely be syntax error or two but hopefully you'll get the idea):
    <cfset variables.dotpath="" />
    <cfif listFindNoCase(cgi.script_path,"VAFOINS_NEW","/")>
         <cfset variables.dotpath="VAFOINS_NEW." />
    </cfif>
    <cfinvoke component="#variables.dotpath#Componet.display"... />

  • CS4 inserted image shows in browser check but not with actual web site

    I started a web page with CS3 and images were inserted with
    cells show on web page. Now I have CS4. I made set number of rows.
    Each row has text and images. They show up in live view but when I
    search my site and check the page only the text shows. I am so
    confused!!

    Your link goes to...
    http://www.proheatinc.com/company/images/zane-storms2.png
    and is 404 File Not Found. Then another one in the same folder...
    http://www.proheatinc.com/company/images/bill-burnett.png
    pops up no problem.
    Check your file names and link names to verify they are identical. Servers are CaSe SeNsITiVe, so Zane-Storms2.png is not the same as zane-storms2.png as far as your server cares (your local OS is not case sensitive, so a link to either would go to the same file).

  • Flash SWF with Video file will not play in web page

    Hello Flash group,
    I have created a flash video file from a *.wmv file.
    myvideo.flv.
    I have used flash to build an swf file that plays the video
    (with a default skin).
    I have then imported the media file into an html page using
    Dreamweaver. I did not import the flv file, but the swf file with
    the "video" in it.
    The page plays find on my development server (where
    Flash,Dreamweaver, etc is installed).
    When I moved the html page, the flv file, the swf file and
    the skin to my production webserver (linux and apache)
    the flash files do not show up on the web page. The dev
    server is a windows XP running apache 2.2)
    Any ideas on what I need to do???
    thanks,
    eholz1

    It may cause by any of the reason below:
    - You have uploaded the flv file to the wrong directory
    - Your flv file path/name is incorrect. check all case
    sensitive etc.
    - Your web server doesn't support FLV MIME type.
    Another similar topic here:
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=15&catid=194&threadid =1263131&highlight_key=y&keyword1=MIME
    Hope it helps.

  • Applet works fine with JNLP... but not on my web page

    I can create a seperate JNLP for my applet, and it works fine. However, when I try to insert it into a web page, it does not work. I was wondering if this was a common newbie issue, and how I would go about fixing it. I compiled it using the newest J2EE JDK and the newest JSE (downloaded and installed a couple of weeks ago).
    Any help would be greatly appreciated... thank you.

    If you want to insert an applet in a web page you use java plug-in, not java web start. You can use Java Web Start to deploy an applet outside of a browser, but plug-in is still the primary applet deployment method, and the only one that can show an applet in a web page.
    /Andy

  • Substyle of theme is displayed in preview but not in map

    Hi All,
    i am developing a map with the oracle sample schema oe and i want to display customer data based on the two parameters credit_limit and income_level.
    i created two advanced styles:
    for income_level:
    <?xml version="1.0" ?>
    <AdvancedStyle>
         <BucketStyle>
            <Buckets>
                <CollectionBucket seq="0" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_A">A: Below 30,000</CollectionBucket>
                <CollectionBucket seq="1" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_B">B: 30,000 - 49,999</CollectionBucket>
                <CollectionBucket seq="2" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_C">C: 50,000 - 69,999</CollectionBucket>
                <CollectionBucket seq="3" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_D">D: 70,000 - 89,999</CollectionBucket>
                <CollectionBucket seq="4" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_E">E: 90,000 - 109,999</CollectionBucket>
                <CollectionBucket seq="5" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_F">F: 110,000 - 129,999</CollectionBucket>
                <CollectionBucket seq="6" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_G">G: 130,000 - 149,999</CollectionBucket>
                <CollectionBucket seq="7" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_H">H: 150,000 - 169,999</CollectionBucket>
                <CollectionBucket seq="8" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_I">I: 170,000 - 189,999</CollectionBucket>
                <CollectionBucket seq="9" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_J">J: 190,000 - 249,999</CollectionBucket>
                <CollectionBucket seq="10" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_K">K: 250,000 - 299,999</CollectionBucket>
                <CollectionBucket seq="11" keep_white_space="true" type="string" delimiter=";" style="M.VECTOR_CIRCLE_L">L: 300,000 and above</CollectionBucket>
        </Buckets>
       </BucketStyle>
    </AdvancedStyle>and for credit_limit:
    <?xml version="1.0" ?>
    <AdvancedStyle>
        <VariableMarkerStyle basemarker="M.VECTOR_CIRCLE_TRANSPARENT" startsize="5" increment="2">
            <Buckets default_style="M.VECTOR_CIRCLE_TRANSPARENT">
                <RangedBucket seq="0" label="0 - 200" low="0" high="200"/>
                <RangedBucket seq="1" label="201 - 400" low="201" high="400"/>
                <RangedBucket seq="2" label="401 - 600" low="401" high="600"/>
                <RangedBucket seq="3" label="601 - 800" low="601" high="800"/>
                <RangedBucket seq="4" label="801 - 1000" low="801" high="1000"/>
                <RangedBucket seq="5" label="1001 - 1200" low="1001" high="1200"/>
                <RangedBucket seq="6" label="1201 - 1400" low="1201" high="1400"/>
                <RangedBucket seq="7" label="1401 - 999999" low="1401" high="999999"/>
        </Buckets>
       </VariableMarkerStyle>
    </AdvancedStyle>i created a geometry theme with an advanced style:
    <?xml version="1.0" standalone="yes"?>
    <styling_rules>
        <hidden_info>
            <field column="CUST_LAST_NAME" name="Last Name"/>
            <field column="CUST_FIRST_NAME" name="First Name"/>
            <field column="INCOME_LEVEL" name="Income Level"/>
            <field column="CREDIT_LIMIT" name="Credit Limit"/>
      </hidden_info>
        <rule column="CREDIT_LIMIT,INCOME_LEVEL">
            <features> ((instr(upper(income_level), nvl(upper(:param1),upper(income_level))))&gt;0
    and
    credit_limit = nvl(:param2,credit_limit)
    and
    (select sum(order_total) from orders where customer_id = customers.customer_id) &gt; 0)
    and
    (cust_geo_location is not null) </features>
            <label column="CUST_LAST_NAME" style="T.TEXT"> 1 </label>
            <rendering>
               <style name="V.VARIABLE_VECTOR_CIRCLE" value_columns="CREDIT_LIMIT">
                  <substyle name="V.COLLECTION_BUCKET_INCOME_LEVEL" value_columns="INCOME_LEVEL" changes="FILL_COLOR"/>
         </style>
        </rendering>
      </rule>
    </styling_rules>and in the preview of mapbuilder it is showing up with different colors in different circle-sizes.
    BUT
    if i use this theme in my map i only get the different circle-sizes in white. the substyle semms to be not applied.
    i call the theme in the way i usual way:
                var themebasedfoi = new MVThemeBasedFOI('foi_oe_customer','orcldemo_oe.oe_customer_location');   
                themebasedfoi.setBringToTopOnMouseOver(true);
                themebasedfoi.setBoundingTheme(true);
                mapview.addThemeBasedFOI(themebasedfoi);
                mapview.display();if i change the 'mainstyle' from white circle to red circle and reload the map it will display different sized red circles, so it is the right theme i am loading. (btw i only have one them in my db...)
    any suggestions on this issue?
    the used version of mapbuilder is: Version: 10.1.3.3 patch 4
    the used version of mapviewer is: OracleAS MapViewer Version: Ver11_1_1_B090416
    the os is OEL 5.3
    i am glad for any help, thanks in advance :)
    wolfgang
    edit:
    WebLogic Console Outpt while loading the map:
    INFO: *** Oracle MapTileServer started. ***
    20.07.2009 11:39:44 oracle.sdovis.DBSRSCache register
    INFO: Loading SRS information from MDSYS.cs_srs (srid=54004).
    20.07.2009 11:39:44 oracle.sdovis.CacheMgr2 createGeomGroup
    INFO: Creating/replacing a geometry cache group: sdovis_subreg_oe_jdbc:oracle:thin:@orademo:1521:orcldemo : CUSTOMERS_CUST_GEO_LOCATION_PDT_GEOM.
    20.07.2009 11:39:45 oracle.sdovis.DBSRSCache register
    INFO: Loading SRS information from MDSYS.cs_srs (srid=8307).
    20.07.2009 11:39:45 oracle.sdovis.CacheMgr2 createGeomGroup
    INFO: Creating/replacing a geometry cache group: sdovis_subreg_oe_jdbc:oracle:thin:@orademo:1521:orcldemo : CUSTOMERS_CUST_GEO_LOCATION_54004_PDT_GEOM.
    20.07.2009 11:39:47 oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
    INFO: [ OE_CUSTOMER_LOCATION ] sql exec time: 2590ms, total time loading 46 features: 2692ms.
    20.07.2009 11:39:48 oracle.sdovis.theme.PredGeomThemeProducer loadFeaturesInWindow
    INFO: [ OE_CUSTOMER_LOCATION ] sql exec time: 281ms, total time loading 46 features: 409ms.Edited by: Wolfgang on 20.07.2009 11:42

    Hi Wolfgang,
    currently, the substyle parameters are not supported for FOI themes in Oracle Maps. For this reason you are not getting the correct colors for your FOI markers. This support can be added on a future patch. Thanks.
    Joao

  • Swf displays in ie8, but not 7

    I inserted three swf files into my page. One is a progressive video in the main column. The second is a flash menu in a floating right column. The third is a scrolling photo slideshow, also in the right column. All three display properly in IE8, but none of the swf elements display in the right column on IE7. The video does play in the main column though. Any ideas?

    please replace your code for this section with this (this works on my tests with IE 6 7 8, Safari, FF, Opera, Chrome):
    <h4>Navigation</h4></td></tr>
    <tr>
    <td align="center">
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="141" height="217" id="FlashID" title="menu">
            <param name="movie" value="http://sspaonline.net/newmenu.swf" />
            <param name="quality" value="high" />
            <param name="wmode" value="opaque" />
            <param name="swfversion" value="8.0.35.0" />
            <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
            <param name="expressinstall" value="../../Scripts/expressInstall.swf" />
            <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
            <!--[if !IE]>-->
            <object type="application/x-shockwave-flash" data="http://sspaonline.net/newmenu.swf" width="141" height="217">
              <!--<![endif]-->
              <param name="quality" value="high" />
              <param name="wmode" value="opaque" />
              <param name="swfversion" value="8.0.35.0" />
              <param name="expressinstall" value="../../Scripts/expressInstall.swf" />
              <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
              <div>
                <h4>Content on this page requires a newer version of Adobe Flash
                  Player.</h4>
                <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
              </div>
              <!--[if !IE]>-->
            </object>
            <!--<![endif]-->
          </object></td></tr>
    <tr>
    <td align="left">
    <h4>Our Staff</h4></td></tr>
    <tr>
    <td align="center">
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="250" height="159" id="FlashID2" title="staff">
            <param name="movie" value="http://sspaonline.net/StaffSlide.swf" />
            <param name="quality" value="high" />
            <param name="wmode" value="opaque" />
            <param name="swfversion" value="8.0.35.0" />
            <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->
            <param name="expressinstall" value="../../Scripts/expressInstall.swf" />
            <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
            <!--[if !IE]>-->
            <object type="application/x-shockwave-flash" data="http://sspaonline.net/StaffSlide.swf" width="159" height="223">
              <!--<![endif]-->
              <param name="quality" value="high" />
              <param name="wmode" value="opaque" />
              <param name="swfversion" value="8.0.35.0" />
              <param name="expressinstall" value="../../Scripts/expressInstall.swf" />
              <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
              <div>
                <h4>Content on this page requires a newer version of Adobe Flash
                  Player.</h4>
                <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
              </div>
              <!--[if !IE]>-->
            </object>
            <!--<![endif]-->
          </object><div>
    </td></tr>
    <tr>
    <td align="left">
    Also edit the JavaScript code at the bottom of the page to read:
    <script type="text/javascript">
    <!--
    swfobject.registerObject("FLVPlayer");
    swfobject.registerObject("FLVPlayer1");
    //-->
    </script>
    you are missing the Scripts/expressInstall.swf but this should not be a problem at this point.
    HTH
    PZ

  • SWF plays in preview but not when published

    I have seen similar issues posted but none dealing with this
    precise problem. I have two SWFs, one of which loads at the end of
    the other. When SWF 1 is played back in Flash or when published in
    HTML format, SWF2 plays as is should. When SWF is exported to
    another program (e.g. Frontpage or Ektron, CMS), SWF2 will not
    play. Interestingly, when SWF2 is exported to the other program on
    its own, it plays fine so font support is not an issue.
    I have also tried altering the level in the LoadMovieNum
    script (0, 1, 2) as well as republishing both SWFs from the
    original FLA file. So far zippo.
    Any ideas??

    At least on my side it only plays the first video and does not progress.  There are twenty-five videos after this, they are all very short  but they progress.   Is this progressing for you?  Perhaps it is my computer if so. Please let me know.
    Thanks again,
    Mark.

  • Applet loads/plays in preview, but not on live web host server

    When I use FireFox 3 to browse to the “flexdc08.htm” document (yes, javascript is turned on) I get this message in the browser status bar – “Applet llp3 started”.
    But, only a blank page is ever displayed, nothing ever gets loaded, the application never starts.
    Specifically, I am questioning this line of code in the “flexdc08.htm” file –
    <APPLET CODE="llp3.class" ARCHIVE="llp3.jar,skinw.jar" width=664 height=453 MAYSCRIPT>
    The files “llp3.class” and “skinw.jar” do not exist. “llp3.jar” does exist.
    Here is a complete listing of the code in “flexdc08.htm” –
    <HTML><HEAD><TITLE></TITLE></HEAD>
    <BODY BGCOLOR='#FFFFFF' leftmargin=0 topmargin=0 rightmargin=0>
    <DIV ID='TDemoID' STYLE='position:absolute; left:10; top:10; visibility:visible'>
    <APPLET CODE="llp3.class" ARCHIVE="llp3.jar,skinw.jar" width=664 height=453 MAYSCRIPT>
    <PARAM NAME="ProjectFile" VALUE="flexdc08.ctd" />
    <PARAM NAME="LB" VALUE="0xFFFFFF" />
    <PARAM NAME="TC" VALUE="0x000000" />
    <PARAM NAME="SynchLoad" VALUE="1" />
    <PARAM NAME="FromSkin" VALUE="1" />
    <PARAM NAME="LoadingMsg" VALUE="Loading Demo..." />
    <PARAM NAME="ExpiredMsg" VALUE="Time limit expired." />
    <PARAM NAME="CorruptedMsg" VALUE="Demo File is corrupted." />
    <PARAM NAME="LoopMsg" VALUE="Loop" />
    <PARAM NAME="ProjectName" VALUE="Project Name" />
    <PARAM NAME="ProjectVer" VALUE="Project Version" />
    <PARAM NAME="Author" VALUE="Author" />
    <PARAM NAME="AURL" VALUE="Author's URL" />
    <PARAM NAME="AEMail" VALUE="Author's E-Mail" />
    <PARAM NAME="StopMsg" VALUE="STOP! The HTML page has been modified." />
    <PARAM NAME="IsLoop" VALUE="0" />
    </APPLET>
    </DIV>
    </BODY></HTML>
    And, here is a complete listing of all of the files on the web host server –
    autorun.inf
    autostart.exe
    autostart.ini
    flexdc08.ctd
    flexdc08.htm
    flexdc08_1.au
    flexdc08_10.au
    flexdc08_11.au
    flexdc08_12.au
    flexdc08_13.au
    flexdc08_14.au
    flexdc08_15.au
    flexdc08_16.au
    flexdc08_17.au
    flexdc08_18.au
    flexdc08_19.au
    flexdc08_2.au
    flexdc08_3.au
    flexdc08_4.au
    flexdc08_5.au
    flexdc08_6.au
    flexdc08_7.au
    flexdc08_8.au
    flexdc08_9.au
    llp3.jar
    playbutton.gif
    The applet starts and plays fine when previewing from within Dreamweaver. It's just when it is published o the web host server and tried to access from there in a browser that it will not start.
    Is there a good way to debug the applet startup?
    These files were provided to us from a vendor on a CD, which plays when inserted into the PC drive.
    Thanks,
    Mark

    Are you sure you are uploading the pages to the correct location?
    Could you post a screen capture of your expanded files window, showing the remote server and local file structures?
    I'm guessing they're not identical and that you may be uploading to a redundant root folder.

  • My site works in Composer preview, but not on the web.

    I have just created a site w/ composer(through mozilla) and it works when i preview the index.html in the mozilla browser. So I am now using the fetch demo to ftp transfer my files to my domain(www.swansondesignline.com) which i registered through nameroute.com. when i view my page everything works except for my images. yes, they are all .jpeg & .gif....no, there are no spaces in the file names....no, i have not changed the location of these files. any help?

    Looks fine here too. However, since this discussion forum is for iWeb, you may find better support in a forum that is specifically for composer.

  • My HP Deskjet 1510 All-in-One Prints Test Page But not emails or Web Pages, ect

    My Deskjet 1510 All-in-One Printer is Hooked up. All tests show a Green Arrow, It is Turned on, and Online. It will Print a TEST PAGE, but nothing else. I have Run the HP DR Support program several times to no avail. No Error Codes or Signs appear. It simply will NOT WORK other than printing a TESTPAGE or Scanning Copies on the Printer/Copy Machine. Please Help. I have been trying to get it to work for a week. It IS a New Printer. I have tried it on 2 seperate Computers which work well with other Brands of Printers. One Runs Windows 7 Home Premium 64 Bit, Acer Aspire Desktop. The Other a Dell T5400 running Windows 7 Professional 64 Bit . Printer is set as DEFAULT. ALL SOFTWARE is UPDATED AND INSTALLED. It says it is installed properly, and that it is Hooked up Properly, Yet it will NOT work properly. Thank you.

    Welcome to the HP Community , I read through your post about the printing issues you have been having, and I hope to help you! Seeing how the printer will make copies and test print tells us that the printer itself is fine and there is no hardware issues. However, seeing how printing from two different computers will not work, flags a software problem on the computers. Please try out the steps below and get back to me with the results and we will go from there. If you did not install the Full Driver, run the HP Printer Install Wizard for Windows to search and install the complete driver and software. This will need to run on both computers individually. Manually restart the print spoolers on the computers:1. Click Start
    2. Type "Services" in the search field.
    3. Open SERVICES
    4. At the bottom, click "Extended View"
    5. Search for Print Spooler
    6. Right-click it and choose Properties
    7. Select as Automatic in the drop down box, close the Window
    8. Right click on Print Spooler and choose "Stop", wait until it stops and then right click again and "Start".
    9. Close out of Services and try printing from Notepad.10. Try printing from a web browser now, if there is a problem with the print, try a different web browser.  Show thanks for my reply to help you today by hitting the "thumbs up" icon below!I hope to hear from you, good luck! 

  • Standard text displayed correctly in print preview but not in print

    Hi,
    I have a script in which a standard text has to be printed in the output.
    The standard text contains some german characters.
    These characters are displayed correctly in print preview but not in print.
    The text is maintained in 3 languages DE,EN and Russian.
    The same text is being printed in some standard report. But that is displayed correctly both in print and print preview.
    Please suggest something.
    Regards,
    Richa Aggarwal

    Hi Richa,
    Check this document from SAP: [help doc|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/f0652a95-5f0b-2a10-5aba-c085f8bbe6d6?QuickLink=index&overridelayout=true]
    It indicates that you have to be sure to select "Unicode" fonts for your SAPScript form to ensure the proper printing of "Unicode" characters.  If a character does not display then that means it does not exist in the font that you are using.
    Regards,
    Ryan Crosby

  • Button hyperlinks work in project preview but not in published .swf

    Captivate 6, button hyperlinks work in project preview but not in published .swf, the cursor changes the “the hand” but the hyperlink does not redirect.
    Any ideas?
    Like I said my buttons work great in preview mode after publishing, one click and the PDF opens in a new browser window. Open the project through the published .swf files and the links will not work.
    Using Captivate 6 on WIndows 7

    Hello,
    Welcome to Adobe Forums.
    Once your project published, add the .swf file in Flash Global Setting :
    1) Right Click on the content (Published .swf file) and click on Global Settings
    2) Go to Advanced Tab and Click on Trusted Location Settings  (Scrool down to see this button)
    3) Click on "Add" button and then "Add file", browse for the Captivate 6 published file and click on OK
    4) Launch the .htm file again (Location where Captivate publish your project)
    Hope this helps !!
    Thanks,
    Vikram

  • Load swf works in Publish Preview but not when published

    Hi Folks,
    I having a problem where im trying to load two 1mb SWF movies into my Flash piece. It works fine in Publish Preview but not when I finally publish. I get this error in IE:
    SecurityError: Error #2000: No active security context.
    I have googled around and there is some talk online of a hack where by you get a timeout to overcome this. However im not so technical do I dont really know how to do this to my code in AS3. My code at the moment is below.
    Any help would be much appreciated and rewarded with Karma
    movieClip_12.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_9);
    var fl_Loader_9:Loader;
    //This variable keeps track of whether you want to load or unload the SWF
    var fl_ToLoad_9:Boolean = true;
    function fl_ClickToLoadUnloadSWF_9(event:MouseEvent):void
    if(fl_ToLoad_9)
      fl_Loader_9 = new Loader();
      fl_Loader_9.load(new URLRequest("search.swf"));
      addChild(fl_Loader_9);
    else
      fl_Loader_9.unload();
      removeChild(fl_Loader_9);
      fl_Loader_9 = null;
    // Toggle whether you want to load or unload the SWF
    fl_ToLoad_9 = !fl_ToLoad_9;
    movieClip_14.addEventListener(MouseEvent.CLICK, fl_ClickToLoadUnloadSWF_10);
    var fl_Loader_10:Loader;
    //This variable keeps track of whether you want to load or unload the SWF
    var fl_ToLoad_10:Boolean = true;
    function fl_ClickToLoadUnloadSWF_10(event:MouseEvent):void
    if(fl_ToLoad_10)
      fl_Loader_10 = new Loader();
    fl_Loader_10.load(new URLRequest("refunds.swf"));
      addChild(fl_Loader_10);
    else
      fl_Loader_10.unload();
      removeChild(fl_Loader_10);
      fl_Loader_10 = null;
    // Toggle whether you want to load or unload the SWF
    fl_ToLoad_10 = !fl_ToLoad_10;

    I think this is either a problem with my site preLoader or my external .swf Loader. I was checking out the bandwith profiler and saw something weird and I wondered if anyone could explain...I've added a picture. I have a blank frame on only my actions layer to export classes to and it seems that frame 2 is "bleeding" into frame 1. Could this be my problem? Why would this happen? Thanks

Maybe you are looking for

  • How many computers can I install PSE10 on? How about PSE 11?

    Wondering if I need to uninstaal from old laptop before installing on new one.. Thx, sophie

  • Problems installing Mac OS X v.10.3

    This is for a friends PowerPC G4. Its running v10.2.8 and I have the install discs for v10.3. When I go to install 10.3 I get a message bundled software cannot be installed on this computer. The computer specs check out OK so I don't know what the pr

  • How to run a .bat code?

    how to run a .bat code? I have a code ,batch (.bat) in richtextbox1, and want , to text(code .bat) in richtextbox1 it was launched in the console cmd without the use of saving a file with this code and run it

  • FI BUSINESS CONTENT

    Hi Guys.,                I want to find FI business contenet datasources & ODS's & CUBES "which are regularly used in any business". Can anyone send me in detail, i will be greatfull for your input.          or else can you give me URL, where i can f

  • Can't Start Weblogic 8.1

    Hi Folks, I am configuring SSL for WebLogic on port 7002. From the Web Console I disabled port 7001 and now Web Logic would not start. Could you please give some info where do I go to enable the port 7001 so at least I can start the WebLogic. Thanks