GetDynamicContent in Context_QTE_Dynamic.htm

Right-click in DW 8.02 yields the following error:
"While executing getDynamicContent in
Context_QTE_Dynamic.htm, a JavaScript error occurred." In addition
to this, the code inspector is blank, showing no code for any page.
I reinstalled 8.02 update to no avail. I uninstalled DW,
cleaned the registry, installed DW, and installed the 8.02 update.
All was in vain.
Thanks in advance for any assistance!

This is a User2User forum for Acrobat JavaScript. You will probably get a better answer in the Dreamweaver forum.

Similar Messages

  • "When I try to create a new file I am getting this message:  "While executing getDynamicContent in AddressURL.htm, a JavaScript error occured".... what should I do?  Thank you, Lisa

    "When I try to create a new file I am getting this message:  "While executing getDynamicContent in AddressURL.htm, a JavaScript error occured".... what should I do?  Thank you, Lisa

    Troubleshoot JavaScript errors | Dreamweaver CS4, CS5, CS5.5, CS6
    Start with steps #4, #12 and #10.
    Nancy O.

  • While executing getDynamicContent in AdressURL.htm, a JavaScript error occurred"

    I am using a 4 weeks trail Dreamweaver cc. I am getting this error: "While executing getDynamicContent in AdressURL.htm, a JavaScript error occurred"
    I am getting this with every single site of folder I am opening..
    What can /must I do?
    Thanks for your response

    Below is the whole enchilada on JS Errors.  Start with #4, 6, 10, 12.
    Troubleshoot JavaScript errors | Dreamweaver CS4, CS5, CS5.5, CS6...
    Nancy O.

  • GetDynamicContent, JavaScript error occured. CS5

    I start dreamweaver CS5 and soon after working I get the following error.
    "While executing getDynamicContent in AddressURL.htm, a JavaScript error occurred."
    I click ok and it goes away for a short time. After that it pops up repeatly and I cannot get it to stop.
    How do I take care of this?
    I recently got the Lynda.com Dreamweaver & Wordpress Video Tutorial.
    My excitment soon faded after loading WordPress onto a site.
    This error is inhibiting me from working in dreamweaver all together.
    Thanks,
    TheMeanMachine

    http://forums.adobe.com/thread/429114
    Most likely the problem will be solved by removing your user Configuration folder and restarting DW as described in the first entry there.

  • Index_rhc.htm vs index_csh.htm... to dat or not to dat

    This is a "why" question -- Hoping William van Weelden is watching since he has lots of related topics online ---
    For quite some time, our developers have used this construct, where helpID is actually the string we plug into the Context Sensitive map GUI...not the Map ID number, the actual string. This has always worked well.
          "/help/A/a_rhc.htm#" + helpID;
    I did something unusual recently (at least I think so) with a result that I can't explain.  I created a separate webhelp project, and  hid the output in a subdirectory of primary, so it looks like this:
    /help/index.htm <primary content, with A/B generated as part of standard webhelp>
      help/A/a.htm
                a_rhc.htm
                a_csh.htm
    help/B/b.htm
                b_rhc.htm
                b_csh.htm
    help/foo/index.htm  <sneaky folder copied in manually so contents are not searched within parent but are within this folder>
               index_rhc.htm
               index_csh.htm
    Inexplicably, although I built the sneaky project the same way (other than not using content category tags to create subdirs), I have to use index_csh.htm to get the mapIDs to redirect. I don't really comprehend why, if it works ok for the main help project and all the little cshdats etc are created, the old school _rch doesn't work.  This is not critical but I'd like to understand in case there is a side effect I've not yet discovered.  For that new sneaky folder, I have to use calls like this:
           "/help/foo/foo_csh.htm#" + helpID;
    The same type of ID (map ID string, not number) are used, so I don't grok the reason.

    A good start is see which version of RH you are using. I have looked into RH7 and later and as far as I remember, it doesn't work as you describe. (See also http://www.wvanweelden.eu/articles/part/rhc-start-file)
    If you call the rhc file with an id after the # (rhc.htm#123), the number refers to a topic id that is generated on compile time. This is completely separate from any id you have set in RoboHelp. At least, that is how the scripts say it works iin the versions I have studied.
    The RHC file does not support these strings at all, but the CSH file does. The _csh file does support this, but there is a catch: if you are using the map ID string AND that consists of numbers, the method you use will treat is as the map number. The safe way is to call the file as follows: foo_csh.htm#topicid="+ helpID;
    If you want to understand how the system works, please see the link above. I have tried to gather all information on the WebHelp CSH I could reverse engineer from the code.
    Kind regards,
    Willam

  • Error Message: "Unable to find qm_dw.htm

    (I'm a low-to-moderate ability user - just upgraded from MX2004 to CS4 and just moved from PC to MacBook) I'm working through various DW CS4 tutorials and added one 'Adobe' plug-in (Lorem and More). On recent DW start-ups I have started getting the message "Unable to find qm_dw.htm in the Configuration/Floaters directory. The floater will not be shown." Does anyone know how I can resolve this? Many thanks in anticipation. John.

    In case it helps, try deleting the DW cache file
    http://kb2.adobe.com/cps/191/tn_19105.html#dat (step 4)

  • [CC] How to perform a script "foo_beforeSave.htm" only for specific site?

    Since a long time I use a script for automatic text replacements which perform with each save command.
    The script sits in that folder:
    C:\Users\myusername\AppData\Roaming\Adobe\Dreamweaver CC\de_DE\Configuration\Commands\foo_beforeSave.htm
    It works for all documents of all sites.
    The source code (the regex rule is just an example) of the script you find below.
    My question:
    I like to perform a script like this only for a specific site.
    I'm not a programmer. So I don't know where to place the script to reach that target. Or how I have to edit the source code of the script.
    Is there anybody who could help me with that please?
    I would appreciate it a lot. Thanks
    <!DOCTYPE HTML SYSTEM "-//Macromedia//DWExtension layout-engine 5.0//dialog">
    <!-- MENU-LOCATION=NONE -->
    <html>
    <head>
    <title></title>
    <script src="../Shared/Common/Scripts/dwscripts.js"></script>
    <script>
    function canAcceptCommand(){
        return true;
    function getFileName(url) {
      var index = url.lastIndexOf('/');
      if (index != -1) retVal = url.substring(index + 1);
      else retVal = url;
      return retVal;
    function runCmd(){
        var dom = dw.getDocumentDOM();
        dom.synchronizeDocument();
        var path = dw.getDocumentPath('document');
        if(getFileName(path) != 'foo_beforeSave.htm'){
            var docEl = dom.documentElement;
            var tempDoc = docEl.outerHTML;
            tempDoc = tempDoc.replace(/&bdquo;/g,'„');
            tempDoc = tempDoc.replace(/&#8222;/g,'„');
            tempDoc = tempDoc.replace(/&ldquo;/g,'“');
            tempDoc = tempDoc.replace(/&#8220;/g,'“');
            tempDoc = tempDoc.replace(/&rdquo;/g,'”');
            tempDoc = tempDoc.replace(/&#8221;/g,'”');
            docEl.outerHTML = tempDoc;
    </script>
    </head>
    <body onLoad="runCmd();">
    </body>
    </html>

    Well, the posted script is a full working one.
    I just search for a way to limit the range of the script to the actual site.
    Therefore it is unimportant, which regex is in the example.

  • Can't find filecache to stop ICERegions.htm errors on opening dw cs4

    Hi
    I have recently started getting this error on opening DW cs4.
    "The following translators were not loaded due to errors ICERegions.htm has configuration that is invalid"
    I also get javascript errors when I try to save (although save us seems to work ok) and I can't cut and paste.
    I searhced and found this http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19105#dat which says (point4) - Delete the WinFileCache-7A9586CB.dat, MacFileCache-BFE7CE2E.dat, or FileCache.dat and then talks about how the file name might be slghtly different.after the "Filecache" bit.
    I have searched my hard drive for "filecahce" and there was no such file seems to be there.
    I am using win xp pro and cs4
    ANy help appreciated
    thanks
    Edward

    WHoops - feeling a bit stupid now...
    searhced in the adobe folder, but its in user/applications....
    The problem appears to be sorted - so thank you me, and anyone else who thought about ansering this post!
    E

  • Missing Index topics, links and .htm files

    I hope someone can help with this, as I am very frustrated
    right now. I normally use RoboHelpX5, but have also tried this in
    RoboHelp7.
    If I generate a Winhelp2000 version of our help system,
    everything appears normal. All of the specified index keywords are
    there, all of the links are there, etc.
    But if I generate either HTML or WebHelp versions using the
    same source, as I'm supposed to be able to, for some reason:
    1. Index entries for certain topics disappear from the list.
    If I manually add the topic to the index again and save, then
    regenerate the help files, the topic is still missing from the
    index.
    2. The hyperlinks for the missing items in #1 above do not
    appear. The original text is there, but there is no hyperlink. If I
    try to add a hyperlink again, the topic appears in the list, but
    once I regenerate the help files, the link disappears again.
    3. The individual .htm file for the missing items in #1 above
    are not being generated.
    Is there some reason why these topics are being dropped from
    the html and webhelp versions of the help system? Is there some
    sort of topic formatting or setting I am missing? I have tried to
    compare working topics vs. missing topics, and cannot find anything
    different in my Word document formatting.
    I have tried creating a completely different help system,
    using clean documents with no RoboHelp formatting, and consistently
    have problems with the same topics. I even tried on another
    computer that had never had RoboHelp on it before. That didn't make
    any difference. The topics were still missing from the index, the
    hyperlinks to those topics were still missing, and the individual
    .htm files were not generated.
    Any help would be appreciated.
    Stephanie
    (ow_mas)

    Hi,
    I ran into the same problem today with some top level Index
    entries not showing up in WebHelp. I discovered how to fix it by
    comparing the entries that did show up with those that didn't. If
    an entry had a topic associated with it, it showed up; if it has a
    cross-reference, it doesn't.
    Double click an Index entry in the Index pane (or right click
    and choose Properties), then clear the Cross-reference checkbox.
    Repeat for each entry that has a cross-reference instead of a
    topic. There may be a global way to fix them all, but I haven't
    found it yet. Then recompile your help, Voila!
    Hope this helps....
    Zie3D

  • How can I get back into my application aftermath invoking Start up page of index.htm ?

    Gorgeous Hello All,
    If anyone of you can please provide me a solution for the following, will help me in plentious and galore.
    Am using Adobe RoboHelp, Version 10 and IE version being 10.
    A hurdle :-
    I have a application which has been developed in ASP .NET, Version 4.0. Help link has been created in this application wherein here the Start up page of index.htm has been linked to be read from the RoboHelp local project folder\!SSL!\Multiscreen_HTML5\desktop. All are working absolutely fine except when
    I login into the above-said application -> click on the Help page -> the index.htm opens with Contents, Index, Glossary -> Am able to successfully perform any task by respective clickings
    -> But I am not able to get back into my application when I click on the IE provided Back button (Alt+Left) -> Any amount of invoking Back button makes the system getting looped into this Start up page of index.htm only -> When I Close Tab (Ctrl + W) or Close ( X ) -> The window session gets closed and I have to repeat all by relogin once again.
    How can I get back into my application aftermath invoking Start up page of index.htm ?
    (I can always get back into the application easily by erasing those parts in the url which refers to this RoboHelp linkages – but this certainly looks non-polished work)
    Help Please
    Cheese – Vipin Nambiar, Bangalore

    Hey Jeff, I used Internet Explorer 10.0.9200 and Google Chrome 26.0.1410. Alas - it is the same behavior.
    (But Jeff : When I used Microsoft HTML Help as primary layout to generate chm file , My Help when launched from my Application opened in a new browser window and when I closed this Help browser window did not close my application. Looks like need to write few liner code to get this issue settled )
    Thanks Indeed of lots for your concerns Jeff !!!

  • Moving a site in early development from CSS/HTM to PHP

    Hello.  I am early in the development of my latest site, which I began constructing using CSS and HTML.  My pages were .htm's.  After studying up on .php, I decided that i wanted this site to be in .php, so that I could do some things server side, like having secure forms for contact and etc..
    So I made a new index page in .php.  I copied and pasted the code from my index.htm into the index.php, and attached the CSS style sheets that I had created.  So everything is displaying correctly in the new index.php, as it was in the index.htm.  Can someone let me know if this is an okay practice.. a legit way of going about what I'm trying to do?
    My next question revolves around hyperlinks.  Is the creation of links fundamentally different in .php than in .html?  I figured you could make links in the same way, by moving to html in the properties panel and turning text on the page into a link.  However, when I go to view the page in a browser and try the link I made to another page in the site, and it asks me if I want to open up a file (note: I did not set up a local testing server).  Do you need to set up a local testing server using MAMP (i'm on a Mac) in order for links to function properly in a .php page?  Or should I be creating the links in the php code, by using the echo function?
    And of course last night I was trying to set up my local testing server and was having some struggles getting it to work.  I still have to figure that out, but before I ask you how to do that, I think I will try some more resources on the web, as there seems to be some videos available on that topic.  And yes I did copy all the files of the site that I'd like to test to the root directory of htdocs in the MAMP application folder, I'm must just be getting some of the settings wrong in the manage sites dialogue box.
    Any help/insight would be of a great help!  I know this is fairly simple stuff, but thanks!

    So I made a new index page in .php.  I copied and pasted the code from my index.htm into the index.php, and attached the CSS style sheets that I had created.  So everything is displaying correctly in the new index.php, as it was in the index.htm.  Can someone let me know if this is an okay practice.. a legit way of going about what I'm trying to do?
    That's fine.
    Won't make any difference to the server or the end result in browsers until the server finds some PHP script in your page to process before sending the page to browsers.
    A .php extension merely tells the server to check the page for PHP script to process before delivering the page to a browser. If it finds none, nothing happens server-side. The page is simply sent to the browser.
    My next question revolves around hyperlinks.  Is the creation of links fundamentally different in .php than in .html?  I figured you could make links in the same way, by moving to html in the properties panel and turning text on the page into a link.  However, when I go to view the page in a browser and try the link I made to another page in the site, and it asks me if I want to open up a file (note: I did not set up a local testing server).  Do you need to set up a local testing server using MAMP (i'm on a Mac) in order for links to function properly in a .php page?  Or should I be creating the links in the php code, by using the echo function?
    There's no change to your normal HTML coding practices when using PHP pages. They're regular HTML pages with PHP script sprinkled through them. The script is processed by the server. End users never see it in their browsers.
    Browsers understand HTML. A link is a link. Created the same as always.
    PHP scripts in the page are processed by the server, then inserted in the page then delivered to the browser.
    A testing server is required if you want to test PHP pages locally.
    You can test by saving your pages after each edit then upload to your PHP-enabled web host then refresh your browser. It works but it can be slow.
    A testing server does the same thing locally. Much quicker.

  • Strange behavior when using servlet filter with simple index.htm

    I am new to J2EE development so please tolerate my ignorance. I have a web application that starts with a simple index.htm file. I am using a servlet filter throughout the website to check for session timeout, redirecting the user to a session expiration page if the session has timed out. When I do something as simple as loading the index.htm page in the browser, the .css file and one image file that are associated, or referenced in the file are somehow corrupted and not being rendered. How do I get the filter to ignore css and image files??? Thank you!!
    The servlet filter:
    import java.io.IOException;
    import javax.servlet.Filter;
    import javax.servlet.FilterChain;
    import javax.servlet.FilterConfig;
    import javax.servlet.ServletException;
    import javax.servlet.ServletRequest;
    import javax.servlet.ServletResponse;
    import javax.servlet.http.HttpServletRequest;
    import javax.servlet.http.HttpServletResponse;
    public class SessionTimeoutFilter implements Filter {
         String[] excludedPages = {"SessionExpired.jsp","index.htm","index.jsp"};
         String timeoutPage = "SessionExpired.jsp";
         public void destroy() {
         public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) throws IOException, ServletException {
              if ((request instanceof HttpServletRequest) && (response instanceof HttpServletResponse)) {
                   HttpServletRequest httpServletRequest = (HttpServletRequest) request;
                   HttpServletResponse httpServletResponse = (HttpServletResponse) response;
                   //httpServletResponse.setHeader("Cache-Control","no-cache");
                   //httpServletResponse.setHeader("Pragma","no-cache");
                   //httpServletResponse.setDateHeader ("Expires", 0);
                   String requestPath = httpServletRequest.getRequestURI();
                   boolean sessionInvalid = httpServletRequest.getSession().getAttribute("loginFlag") != "loggedIn";               
                   System.out.println(sessionInvalid);
                   boolean requestExcluded = false;
                   System.out.println(requestExcluded);
                   for (int i=0;i<excludedPages.length;i++){
                        if(requestPath.contains(excludedPages)){
                             requestExcluded = true;
                   if (sessionInvalid && !requestExcluded){
                        System.out.println("redirecting");
                        httpServletResponse.sendRedirect(timeoutPage);
              // pass the request along the filter chain
              chain.doFilter(request, response);
         public void init(FilterConfig arg0) throws ServletException {
              //System.out.println(arg0.getInitParameter("test-param"));
    The index.htm file (or the relevant portion)<HTML>
    <Head>
    <META http-equiv="Content-Style-Type" content="text/css">
    <LINK href="RTEStyleSheet.css" rel="stylesheet" type="text/css">
    <TITLE>Login</TITLE>
    </HEAD>
    <BODY>
    <FORM NAME="Login" METHOD="POST" ACTION="rte.ServletLDAP"><!-- Branding information -->
    <table width="100%" border="0" cellpadding="0" cellspacing="0">
         <tr>
              <td width="30%" align="left"><img src="images/top_logo_new2.gif">
              </td>
              <td width="37%" align="center"></td>
              <td width="33%" align="right"></td>
         </tr>
    </table>
    My web.xml entry for the filter:     <filter>
              <description>
              Checks for a session timeout on each user request, redirects to logout if the session has expired.</description>
              <display-name>
              SessionTimeoutFilter</display-name>
              <filter-name>SessionTimeoutFilter</filter-name>
              <filter-class>SessionTimeoutFilter</filter-class>
              <init-param>
                   <param-name>test-param</param-name>
                   <param-value>this is a test parameter</param-value>
              </init-param>
         </filter>
         <filter-mapping>
              <filter-name>SessionTimeoutFilter</filter-name>
              <url-pattern>/*</url-pattern>
              <dispatcher>REQUEST</dispatcher>
              <dispatcher>FORWARD</dispatcher>
         </filter-mapping>

    Hi,
    Try adding CSS files and images to the excluded Pages.

  • HTTP Status 404 - /B1iXcellerator/index.htm

    Dear All,
    I am always getting an error whether it be 2005B or 2007B when I am using SAP Business One integration platform > Control Center as follows :
    ''To help protect your security, Internet Explorer has restricted this file from showing active content that could access your computer. Click here for options''
    The I click and select Allow Blocked content and I then get the page displayed as error as under :
    HTTP Status 404 - /B1iXcellerator/index.htm
    type Status report
    message /B1iXcellerator/index.htm
    description The requested resource (/B1iXcellerator/index.htm) is not available.
    Apache Tomcat/5.5.20
    Please help me out as to what might be the problem as I am running from pillar to post for solving it.
    Your guidance and help would be highly appreciated.
    Regards,
    Kamlesh

    Hi,
    Try this, in internert explorer Tools->INternet options security tab select interner and click on custom level. Now here enable all the things and check if it helps.
    Vasu Natari.

  • Contribute 4 wont forget index.htm

    Hi, I'm troubleshooting a customer problem (I'm new to
    Contribute, using v4). One of the three sites I am now
    administering was not bringing up the correct home page due to
    there being both an index.htm and an index.html page on the server.
    I have removed the incorrect one (index.htm) from the server and
    cannot get Contribute to forget it. I have tried:
    1. Deleting the connection and creating a new one, browsing
    to the correct home page. Everything is OK until I open the
    connection and I get a page not found error. If I add the
    additional 'l' to index.htm, everything works OK.
    2. Change the order contribute looks for default pages on the
    Web Server settings, moving index.htm below index.html. Contribute
    ignores the order and still looks for index.htm.
    3. Deleted index.htm from the default pages list on the Web
    Server settings. Contribute still looks for index.htm.
    The other two sites were originally set up with index.html
    pages and work fine. There must be a file, cache, or something
    either on the site or on my workstation retaining this setting.
    It's just annoying as I can show the customer how to get round it
    but I'd like to fix it.

    After making index.html as default pages list on the Web
    Server settings on Contribute.
    Check in the server below mentioned things,where you are
    creating connection.
    1) Remotely login to the server.
    2) Go to Internet Information Services.
    3) Right click the default website and go to default website
    properties.
    4) Select the Documents tab.
    5) Here make the default page you want to keep.
    And try the same scenario. Hope this helps you.

  • Does DW recognize default.htm / index.html?

    I'm new to Dreamweaver and am working on an existing web
    site. Web servers typically load up a "default.htm" or "index.html"
    page when you give it a URL with just the directory name, e.g.
    http://foo.bar/about/. Most of
    the links in my site are set up that way. How can I get Dreamweaver
    to recognize that <a href="/about/"> is not a broken link? Or
    does it automatically know to look for default.htm?

    He is gaining a URL that never changes, according to
    Micha.... 8)
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Paul Whitham AdobeCommunityExpert"
    <[email protected]> wrote in message
    news:erafv6$35u$[email protected]..
    > You are actually making your server work harder by
    ommitting the full file
    > reference and I can;t really see what you are gaining.
    You can define a
    > homepage within DW but that is only one for the site and
    not for each
    > folder.
    >
    > --
    > Paul Whitham
    > Certified Dreamweaver MX2004 Professional
    > Adobe Community Expert - Dreamweaver
    >
    > Valleybiz Internet Design
    > www.valleybiz.net
    >
    > "iganpo" <[email protected]> wrote in
    message
    > news:er8phi$1f7$[email protected]..
    >> I'm new to Dreamweaver and am working on an existing
    web site. Web
    >> servers
    >> typically load up a "default.htm" or "index.html"
    page when you give it a
    >> URL
    >> with just the directory name, e.g.
    http://foo.bar/about/. Most of
    the
    >> links in
    >> my site are set up that way. How can I get
    Dreamweaver to recognize that
    >> <a
    >> href="/about/"> is not a broken link? Or does it
    automatically know to
    >> look
    >> for default.htm?
    >>
    >
    >

Maybe you are looking for