Html snippet works w/in iweb but NOT when site is live & online @$#!

help!? I have had a flash based slide show working on my iweb site for some time I used iweb enhancer to make it work w/ iweb 06 - now in 08 the "enhancer" doesnt work. The html snippet should & seems to...I am able to get the pages to behave very well while IN iweb the slide shows load while the program is active & when I publish the site to a folder the site works great - UNTIL I upload it and try to view it online THEN it doesnt work properly.
I have a google map snippet that works fine live OR when browsing from the hard drive/folder WHY wont the snippets work when they are uploaded if they work ON my computer?????
site is www.austin-studios.com click on seniors OR children...
-thanks in advance

Phil,
Everything is working fine on my end too. (OSX 10.5.2) Tried your site on Safari 3.1 / Netscape Navigator 9.0.0.3 / Firefox 2.0.0.9 and Camino Version 2007022813 (1.0.4)... each one ran your snippets with out fail
Would emptying cache on your computer help?
Good Luck,
John

Similar Messages

  • Using document.getElementById to change an element size works in iWeb but not when site published

    I am trying to use an HTML snippet to construct a "popup" to show explanatory text on iWeb windows. This is the code:
    <div id="divName"></div>
    <style type="text/css">
    /*<![CDATA[*/
    #divName {
         border:solid 0px #000;
         text-align:left;
    /*//]]>*/
    </style>
    <script type="text/javascript">
    //<![CDATA[
    function mouseOver()
        var el=document.getElementById("divName");
                       el.style.width=400+"px";
                       el.style.height= 200+"px";
                       el.style.margin="auto";
                           el.style.backgroundColor="#ffffff";             
              el.innerHTML="this is a bit of text, and this is some more";
    function mouseOut()
        var el=document.getElementById("divName");
                       el.style.width=80+"px";
                       el.style.height= 20+"px";
                       el.style.margin="auto";
              el.innerHTML=" ";
                           el.style.backgroundColor="";             
    window.onload=mouseOut;
    window.onmouseover=mouseOver;
    window.onmouseout=mouseOut;
    //]]>
    </script>
    This works o.k. when tested inside iWeb. When the mouse is rolled over the element it is enlarged, the background colour changed and the text displayed. However, when I publish the site the background colour changes and the text is displayed BUT the size of the element remains set to the size set in the "mouseOut" function. On one occasion after publishing it did actually work, but mostly it doesn't!
    What am I doing wrong?
    Incidentally, when testing under iWeb, the mouseOut function sometimes doesn't shrink the element back to its original size. Mostly it does, but when it doesn't the background has still been made transparent and the text removed. It only appears to be the height and width functions that are failing!

    Here's how I started :
    http://www.wyodor.net/Ajax/Ajax.html
    But to avoid having to edit the page after editing the iWeb page, i figured out a way to do it with a JavaScript :
    http://www.wyodor.net/mfi/Maaskant/How_To.html
    The magic word is : unique word. Then replace it with your own code.
    Then I advanced it a bit to this :
    http://www.wyodor.net/_Demo/Fancy/Dynamic_Text.html
    And here's an explanation what the HTML Snippet does :
    http://www.wyodor.net/blog/archives/2009/07/entry_213.html
    You may have to learn HTML/CSS/JavaScript/DOM/AJAX and how iWeb creates its pages.

  • Fixed headers while scrolling works fine in bids but not when deployed to reportserver

    Hi, I am using SQL Server 2008 R2 & deploying a report to reportserver with fixed headers while scrolling, this works fine in bids but not when deployed to reportserver. We are IE 9.
    Thanks in advance...............
    Ione

    Hi ione721,
    Since you have identified the 2 xml files are identical, according to my knowledge, there maybe a compatibility issue with IE 9 and SSRS 2008 R2, so I suggest that you could run the report in compatibility mode. Please make sure you have turned on Compatibility
    View in Internet Explorer 9 by following steps:
    When Internet Explorer recognizes that a webpage is not compatible, you will see the Compatibility View button on the Address bar. Try clicking it.
    When Compatibility View is turned on, the button changes from an outline to a solid color when you view the page.
    The following screenshots are for your reference:
    If you have any questions, please feel free to let me know.
    Best Regards,
    Wendy Fu

  • Podcast - works on iTunes page but not when subscribed

    Hi, I produced my podcast, submitted the feed through iTunes store and was validated. However, it happens so that people can listen to the podcast on iTunes page but not when they subscribe to it and try to download. error points to URL issues apparently. Help.

    It works perfectly well for me. On subscribing I saw all three episodes and downloaded and played Episode 2 without any problems. The only explanations I can suggest are that either some of your subscribers are having some sort of technical issue at their end: or that your server is intermittently sulking and failing to respond to requests. Try playing the episode from this link a few times on spaced-out occasions and see whether you ever get a failure:
    http://thecricketcouch.com/CouchTalk/CouchTalk-AntSims-SanaKazmi-062611.mp3

  • 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

  • HTML Mashup works fine in Silverlight, but not in UI5

    Hello community,
    we are building an integrated Customer Service Management solution for a Client of ours, via the SAP Cloud for Customer platform (solution for Services).
    Currently, we are trying to embed some external Business Process activities in our Service Tickets UI Screens, by using HTML Mashups. Our reference has been the standard Cloud Application Studio documentation, and some well-written articles here on the SCN, such as the following: HTML script mashup - launched from an Embedded Component by Vinita Sinha.
    In our solution, the HTML Mashup has been connected via a Port Binding interface to the C4C UI Layer, in a way to pass it some relevant information such as the Ticket ID, the Customer ID and the Cause Category ID, as shown in the picture below:
    We built a custom Port Binding object, but if you use the Standard "Ticket Information" port Binding (in category "Productivity & Tools"), the effect will be the same. The Standard Port Binding we used in the Mashup Authoring configuration floorplan is the following:
    In addition, we discovered that, in our case, this Mashup development works just in Silverligh Web Interface, but not in UI5. While in Silverlight we are able to consume and correctly interact with our Mashup, in UI5 we can see just an empty pane stuck at the initial "Loading..." screen, as shown below:
    We opened an incident with the SAP Support for our system, and we have been told to try to build the Mashup can work just with no Port Binding specified. Indeed, if we remove the Input Port Binding from the Mashup configuration, the screen seems to work fine even in UI5, as shown below:
    Unfortunately, this technical constraint does not cover sufficiently our Business Scenario, because the Mashup should be initialized with our Service Ticket (and Customer) data.
    Has anybody ever experienced this kind of issue? And how did you solve it? If it has no resolutions, is there available any possible workaround?
    Thanks a lot for your contributions.
    Cheers,
    Davide

    Hi Pragya,
    thank you for the update.
    Another question: could you please give us any reference about these corrections you told about? Maybe they could be relevant in our case too.
    Our raised incident number is: 3100851983
    Kind regards,
    Davide

  • Hyperlinks works fine in iweb, but not on web after upload to ftp

    I have set up hyperlinks in iweb, but they don't work in RockMelt, Firefox or Safari.  I'm using an ftp under the domain name of the website.  Any ideas on why this won't work?

    This covers the whole page...
    http://www.innerflamefilms.com/bio_files/shapeimage_3.png

  • Spy Collapsible Pane Works in Preview, but not when I put it online

    Hello,
    I am trying insert collapsible panels at
    this
    site. They work fine in all the browsers when I preview them, but
    they do not work online. I am very new to dreamweaver and could use
    any help. Thanks

    nhw1908 wrote:
    > I am trying insert collapsible panels at
    >
    http://www.udel.edu/History/testgrad/prospective/prostud.html
    site. They work
    > fine in all the browsers when I preview them, but they
    do not work online.
    You haven't uploaded SpryCollapsiblePanel.js.
    Another problem with your page is that you have applied
    styles to your
    library items. This results in style blocks being embedded in
    the body
    of the page, which creates invalid code. You should use
    Design Time
    Style Sheets to apply styles to library items (press F1 and
    search the
    help system to find out how to use them).
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • Navigational Bar Works Perfect In iWeb, But Not Online...

    To whom it may concern,
      I am having an issue with the navigational bar working online with my website. In iWeb everything looks and works perfect when tested and all hyperlinks are active, but when it is published the Home page is all that comes up and the Navigational menu will not highlight, show rollover, turn the cursor into a hand, or open the other pages. I have tried to fix the issue, unsuccesfully, by arraging differently, removing the custom toolbar, making sure nothing is layered improperly, etc..getting frustrated and need help.
       The Website is: http://wicked-waters.com/Wicked_Waters/Home.html
    Thank you in advance!

    Yes, frustration. iWeb has that effect on people.
    Anyway, this is covering the links :
    http://wicked-waters.com/Wicked_Waters/Home_files/WickedWatersCompassWorksOfArts eaweedgrey.png
    Move it down and/or remove the white space.
    And read this for an explanation and a solution :
    http://www.wyodor.net/Tutorials/iWebDemo/z-Index.html

  • HTML Rendering works on UIX-JSP but not UIX-XML or BC4J-JSP

    I built a "custom" renderer following the HOW TO document for HTML rendering. I made a "Drop Down" list that works in a test UIX-JSP application. When I try to attach the DynamicListInputField class to a project created under UIX-XML or BC4-JSP the rendereing does not take affect. No errors, the application runs fine, just no rendereing.
    I made all three projects from the same VO's and the same DynamicListInputField.java. The three projects were Wizard Based and created with:
    "Business Componets UIX XML Application" from the UIX XML Category
    "Business Componets JSP Application" from the UIX JSP Category
    "Business Componets JSP Application" from the BC4J JSP Category
    What is wrong?
    TIA,
    Ed.

    What error you are getting...please provide error details.
    It is working fine for me.
    Rgds
    Bala Murali

  • Images enlarge and movies play in iweb, but not when published

    Everything works fine in the program, but when published to site or folder, photos are there, but won't enlarge. The movie thumbnail shows with the little movie icon in the corner, but clicking does nothing.

    On all of your pages  you have an image that appears to cover the photos preventing them from being clicked on.
    Move it to the back via the Arrange menu or get rid of it.
    How did you add the videos to the page?  If you just dragged them onto the page or used the movie page then iWeb will have to upload them when it publishes the page and all will load when the page is accessed which can cause long loading time for the page. 
    Also thre are some files missing for the TV page as seen in the Activity window (Command+Option+A) for the page. Publish the site to a folder on your hard drive and open it there.  Check to see if the movies play OK (after you fix that overlaying image issue). If they do then the problem lies in the uploading of the files.
    If those files are Quicktime then the viewers must have Quicktime installed on their computer in order to view them.  See this page on Roddy's iWeb for Musicians site for methods of presenting movies that will let all computers view them: Player-Showcase.html.  See the list at the right for different players you can use.

  • Flash works in Flash editor but not when puiblished

    Hi
    I have got my flash working fine in the editor but when I
    publish it, neither opening it in IE from the hard drive, nor from
    the internet works.
    The animation works fine, but there should be images loaded
    onto the animated squares and there's not.
    Any thoughts?
    Thanks

    LLuis12 wrote:
    > Hi
    >
    > I have got my flash working fine in the editor but when
    I publish it, neither
    > opening it in IE from the hard drive, nor from the
    internet works.
    >
    > The animation works fine, but there should be images
    loaded onto the animated
    > squares and there's not.
    My guess is your paths are wrong to the loaded content. Done
    for local view
    not for html. Make sure the paths to files are a ok.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Works fine in debug but not when published

    So I have simple navigation code setup to step through frames (I'm using Flash instead PowerPoint--too many pictures that are PSDs and illustrations that are AIs to do the conversions over to something PowerPoint understands).
    The code:
    stop();
    stage.addEventListener(KeyboardEvent.KEY_DOWN, slideNav);
    function slideNav(event:KeyboardEvent):void
    switch (event.keyCode)
      case Keyboard.DOWN:
       nextFrame();
       break;
      case Keyboard.UP:
       prevFrame();
       break;
      case Keyboard.HOME:
       gotoAndStop(1);
       break;
      case Keyboard.END:
       gotoAndStop(this.totalFrames);
       break;
    When I test it using the debug (Ctrl+Shift+Enter) it works fine.  When I publish it, the up and down arrows work but the Home and End keys do not work.  They do nothing, no error messages, nothing.
    Using Flash CS4 Pro 10.0.2.  ActionScript 3.  Windows 7 64-bit.
    Any suggestions?
    Thanks.

    Nevermind.  That was stupid of me.  Have to disable the keyboard shortcuts or it doesn't work.

  • Report works in Crystal Reports, but not when scheduled in Crystal Server

    Hi,
    I have a pretty simple report designed in Crystal Reports 2008. Basically it shows a list of call notes (memo field) from customer activities in our CRM system. The report works fine in Crystal reports, but when run or scheduled in Crystal Server 2008 the output is always blank. Furthermore, the page format etc. is "lost" in crystal server, so that the output is PDF of a quadratic blank sheet (not my standard A4 format)... Exporting to other formats - excel, Word etc. all gives the same result.
    I have tried to strip out various formulas, formatting etc from the report, but nothing helps. Which leads me to thinking that the real problem is that the report contains a memo field? Anyone else had this problem?
    wkr
    Claus
    Edited by: Claus Poulsen on Nov 9, 2010 3:34 PM

    Hi Claus,
    I've had issues between what Crystal does and what the Report Server does.  To resolve this, we found out Crystal Reports 2008 latest service pack has some things that will fix Server 2008 and they aren't in the latest Server update. 
    We updated Crystal Reports 2008 on our machines.  Installed the latest update for Crystal Server and then installed Crystal 2008 on the Report Server and installed the Crystal Reports 2008 update.  A lot of our compatibility issues went away after that. 
    Good luck,
    Brian

  • FM CRM_PRIDOC_READ_OW works in source system but not when executed from BW

    Hello All,
    I have extended an extractor in the source system by adding additional fields.
    One of the FM I've used is CRM_PRIDOC_READ_OW. When I run an extraction test in the source system eveything works and data does populates into the new fields.But when I run the infopackage from the BW side, I get an error message which saids the transaction has been terminated. I've been able to trace and pinpoint the possible cause of the error. When I do not call this FM, the infopackage finishes but I do not get data for the new fields and when I do call this FM, I get the error.
    Has anyone experiance this issue before?
    Your assistance will be much appreciated. Here is a portion of the code I wrote:
      loop at I_TABLE into l_s_ZASCRM_OPPT_I.
        lv_guid = l_s_ZASCRM_OPPT_I-GUID.
        lv_item_guid = l_s_ZASCRM_OPPT_I-ITEM_GUID.
        call function 'CRM_PRIDOC_READ_OW'
          exporting
          iv_header_guid = lv_guid
          importing
          ES_PRIDOC = ls_pridoc.
        loop at ls_pridoc-PRIC_COND into ls_pric_cond.
          if ls_pric_cond-kposn = lv_item_guid.
            case ls_pric_cond-STUNR.
              when '40'.
                l_s_ZASCRM_OPPT_I-zz_gpm_ttl_i = ls_pric_cond-kwert.
              when '55'.
                l_s_ZASCRM_OPPT_I-zz_gpd_ttl_i = ls_pric_cond-kwert.
              when '60'.
                l_s_ZASCRM_OPPT_I-zzfy_sp_i = ls_pric_cond-kwert.
              when '70'.
                l_s_ZASCRM_OPPT_I-zzfy_gpm_i = ls_pric_cond-kwert.
              when '80'.
                l_s_ZASCRM_OPPT_I-zzfy_gpd_i = ls_pric_cond-kwert.
            endcase.
          endif.
        endloop.
        append l_s_ZASCRM_OPPT_I to l_s_ZASCRM_OPPT_Itab.
        clear l_s_ZASCRM_OPPT_I.
      endloop
    Thanks,
    Jeff

    Hello Geo!
    Thank you for your question. I think we mapped all the systems you show. Always the same error. Concerning your systems my transport log would say:
    Source system R3DEV does not exist
    We mapped this.
    Any ideas? Is there maybe something in customizing to do what could be forgetten? The system is newly connected and there have never been a transport compounded to this source system before.
    Best regards,
    Peter

Maybe you are looking for

  • HT4528 The sound on my iphone 4 doesn't work, how do I fix?

    The sound on my phone has stopped working.  Went to play music and didn't work.  Adjusted all side buttons, still doesn't work. Won't let me turn up volume.  Silent button is off. 

  • ABAP Web Dynpro: Application Configuration vs Admin Personalization problem

    Hi, I created an application configuration for the application MT_ORDER_APP with a component configuration on RPLM_MT_ORDER_COMP.  I changed several Labels and UI Element visibility... and saved. When I test this application config for viewing an ord

  • CUCM and Avaya CS1000 SIP connection

                       Hello - looking for some help on a SIP trunk configuration between the 2 devices.  Currently we are running CUCM 9.1 with Avaya Session Manager 6.3.  We are having issues with the call completing from the CS 1000 to the CUCM.  Belo

  • Filtering a Recordset with session variable

    Hi I am trying to filter a recordset based on a session variable. The session variable is passed from the login page via a username which is their email address. This has been successful. However when I want to filter the users table - tbl_users to s

  • The OLTP source 3FI_SL_J2_TT for source system BM4CLNT100 not present

    Hi All, iam trying to load data from r/3 for the DS 3FI_SL_J2_TT , when i see in BW , the transfer structure is inactive in Dev system. So i activated the transfer struc. but after activation also its shows as inactive. and also iam getting this erro