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/

Similar Messages

  • Works in preview but not when published in captivate 8?

    My youtube widget used in captivate 8 works just fine in the preview, but when published there's nothing where the video should be, any idea as to why?

    Hi Robert,
    as far as I understand your post, you are missing some kind of "button-artwork" in the published file, but do not report a problem with the "action" that the script should perform.
    My guess would be that it will be hard to help you without having a better understanding what your trying to achive and how (are you using a prebuilt component, or did you build the button fron scratch etc....)
    It might be even necessary to have a look at the fla itself.
    M

  • PayPal button action works in preview but not when published

    Hi! 
    Any thoughts as to why this works correctly in CS5 publish preview but when I publish it I either get no action or (XP comupter) or a blank page (vista).  Any thoughts or insight would be appreciated.  Also, I'm new to flash and here's the button action:
    on (release) {
            //create the LoadVars that will hold our paypal information
            var paypal = new LoadVars();
            //specify the business, amount of the item, shipping, etc.
            paypal.cmd="_xclick";
            paypal.upload="1";
            paypal.business="[email protected]";
            paypal.currency_code="USD";
            paypal.amount="275.00";
            //paypal.handling = "0";
            //paypal.no_shipping = "0";
            paypal.item_name="One Session";
            //added
            //paypal.lc="GB";
            paypal.bn="PP-BuyNowBF";
            //paypal.no_note="1";
            //send our information to PayPal, including all the optional  variables we have collected from customer
             paypal.send("https://www.paypal.com/cgi-bin/webscr","_blank","POST");
    Thanks!
    Robert

    Hi Robert,
    as far as I understand your post, you are missing some kind of "button-artwork" in the published file, but do not report a problem with the "action" that the script should perform.
    My guess would be that it will be hard to help you without having a better understanding what your trying to achive and how (are you using a prebuilt component, or did you build the button fron scratch etc....)
    It might be even necessary to have a look at the fla itself.
    M

  • My applet can access an image in Eclipse, but not when I put it online...

    Basically, I have an applet that displays images among other things.
    I stuck the images in the bin directory, and when I run the applet from Eclipse, there's no problem.
    But when I put the applet on my webpage, it crashes with a NullPointerException because
    image = ImageIO.read( new File( imageName ) ) can't seem to get the image.
    The images are in the same directory as my class files. I tried turning on all permissions.
    My html code is very simple:
    <applet code="ImageGenerator.class" width=1000 height= 500> </applet>
    Am I missing anything?
    Any idea what the problem is?

    Meteor,
    Can you shed some light on how big these files are?
    If these images are 200K each and you have 10 of them, then you're loading 2MB across the network each time the application loads. Depending on what you are doing, that may not be a good design.
    If these slow-loading images are needed right away, then embed them with your applet (preferably a Jar) and they should load pretty fast.
    If these slow-loading images are needed later, then thread the loading of them to a background task and use some form of visual feedback (like a "please wait" image) until they're finished.
    Lastly, if these images are relatively small and you are experiencing a significant speed difference between accessing them locally (such as on the server's file system or through a mapped-drive) and accessing them through http (or url, etc) then make sure your web server is feeding them up in a timely fashion and that there's no outstanding issues with the URL loading method and the Java version you're using.
    Please read Andrew's posts closely as you should not be designing an applet that loads files as a local resource unless you really need to. Signing the applet will allow you to save them locally to the filesystem (as a "cached" version to be loaded later), but don't try to load the images as files directly from the web server's file system. The signed applet will only be able to access the local file system of the station it's being run on, hence, usually not the server!
    As far as caching the files locally, Java webstart has potentially a better ways of doing that sort of stuff for you.
    -Tres

  • Query works in preview, but not when added under a Query Group

    Hello Experts-
    I'm trying to use this query as one of the options under the drop down on the Supplier Search under the Supplier Management.
    Error message:
    while trying to invoke the method com.sap.odp.comp.query.QueryParamValue.getPromptParamDef() of a null
    object loaded from local variable 'paramValue' while trying to invoke the method
    com.sap.odp.comp.query.QueryParamValue.getPromptParamDef() of a null object
    loaded from local variable 'paramValue'
    The query itself is complicated, but it works fine when executed under preview.
    Wondering if any one has ever seen this behavior and knows of any typical causes?
    Thanks,
    Mike

    Thanks for the offer, Vignesh.
    Sorry, I'm currently having trouble duplicating it, but next time it happens I'll try to get some screenshots.
    I have narrowed it down to blank values in optional string fields when the query loads. I fixed (kind of) the ones I was having trouble with by rearranging the filter parameters so there would not be blanks.
    Thanks again,
    Mike

  • Masking works in preview but not when published

    I am dynamically loading higher-res images into a movie clip
    that
    correspond to the place in a 360 degree rotation the main
    clip is at,
    then resizing that movie clip to "zoom" the image. Since I
    don't want
    to overflow the whole screen, I've created another movie clip
    that
    masks the loader movie clip.
    When I preview the flash file, it works perfectly. When I
    publish the
    file, the mask doesn't get applied. Thoughts?
    zoom_btn.onPress = function(){
    if(iszoomed == false){
    loadMovie("zoomimages/" + Math.floor((_currentframe-4)/3) +
    "big.jpg", image_mc);
    stop();
    zoom_btn.onRelease = function(){
    if(iszoomed == false){
    Loading progress loop begins, extra code
    removed...
    if (pcLoaded >= 99){loader_mc._alpha = 0;
    image_mc._visible = true;
    myMask_mc._visible = true;
    image_mc.setMask(myMask_mc);
    .....Loading progress loop ends}
    iszoomed = true;
    }

    Hi Robert,
    as far as I understand your post, you are missing some kind of "button-artwork" in the published file, but do not report a problem with the "action" that the script should perform.
    My guess would be that it will be hard to help you without having a better understanding what your trying to achive and how (are you using a prebuilt component, or did you build the button fron scratch etc....)
    It might be even necessary to have a look at the fla itself.
    M

  • Site works in preview but not when uploaded to the web

    I have been trying to add a link from my website to another project I have been doing, a mini site made with Flash.
    I wanted the link to open up a new window with the animation playing inside, and it works perfectly when I use "preview in safari" within dreamweaver, but now I've uploaded to the web it just opens up a blank window.
    This is the url for the homepage:
    http://kayleighthompson.com/
    and the link is the ActiveAid button at the bottom of the navigation list.
    If anyone knows how to get this working I'd be very grateful! It's for a uni project due in this afternoon :S

    I think you may be having a problem with how Flash is displayed. The Flash on the first page doesn't display in IE8... although it does in Chrome. The second page doesn't display in either. Your link is correct. I checked that.
    Wish I could be more helpful, I'm having the same issue with IE and DW CS4 myself, and can't figure it out.
    This may help: http://code.google.com/p/swfobject/wiki/documentation
    Good luck! Let me know if you figure it out.
    [email protected]

  • Dynamic text works in preview but not when uploaded

    Can someone help me resolve as to why my dynamic text works
    in DW8 preview by I get an error after FTPing the page.
    Warning: require_once(/Connections/oneandone.php)
    [function.require-once]: failed to open stream: No such file or
    directory in /homepages/0/dxxxx/htdocs/xxxcom/index_by_town.php on
    line 1
    Fatal error: require_once() [function.require]: Failed
    opening required '/Connections/oneandone.php'
    (include_path='.:/usr/local/lib/php5') in
    /homepages/0/dxxxx/htdocs/xxxcom/index_by_town.php on line 1
    My testing server is my remote server.
    Thanks

    ah ha sorted - seems to have something to do with relative
    links. Changing site root relative links to document relative links
    has done the trick.
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=263&threadid=1154447&hi ghlight_key=y&keyword1=virtual%28%29

  • Flash work in preview but not in the browser!?

    Hi there:)
    I have a .swf file in a table in Dreamweaver. When I preview it in place and in Safari, it plays. When I upload eveything, it is not in any browser on the server.. any ideas?
    Thanks!
    V

    Hi John!
    Yes, sorry about that.. here it is.
    http://farmingtonfarm.com/appraisal.html
    Thanks for your help!!
    v
    Date: Thu, 8 Apr 2010 18:52:05 -0600
    From: [email protected]
    To: [email protected]
    Subject: flash work in preview but not in the browser!?
    Can't really help without a link to the site. Can you provide one?
    >

  • 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

  • Wifi works at home but not when away from home

    My Wifi works at home but not when away from home, what is wrong?  I thought with a phone plan I didn't need to have a wifi connection.

    You either need WiFi or Cellular (or both). If you have neither, you can't connect to the internet.
    Most people use WiFi at home and Cellular while away from home, or connect to public WiFi networks where there are some.

  • Captivate 3 shows skin in preview but not when I run after published?

    Captivate 3 shows skin in preview but not when I run after published.  It shows it is included, what's up?

    Is the Skin externalised?  If so, perhaps Flash Global Security is interfering:
    http://www.infosemantics.com.au/adobe-captivate-troubleshooting/how-to-set-up-flash-global -security
    You could also try NOT externalising the skin.

  • Swap images works in preview but not in browser

    Hi everyone,
    I am attempting to get a swap images to work.  It works in the preview window but not when I preview it in the browser.  When I open it in a browser the states seem to "cycle" through really quickly in rapid succession.  I have linked my png file for you to see.  Any thoughts?
    Thanks,
    denbeck

    Your swap image slice is set to Animated GIF. Change it in the Optimize panel to plain GIF or PNG 8
    Jim Babbage

  • Flash image viewer works in preview but not online

    Hi
    I followed an online demo on how to get an image slideshow on my webpage using flash. It was using insert media image viewer. It all worked fine, looked great in the preview but when I put everything online I can't see it. Just an empty space were it should be. This is the site where it is
    http://www.idoityourself.com.au/ if tried moving the image to different areas in case it didn't like being in a folder within a folder etc but still didnt work. Any ideas??
    thanks

    http://www.idoityourself.com.au/Scripts/AC_RunActiveContent.js File not found.
    You have not uploaded the Scripts folder to your server which DW generated automatically for you when you inserted the Flash.

  • XML (RSS) Spry Dataset File Works in Preview But Not Over Internet

    hello
    I am trying to build a custom feed reader using the Spry framework in Dreamweaver CS4 and everything seems to go smoothly until I actually host the file (with the accompanying js and css files) and try to view it over the internet
    previewing from DW shows everything working the way it should
    I feel like I am missing something obvious ... but not sure what
    thanks for any help!

    Hi, i have a similar problem..
    These URL returns a XML:
    1) http://www.bolsadesantiago.com/intradayServlet?symbol=IPSA
    2) http://www.valorfuturo.com/contenidos_vf/proyectos/clientes/penta/titularnoticias.asp
    I use a CS4 and both works in preview, but only first works over internet (IE7).
    I suspect that 2° has a problem of syntax XML, but work with jQuery.

Maybe you are looking for

  • Robohelp 9 with patch - Not working with IE10

    Hi, We have a problem with webhelp generated from RoboHelp 9 when viewing with Internet Explorer 10. We can't open a topic on the left or open a search result, until we either : A) Resize the window B) Resize the splitter between contents and the con

  • My time machine has a blinking amber light and it won't backup

    I recently added a new network with AT&T  My time machine is now blinking amber and I can't figure out how to fix it.  I also have the 10.9.5 operating system....i didn't download it my computer did.......thats how smart I am.  I am very computer stu

  • Internal battery for keeping date, time, etc.

    Hi, I am new to these discussions because up until this last year, my 2005 iBook G4 has had no problems. Currently, I have two issues going on. 1) The first I noticed was that the date and time had to be reset at start-up (warning message) 2) Then a

  • Change host name and url of Oracle Application

    Hello, I need help in changing the url of Oracle Application OLD url - http:// appssvr.XYZ.com:8007 NEW url - http://erp.XYZ.co.in:8002 Please help

  • Show / Hide form elements

    Hi... I just want to know, how I can create the following in Dreamweaver CS3: Eg: I have 4 form elements: Active, Name, Surname, Comments Now. When viewing the page containing the form, it should only display the Active Tickbox. WHEN you have ticked