Dreamweavers CS5 and Dynamically related content.

Why do the web pages look empty on the Dremaeaver design view? When I preview them in a browser they look fine. And when I imported the pages to Dreamweaver from the Local Server I thought it was the same thing. Its not the same? Can anyone help with the dynamic related files and how to discover them? I think it will work if the server set up details are correct. Its probably the document root or server root and FTP connection. These are free opensource sccripts that do not go any further to use in dreamweaver.

Please give us a link to the live page so we can see the underlying code.

Similar Messages

  • Print Specific Frames and Dynamic XML content

    Hello, I am trying to print specific frames of my Flash movie
    with the dynamic text loaded from an XML file. The code below only
    prints the current frame I am on and does not print the XML text.
    The dataOK that is commented out is a function I have before that
    loads the XML content. The XML content is loaded to dynamic text
    boxes. Any help on this would be greatly appreciated.

    I am still having difficulty loading the XML data and the
    frameNum parameter does not seem to work. Argghhhh....
    function printTut(myevent:MouseEvent):void{
    var myPrintJob:PrintJob = new PrintJob();
    var mySprite:Sprite = new Sprite();
    var printArea:Rectangle = null;
    var options:PrintJobOptions = null;
    var frameNum:int = 2;
    mySprite.addChild(stage);
    mySprite.rotation=90;
    mySprite.scaleY=.80;
    mySprite.scaleX=.80;
    myPrintJob.start();
    myPrintJob.addPage(mySprite,printArea,options,frameNum);
    myPrintJob.send();
    print_btn.addEventListener(MouseEvent.CLICK,printTut);

  • Premiere CS5 and dynamic link with Affect effects doesn't "sync"

    Hi guys, having issues with Pr and Ae CS5 using the dynamic link. I haven't got massive experience using aftereffects, i mainly edit. I doing VFX for a short film ( i know right, deep end..) Its a hand held combat scene.
    I'm using action essentials 2 for muzzle flash and explosions. And i'm noticing that when a do tracking (manually, "track motion" doesn't work, due to the shaky camera movement) in After effects, the muzzle flashes are in place and looks great
    but when i go back to Premiere to view the clip, its not hitting the same marks in every frame. I export the clip out of Premiere and still the same issue.
    example of me manually tracking or adding keyframes for position in after effects.
    After effects still.                                                                                                     Premiere still. See how the flashes are in the sky.
    Look for the two muzzle flashes up the top right, on the ridge line.
    The footage is AVCHD .MTS files for a Panasonic GH2 PAL
    Here's a link to the clip, notice that same of the flashes coming out of the actor's gun isn't in the right positon also.
    http://vimeo.com/32722285
    Password: war
    My computer specs
    Cheers Aaron

    Glitchdog wrote:
    We are just shifing to PP from another editor and have only used PP to AE for color correction tests w/Color Finesse (a plugin in AE). My only experinece with dynamic link is in this way. Personally I find it very cumbersome. So take this with a grain of salt, but if we do other work in AE (we have an intern working on a 1.5 min AE animation) I will render it out in AE to ProRes HQ or 4444 if I need an alpha channel (or similar codec) and drag it into my project folder in PP.
    You should do yourself a favor (Not meant with disrespect) and take a few hours and REALLY get down and dirty with Dynamic Link between PP and AE.
    I use it all the time and it litterally saves me 10+ hours of work on EACH project which is typical between 70 and 300 clips.
    In fact, I dont know how I'd do withouth DL.
    At first it seems cumbersome, yes. But that is only until you get to know it...
    I will cut the whole project in PP. Then save it.
    Then in AE, I'll choose "Import PP Project " --- That will open my whole PP project in AE on SEPERATE layers (One layer per Clip).. Ready to CC.
    I dont have to render a thing from PP.
    If I need to, I'll use the AE Script "Pre Compose" to make an individual composition of each layer.
    AE is just about the greatest app I have EVER seen on ANY computer ! Hands Down
    Does not get ANY faster than that.

  • Programmatic openPanels and Dynamic Accordion Content

    I have been trying to add links to programmatically open
    panels in my accordion, which is successfully populated with an XML
    dataset. It doesn't seem to work, (tried using both "simple
    navigation" and "panel index" links).
    This does work when the data in the accordion is hard-coded.
    I created a test page directly from the AccordionSample2 page
    in the samples with Spry 1.5 (all of my files are 1.5).
    I added the programmatic links to open each of the 2 methods
    of populating the accordion on that page, and they don't seem to
    work, either.
    Test Page is here:
    www.imagicdigital.com/spry/AccordionSample2test.html
    I thought perhaps the dynamically created accordion is using
    a different id, so that's why the programmatic linking doesn't
    work, but when I viewed the generated markup with the debugger, it
    appears to use the given id.
    Any thoughts or help? Thanks in advance.

    http://labs.adobe.com/technologies/spry/samples/utils/URLUtilsSample.html
    that might help u out. the bottom example is a tabbed widget
    that gets activated by clicking a link.
    and this;
    http://labs.adobe.com/technologies/spry/articles/data_api/apis/collapsible_panel.html#meth ods
    might help u out to.
    also, u might want to add the
    <script type="text/javascript">
    var a1 = new Spry.Widget.Accordion("Acc2");
    </script>
    part, becouse that is missing, and its giving errors. and if
    u have firebug installed u will see those errors on firefox.
    getfirefox.com <-- firefox
    getfirebug.com <-- firebug

  • Multipart/mixed and multipart/relative Content type probs

    I tried to create a page from a servlet by using the multipart/mixed
              Content-type.
              All that is displayed inside the browser is the actual code including the
              headers for the single parts of the page. I also checked it on the byte
              level, getting the same results.
              Does anybody have an idea ?
              Thank you very much ,
              Tom
              

    Are you setting the content type prior to each response (i.e.
              out.println("Content-type: text/html\n");)?
              Below is an example (untested, but should work):
              // Global constants
              static final String BOUNDARY_STR ="Joe";
              static final String BOUNDARY = "--"+BOUNDARY_STR;
              static final String BOUNDARY_END = BOUNDARY+"--";
              // Inside of doGet
              res.setContentType("multipart/mixed;boundary="+BOUNDARY_STR);
              ServletOutputStream out = res.getOutputStream();
              // First Response
              out.println(BOUNDARY);
              out.println("Content-type: text/html\n");
              out.println("<html>\n");
              out.println("<head>\n");
              out.println("<title>First Response</title>\n");
              out.println("</head>\n");
              out.println("<body>\n");
              out.println("<h1>First Response</h1>\n");
              out.println("</body>\n");
              out.println("</html>\n");
              out.println(BOUNDARY);
              out.flush();
              // Second Response
              out.println(BOUNDARY);
              out.println("Content-type: text/html\n");
              out.println("<html>\n");
              out.println("<head>\n");
              out.println("<title>Second Response</title>\n");
              out.println("</head>\n");
              out.println("<body>\n");
              out.println("<h1>Second Response</h1>\n");
              out.println("</body>\n");
              out.println("</html>\n");
              out.println(BOUNDARY);
              out.flush();
              // Done
              out.println(BOUNDARY_END);
              out.flush();
              Thomas Schmitt wrote in message <[email protected]>...
              >I tried to create a page from a servlet by using the multipart/mixed
              >Content-type.
              >All that is displayed inside the browser is the actual code including the
              >headers for the single parts of the page. I also checked it on the byte
              >level, getting the same results.
              >Does anybody have an idea ?
              >Thank you very much ,
              >Tom
              >
              >
              

  • DW CS5 Dynamically related files could not be resolved

    I have used David Powers books over the years and always managed to get my php  working properly locally even though I had no idea really about all of the changes to the settings etc that he detailed in his books.  The thing is it all worked.
    So, now I have DW CS5 and the Xampp download to do everything for me and it sort of worked for a while but then it stopped with the "Dynamically-related files could not be resolved message" now always appearing for every site.
    I tried uninstalling Xampp and reinstalling it but that didn't work.  Xampp seems to be installed correctly when I go to localhost/xampp.
    When I go to localhost I get the 'Index of' / page listing all of my website folders.
    I'm using Win 7 64bit.
    John F

    DO NOT TAMPER with core word press files.  These pages get all their info from multiple server-side include files and content stored in the MySql database.  In short, there is no static content to edit in the core files.  WordPress is all dynamically populated by the server.
    The ONLY files you should be working with are inside the wp-content/themes folder.
    See anatomy of a WordPress Theme
    http://yoast.com/wordpress-theme-anatomy/
    WordPress Theme Development
    http://codex.wordpress.org/Theme_Development
    Once your WP site is deployed on the server, you must use the WP Admin Panel to edit content & invoke changes to your Theme, Plugins, Widgets, etc...
    See Working with WordPress
    http://codex.wordpress.org/Working_with_WordPress
    Nancy O.

  • Can't Disable "Discover Dynamically-Related Files"! DW CS5

    Hello,
    In "Preferences -> General" there is an option for "Discover Dynamically-Related Files" for which the choices are Automatically, Manually, Disabled. Is anyone else having a problem setting the option to "Disabled"?? Everytime I set it to disabled, click OK, restart Dreamweaver, open preferences... it's set back to "Manually" again and I get the bar at the top of the code view window telling me "This page may have dynamically-related files....".
    I am however able to uncheck "Enable Related Files" entirely which will get saved after dreamweaver restarts.
    Any clues?
    DW CS5, Windows Vista
    Thanks!
    Peter

    Hi, I was also experiencing the same problem. I'm using DW CS5 on a Windows environment. The fact is that the software itself isn't modifiying the configuration in the registry. Obviously Adobe has to release an update to resolve this bug but, in the meantime, you can solve it by yourself modifying this key in the registry:
    HKEY_CURRENT_USER\Software\Adobe\Dreamweaver CS5\General Preferences
    Change the KEY : Discover Dynamic Related Docs Method -> disabled
    Note: I've just done this and works for me, but I cannot assure you if tomorrow will behave as today... you know, AI , Adobe Intelligence ;-)

  • Spry Tabbed panels + Progressive Enhancement and Dynamic Loading of Content With Spry

    Is there any way to combine tabbed panels together with "Progressive Enhancement and Dynamic Loading of Content With Spry"?
    Visit: http://labs.adobe.com/technologies/spry/articles/best_practices/progressive_enhancement.ht ml#updatecontent
    And click on the "Using Spry.Utils.updateContent()"
    The 3rd example shows how to use a fade transition whenever the content changes.
    I already have tabbed panels. My menu contains buttons (on tabs) and my Content div contains the panels.
    Tabs code;
    <ul class="TabbedPanelsTabGroup">
              <li class="TabbedPanelsTab">
                   <table class="Button"  >
                        <tr>
                        <td style="padding-right:0px" title ="Home">
                        <a href="javascript:TabbedPanels1.showPanel(1);" title="Home" style="background-image:url(/Buttons/Home.png);width:172px;height:75px;display:block;"><br/></a>
                        </td>
                        </tr>
                   </table>
              </li>
    etc
    etc
    etc
    and the panel code:
    <div class="TabbedPanelsContent" id="Home">
         CONTENT
    </div>
    I hoped i can use the example code from the link into my tabbed panels.
    I thought this code:
    onclick="FadeAndUpdateContent('event', 'data/AquoThonFrag.html'); return false;"
    could be added to the tab code like this:
    <a href="javascript:TabbedPanels1.showPanel(1);" onclick="FadeAndUpdateContent('event', 'data/AquoThonFrag.html'); return false;" title="Home" style="background-image:url(/Buttons/Home.png);width:172px;height:75px;display:block;"><br/></a>
    But the content doesnt fade...
    I know i need to change the header etc.
    The following is from the link:
    <!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" xmlns:spry="http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Aquo Events</title>
    <script src="../../../includes/SpryEffects.js" type="text/javascript"></script>
    <script src="../../../includes/SpryData.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    function FadeAndUpdateContent(ele, url)
    try {
         Spry.Effect.DoFade(ele,{ duration: 500, from: 100, to: 0, finish: function() {
              Spry.Utils.updateContent(ele, url, function() {
                        Spry.Effect.DoFade(ele,{ duration: 500, from: 0, to: 100 });
    }catch(e){ alert(e); }
    -->
    </script>
    <style type="text/css">
    /* IE HACK to prevent bad rendering when fading. */
    #event { background-color: white; }
    </style>
    </head>
    So i changed my header etc, put the SpryEffects.js and SpryData.js into position and nothing changed...
    Is there a way to keep my tabbed panel (or change as less as possible) and let
    A. The fade work
    B. The loading work.
    The problem now is that it loads all pages instead of only the home. Therefore i wanted this Progressive Enhancement.
    And the fading part is just because its nice...

    It doesnt show in the post but off course i changed this link;
    "data/AquoThonFrag.html"
    into;
    "javascript:TabbedPanels1.showPanel(1);"
    I must say i dont know if this even works...

  • Mixing static and dynamic content in a single outputText value causes NPEs

    Hi,
    I am having a problem and I'm wondering if it is a result of my error or if this is a bug.
    I am mixing dynamic and static content in the value attribute of tags (e.g., outputText). On initial page load, everything works fine. However, if the same view is reloaded (e.g., after a failed validation) I get an NPE from JSF:
    [#|2006-10-24T08:49:03.756-0500|SEVERE|sun-appserver-pe8.2|javax.enterprise.system.container.web|_ThreadID=12;|StandardWrapperValve[Faces Servlet]: Servlet.service() for servlet Faces Servlet threw exception
    java.lang.NullPointerException
            at com.sun.faces.el.MixedELValueParser.getNextToken(MixedELValueParser.java:140)
            at com.sun.faces.el.MixedELValueParser.parse(MixedELValueParser.java:123)
            at com.sun.faces.el.MixedELValueBinding.getValue(MixedELValueBinding.java:60)
            at javax.faces.component.UIOutput.getValue(UIOutput.java:147)
            at com.sun.faces.renderkit.html_basic.HtmlBasicInputRenderer.getValue(HtmlBasicInputRenderer.java:82)
            at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.getCurrentValue(HtmlBasicRenderer.java:201)
            at com.sun.faces.renderkit.html_basic.LabelRenderer.encodeBegin(LabelRenderer.java:128)
            at javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:683)
            at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:443)
            at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:233)
            at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:701)
            at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:445)
            at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:130)
            at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:701)
            at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:445)
            at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:233)
            at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:701)
            at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:445)
            at com.sun.faces.renderkit.html_basic.GroupRenderer.encodeChildren(GroupRenderer.java:130)
            at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:701)
            at com.sun.faces.renderkit.html_basic.HtmlBasicRenderer.encodeRecursive(HtmlBasicRenderer.java:445)
            at com.sun.faces.renderkit.html_basic.GridRenderer.encodeChildren(GridRenderer.java:233)
            at javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:701)
            at javax.faces.webapp.UIComponentTag.encodeChildren(UIComponentTag.java:609)
            at javax.faces.webapp.UIComponentTag.doEndTag(UIComponentTag.java:546)
            at com.sun.faces.taglib.html_basic.PanelGridTag.doEndTag(PanelGridTag.java:460)
            at org.apache.jsp.registration_jsp._jspx_meth_h_panelGrid_0(registration_jsp.java:324)
            at org.apache.jsp.registration_jsp._jspx_meth_h_form_0(registration_jsp.java:223)
            at org.apache.jsp.registration_jsp._jspx_meth_f_view_0(registration_jsp.java:157)
            at org.apache.jsp.registration_jsp._jspService(registration_jsp.java:118)
            at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:105)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
            at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:336)
            at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:297)
            at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:247)
            at javax.servlet.http.HttpServlet.service(HttpServlet.java:860)
            at sun.reflect.GeneratedMethodAccessor188.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
            at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
            at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)
            at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
            at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
            at java.security.AccessController.doPrivileged(Native Method)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
            at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:723)
            at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:482)
            at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:417)
            at org.apache.catalina.core.ApplicationDispatcher.access$000(ApplicationDispatcher.java:80)
            at org.apache.catalina.core.ApplicationDispatcher$PrivilegedForward.run(ApplicationDispatcher.java:95)
            at java.security.AccessController.doPrivileged(Native Method)
            at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:313)
            at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:326)
            at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:132)
            at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87)
            at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:248)
            at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
            at javax.faces.webapp.FacesServlet.service(FacesServlet.java:194)
            at sun.reflect.GeneratedMethodAccessor202.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
            at java.lang.reflect.Method.invoke(Method.java:585)
            at org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:249)
            at java.security.AccessController.doPrivileged(Native Method)
            at javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
            at org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:282)
            at org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:165)
            at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:257)
            at org.apache.catalina.core.ApplicationFilterChain.access$000(ApplicationFilterChain.java:55)
            at org.apache.catalina.core.ApplicationFilterChain$1.run(ApplicationFilterChain.java:161)
            at java.security.AccessController.doPrivileged(Native Method)
            at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:157)
            at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:263)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
            at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:225)
            at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:173)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
            at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
            at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:132)
            at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
            at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
            at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:189)
            at com.sun.enterprise.web.connector.grizzly.ProcessorTask.doProcess(ProcessorTask.java:604)
            at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:475)
            at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:371)
            at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:264)
            at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:281)
            at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:83)My code looks like this:
    <h:outputText escape="false"
              value='<link href="#{myBean.styleSheet}" rel="stylesheet" type="text/css"  />' />If I replace this with a much more convoluted set of tags, it works:
    <h:outputText escape="false"
              value='<link href="' /><h:outputText escape="false" value="#{myBean.styleSheet}"
              /><h:outputText escape="false" value='" rel="stylesheet" type="text/css" />' />So is the problem that I am mixing dynamic and static content with a single value? If so, why does it work on the first view, and not after?
    If it matters, I'm using the reference implementation version 1.1 (as included with NetBeans 5.5RC2) on SuSE 10.0 w/ JDK 1.5_09.
    Thanks,
    Bill

    Yes, that's how I originally had it, but then changed it to the outputText approach since a single tag could do what I wanted, as long as I was allowed to mix static and dynamic content within a single value.
    I think this is a bug in JSF 1.1, since if what I am doing is illegal, it should throw an exception on the first page view, not work on first view and throw an exception on subsequent views. I'm guessing that this has something to do with the fact that on first page view it only runs the restore view and render response JSF phases, while on subsequent requests all of the phases will be run, and it's in one of those other phases that the exception is thrown.
    For now, multiple tags is the work-around, I guess.
    Thanks,
    Bill

  • Spry:Content and Dynamic Spry Data

    Is there a way to get the spry:content attribute to work well
    with dynamic data generated from PHP/MySQL? I have read the
    progressive enhancement article and I am totally lost on it.
    The provided examples in the documentation deal with static
    data but there are so example of using spry:content and dynamic
    data.
    Can anyone help?
    Thanks

    Hi Arnout
    These are the urls:
    http://www.grafikkaos.co.uk/pages/front/test_home.php
    - this one displays the spry:content properly, but in the source,
    it does not show the 5 articles.
    http://www.grafikkaos.co.uk/pages/front/test_home_2.php
    - I applied a PHP repeat region here. In the source, it shows 5
    articles being shown but on page view, each title and date is
    repeated 5 times.
    Any ideas?
    Thanks

  • Encore CS5 won't open after I downloaded and installed the content as directed. The top of the project opens at the bottom of the screen, freezes and is inaccessable.

    Encore was launching and working fine but,as many others before me, I had no content in the Library panel and downloaded the content files from the link Adobe provides. When I relaunched Encore it froze at the bottom of my screen. I have restarted the application, the computer, and even deleted the preferences file but Encore still freezes. I am using  a Mac, OSX  ver. 10.6.8., 6 gigs of ram. Any help would be appreciated.

    Are you sure you meant to write CS5?
    My understanding is that CS5 had a "self contained" installer that installed everything, and it was CS6 that required extra downloads from Adobe

  • How do I find dynamically related files where Wordpress is not involved

    There are lots of posts about "Dynamically-related files could not be resolved because the site definition is not correct for this server" but they all seem to relate to Wordpress or other blogging software.
    I have recently had to upgrade from DW8 to DW CS5.5 running on Windows 7 64bit. and get this error on lots of pages but there is no help about fixing it.  The local testing server is localhost set up to run PHP with iis7 on virtual folders.
    What do I have to do to get the dynamically related files to be found?
    Thanks

    I think I've  cracked it - nothing to do with databases, that was a red
    herring.
    I had a hundred or so sites on an XP machine running Dreamweaver 8 and used
    the export facility to save their settings when I moved to a Windows 7
    system.  Win7's directory structure is different but the testing server
    location stored in the export file doesn't take account of this and part of
    the path may now include directories that are viewed as shortcuts.  Once the
    locations are reset in Win7 terms, the errors go away.
    Regards
    Steve
    Steve and Diana Kimpton
    The Word Pool
    http://www.wordpooldesign.co.uk/
    http://www.wordpool.co.uk/
    http://www.ukchildrensbooks.co.uk/
    http://www.contactanauthor.co.uk <http://www.contactanauthor.co.uk/

  • Photoshop cs4 and cs5 and after effects 7.0

    Hello my name is mel
    My question ! I'm working with photoshop cs4 and after effects 7.0 building a web page and this going to be my first page . I got the header in and the footer also,
    the main body is going to be this avi file. after effect project that I want to run when the page opens. I want to slice up and send to DW for coding . my question is how do you slice this page up and transport it to DW.cs5 and do you have to code the avi in html and css to run when the page is open. Because as now when you run the avi in photoshop nothing elese on the page works , just the avi runs when you turn off the avi then every thing is back normal .to run the avi you have go to the video part of psd and click on the start button . any idea or any suggestion how to proceded would help
    thanks
    mel
    [email protected]

    we were told in design school to use ps to design your site   then transport to DW to code??
    Maybe I misunderstood you.... You do the graphics in PS, that's of course what everyone does and then you code in DW, but by all means, you do not operate on the atrocious code Save for Web would spit out from PS. Trying to fix it is more trouble than starting with a blank page in DW and inserting the background and otehr images manually. And you definitely misunderstand "animation" vs. "video" After Effects is just a means to turn animation into video just as Flash is a means of creating dynamically rendered animation or interactive content. Both have their uses, but without knowing what kind of animation or video you actually need to produce, this is going nowhere. It may turn out that all you need is an animated GIF, after all... Furthermore your AE 7 is dated and does not output good H.264 or FLV directly compared to more recent versions, so this opens up yet anotehr can of worms when it comes to producing good quality web video at small file sizes... In any case, you still require a lot of reading. Too complex a topic for which nobody can provide a tippy-toe tutorial and without understanding even some basic concepts, the most beautifully designed PS grafik will end up being nothing more than a useless lump of pixels on a web server...
    Mylenium

  • Problem using Illustrator CS5 and CC 2014 in same PC

    Hi,
    I am developing some Illustrator scripts using VBScript, which should work on CS5, CS6 or CC 2014. When the scripts will be called, the user will pass, as command line argument, which Illustrator version they want to use. Accordingly I am instantiating the appropriate Illustrator scripting object by the following code:
        If version = 1 Then
            Set appRef = CreateObject("Illustrator.Application.CS5") 
        ElseIf version = 2 Then
            Set appRef = CreateObject("Illustrator.Application.CS6") 
        ElseIf version = 3 Then
            Set appRef = CreateObject("Illustrator.Application.CC.2014") 
        Else
            Set appRef = CreateObject("Illustrator.Application") 
        End if
    This is working correctly in one system where CS5 and CC 2014 are both installed. However, in another similar system, where CS5 and CC 2014 are both installed, this is failing. There, always the CC 2014 version is being used, even when the user wants to use CS5. On inspection it is found that the issue is with registry entry of LocalServer32 subkey of the Illustrator.Application.CS5 automation object. There I see, the path of CC 2014 executable is stored, not that of CS5. The value is C:\Program Files\Adobe\Adobe Illustrator CC 2014 (32 Bit)\Support Files\Contents\Windows\Illustrator.exe /automation. Hence, the statement CreateObject("Illustrator.Application.CS5") is actually starting the CC 2014 Illustrator version.
    Does anyone know how this could have happened? Is this some installation behavior of CS5 or CC 2014, that can be controlled? In this machine CC 2014 was installed after CS5. Does CC 2014 change the registry settings of CS5, if it was installed? That seems very unlikely, as then how can one use both CS5 and CC 2014 in a system through scripts? It is possible that this is a one-off case where the registry entries have been "accidentally" changed. However, I would like to be sure.
    I can re-install CS5 in this system where the issue is noted and probably the problem will go away. However, the scripts may be used in many different installations and I cannot possibly ask users to reinstall Illustrator everywhere. Moreover, this problem can occur sometimes in the future too. 
    Any suggestion regarding the cause and a possible full-proof solution will be highly appreciated.
    Thanks in advance,
    Joydeep Ray

    are you referring to the audio meters panel?  im on windows, and i can right click the meters panel and get options for "dynamic peaks".   there are audio effects, from the effects panel if thats what you are looking for?  i have one named "Dynamics" as well as several compressors.

  • Auto layout of photographs and 3 related questions

    using mac 10.5 and id cs4
    new to indesign but have  some exp with other software
    i have 200 photos to place on pages 11 by 17 inches--
    i have 3 other questions
    1. i create a page--now i want to add another page is there a way to do this  or do i have to create another page?---save as preset maybe?
    2. now i want to add to these pages automatically 200 photographs 4 by 6 inches
    if i need to create boxes for the  photos how do i create a preset box?
    sorry for the number of questions but they are all related and i assume this has been addresss before but net homework lead nowhere
    i incidently tried ps elements but would not install on my mac version
    i have a copy of ps cs4 also
    really frustrated at this point
    tia
    peter
    i looked into creating a book but could not find way to increase the size of the book pages

    Bustaroo wrote:
    problem with tutorials for me ( more that 40 years of using various
    software) is that they all do the basics its only in the finer points that
    they differ!!!
    I hope this doesn't come across the wrong way; I mean it positively, from my own experience as a user and trainer: The "finer points" of difference between software products that seem to do similar things, are not trivial! My French teacher told us that there are some important rules, like, "All nouns that end in 'e' are feminine! (pause) EXCEPT..." and then he gave some of the many common exceptions.
    X-number of years doing <whatever> usually means X-number of years doing what I've learned to do and what behaves as I've learned to expect to behave. Those solid lessons and habits sometimes interfere with seeing other possible approaches, techniques, and outcomes for the same starting points. It's terribly frustrating to find that your reliable tools aren't effective. If you ever were comfortable with driving a stick-shift car, then changed to an automatic-transmission car, think of how many times you were surprised and frustrated when you stomped your left foot onto a non-existent clutch, until you adjusted to your new environment.
    P Spier wrote:
    A Document is a single file, which can contain one or many pages. Pages appear in "spreads" that can contain from one to ten pages. To save a document, use the File > Save or Save As... commands -- nothing odd about that.
    Are you familiar with the concept of the Master Page? Master pages are like templates for pages. Put stuff on the master page, then any document page based on that master page will have those elements in place (but they will not be selectable without overriding). You can hover a loaded "Place Gun" over an empty master frame and click, and the ID will automatically override that frame and put the content into it.
    Some people are comfortable thinking of a master page as a background that "shows through" on the document pages that the master is applied to.
    By default, every new document starts with two master pages, [None], which is used when you have other masters and you need a page with no master items, and A-Master which is the default name for the default master page applied to any pages when you first create the document. It starts out blank, unless you've checked the box for automatic text frame in the document setup, then it will have a single text frame that fills the are inside your margin guides. If you've selected "Facing pages" in Document setup, A-Master will actually be a two-page spread (with the spine in the center) and any automatic text frames will be "threaded" from left to right across the spread so that you can "autoflow" text. Automatic text frames are NOT required in most cases and are often a hindrance rather than a help. Page setup, including dimensions, margins, columns, and bleeds, is all together in the document setup dialog when you first create a file (you are creating the margins and columns for A-Master), but not all pages need to have the same margins or column setup (nor even the same size as of CS5), so once a document is created, you'll find margin and column adjustments under the Layout Menu. Changing the basic page size is still found under the Document Setup command in the file menu, but adjusting the size of an individual page in CS5 is done with the Page tool.
    A Book, in InDesign parlance, is a container for a group of document files that allows you to work on sections without having to scroll through one huge file and also allows for synchronizing colors, styles and even master pages across all the files in the Book. Individual documents may be included in more than one book, if you like, which allows you to multi-purpose documents.
    For some users, the idea of a book as a container for a group of files, thinking of the book as a folder, is fine. But other users may be more comfortable thinking of a book as a list of file names that should be treated as a single group, and the instructions for paginating, and applying other properties to them.
    Trust me, InDesign is a VERY complex bit of software, and you'll benefit immensely form buying Sandee's book or getting a subscription to Lynda,com.
    I like to think of InDesign as a pretty straightforward software application, and that its sheer number - several hundred - of specialized "core" plug-in components is what makes it complicated. There's at least a bit of learning necessary to take advangage of each  of these "building blocks."
    Please keep returning with your questions as you progress.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

Maybe you are looking for