CS3 AE: Problem with Template!

I purchased a set of templates for After Effects…they appear to be precisely what I need what there is a strange problem.
There are 14 slots on the timeline but number one repeats! The first image repeats at around 32 seconds...thus creating 15 images total. I have been struggling for two days with this...I assumed that I had inadvertently done something to the template. However, I played the preview video and it does  the same thing! The template is perfect for my needs but the repeating image is totally frustrating. To state the problem another way…what image you put in the first slot repeats at about 32 seconds. I suppose I could just chop the end off but that would mean throwing away 25% of the template. And besides, I am just too darned stubborn to give up.
I am less than an expert with AE...I have tried looking in the flowchart to see if I can figure out what is happening but with no luck.
If you could look at this I would you my every lasting thanks:
Instructions: http://www.box.net/shared/19aern6tg585431svnhf
Template: http://www.box.net/shared/ydvp6i26u4ldarzry6v6
Preview:  http://www.box.net/shared/jksk51kyu9qg5vikf5ac
These do not contain viruses…but you may want to run your AV on them to be sure.
Thank you. Thank you.

The first thing to do is look at the Edit Comps Image 01 in the Project Panel. You'll see that it's used 2 times. Right click on the comp and it will reveal the two comps that it's used in.
Now check out layer 7 in the Comp1 precomp. That's where all of the animation takes place. There's the second copy of the pre-comp where image 1 is used. There's an error in the template. You could easily fix it by duplicating one of the Image precomps and dropping a new image in it, then replacing Image one in Image 01 Precomp Final 2.

Similar Messages

  • Problems with Template JDeveloper 11g

    Hi! I have problems with template in Jdeveloper 11g.
    I had created jspx page from templeate:
    <?xml version='1.0' encoding='windows-1257'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=windows-1257"/>
    <f:view>
    <af:document>
    <af:form>
    <af:pageTemplate viewId="/augiTemplate.jspx">
    <f:facet name="mainArea"/>
    </af:pageTemplate>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    THERE are error:
    JSF page template at path /augiTemplate.jspx requires a model binding!!!
    Why it is so an what it means? Pleas help!
    Best regards!

    Hi,
    it means that your template has an ADF binding (PageDef) reference. When you create a page in the JSF page dialog and assign the template then the binding reference is created for you. You should see a bulb in the page source editor. Press it an it should create the missing binding for you
    Frank

  • Problems with templates overtaking first line?

    Has anyone else had a problem with templates taking over the first line of code in any page that a template is applied to?
    I created a template that starts like this:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- TemplateBeginEditable name="head" -->
    but when that particular template is applied to a page it writes this to the code:
    <!-- InstanceBegin template="/Templates/default.dwt" codeOutsideHTMLIsLocked="false" --><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
            "http://www.w3.org/TR/html4/strict.dtd">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="head" -->
    I don't particularly mind this, but in IE8, because the comment is the first line - and NOT the doctype, it forces the browser into another doctype and breaks the page.
    Has anyone experienced this?
    I've tried re-creating my templates, but I'm not finding the reason why it decides to place that comment in the beginning sometimes..

    The problem may be that the comment is on the same line as the doctype, try putting a blank line between the template comment and the doctype statement
    e.g.
    ..... IsLocked="false" -->
    <!DOCTYPE HTML .....
    The comment is place in the line before the doctype to enable editing of server side code, (php, asp, .net, etc.).
    PZ

  • Compilation problem with templates while using option -m64

    Hi,
    I have compilation problem with template while using option -m64.
    No problem while using option -m32.
    @ uname -a
    SunOS snt5010 5.10 Generic_127111-11 sun4v sparc SUNW,SPARC-Enterprise-T5220
    $ CC -V
    CC: Sun C++ 5.9 SunOS_sparc Patch 124863-01 2007/07/25
    Here is some C++ program
    ############# foo5.cpp #############
    template <typename T, T N, unsigned long S = sizeof(T) * 8>
    struct static_number_of_ones
    static const T m_value = static_number_of_ones<T, N, S - 1>::m_value >> 1;
    static const unsigned long m_count = static_number_of_ones<T, N, S - 1>::m_count + (static_number_of_ones<T, N, S - 1>::m_value & 0x1);
    template <typename T, T N>
    struct static_number_of_ones<T, N, 0>
    static const T m_value = N;
    static const unsigned long m_count = 0;
    template <typename T, T N>
    struct static_is_power_of_2
    static const bool m_result = (static_number_of_ones<T,N>::m_count == 1);
    template <unsigned long N>
    struct static_number_is_power_of_2
    static const bool m_result = (static_number_of_ones<unsigned long, N>::m_count == 1);
    int main(int argc)
    int ret = 0;
    if (argc > 1)
    ret += static_is_power_of_2<unsigned short, 16>::m_result;
    ret += static_is_power_of_2<unsigned int, 16>::m_result;
    ret += static_is_power_of_2<unsigned long, 16>::m_result;
    ret += static_number_is_power_of_2<16>::m_result;
    else
    ret += static_is_power_of_2<unsigned short, 17>::m_result;
    ret += static_is_power_of_2<unsigned int, 17>::m_result;
    ret += static_is_power_of_2<unsigned long, 17>::m_result;
    ret += static_number_is_power_of_2<17>::m_result;
    return ret;
    Compiation:
    @ CC -m32 foo5.cpp
    // No problem
    @ CC -m64 foo5.cpp
    "foo5.cpp", line 20: Error: An integer constant expression is required here.
    "foo5.cpp", line 36: Where: While specializing "static_is_power_of_2<unsigned long, 16>".
    "foo5.cpp", line 36: Where: Specialized in non-template code.
    "foo5.cpp", line 26: Error: An integer constant expression is required here.
    "foo5.cpp", line 37: Where: While specializing "static_number_is_power_of_2<16>".
    "foo5.cpp", line 37: Where: Specialized in non-template code.
    "foo5.cpp", line 20: Error: An integer constant expression is required here.
    "foo5.cpp", line 43: Where: While specializing "static_is_power_of_2<unsigned long, 17>".
    "foo5.cpp", line 43: Where: Specialized in non-template code.
    "foo5.cpp", line 26: Error: An integer constant expression is required here.
    "foo5.cpp", line 44: Where: While specializing "static_number_is_power_of_2<17>".
    "foo5.cpp", line 44: Where: Specialized in non-template code.
    4 Error(s) detected.
    Predefined macro:
    @ CC -m32 -xdumpmacros=defs foo5.cpp | & tee log32
    @ CC -m64 -xdumpmacros=defs foo5.cpp | & tee log64
    @ diff log32 log64
    7c7
    < #define __TIME__ "09:24:58"
    #define __TIME__ "09:25:38"20c20
    < #define __sparcv8plus 1
    #define __sparcv9 1[snipped]
    =========================
    What is wrong?
    Thanks,
    Alex Vinokur

    Bug 6749491 has been filed for this problem. It will be visible at [http://bugs.sun.com] in a day or two.
    If you have a service contract with Sun, you can ask to have this bug's priority raised, and get a pre-release version of a compiler patch that fixes the problem.
    Otherwise, you can check for new patches from time to time at
    [http://developers.sun.com/sunstudio/downloads/patches/]
    and see whether this bug is listed as fixed.

  • CS4 Problem with Template Updates

    There's another thread on this subject, but I couldn't see any final resolution.
    I'm having a problem with Template Update.
    I  have all pages in site linked to a single template.  I built the template 1st and  then created each page from the template using normal method.
    When  I now make a change to the template, I save the template and it  automatically saves and opens a box to select pages to update. I  do NOT have to use the Updates feature on the top menus, but I have done  that too just to try different things. When I select all the files,  it updates them all, most of them correctly. BUT, one or several of them  will have a NEW Main Content (and sometimes header) superimposed on top  of the existing Main Content (or header). It shifts the page downward and to the right.  By the way, down below the screwed section, the content is all still there and the original template is still intact under the screwed up area.
    To fix it, I create a new page from  the template and start over inserting the Main Content, which is nothing  special, just formatted text.  Next time I update, that same page will  always get screwed up again, but sometimes 1 or more different pages  will also get screwed up in the same way, always with a new nested Main  Content area (on top of the original or sometimes pushed down half a  page).
    I thought it might be because of a nested Main Content in that section of the template, but I see none, or any other abnormal html.  It does not do this to all 20-30 pages, just one every time and one or more random ones.  I see nothing in html different from one page to the next.
    Don't know how to attach documents to this, but I have the template and two of the screwed up pages to send.
    Charlie
    [email protected]

    The site is http://www.michaelchekhov.net
    Public directory is /public_html, but that's the root, so the links below should work.
    These pages are out of their normal directory, so the supporting  links won't work, but you can see the code. Look at the home page and  you can see what all the pages are supposed to look like.
    The template which created the problem with the pages below is at /support/TEMPLATE index.dwt
    The page that consistently fails is called poatool.html - the bad one is at /support/BAD poatool.html
    A 2nd page that failed on that UPDATE is there also - /support/BAD bibliography.html
    The currently working copy of the page that fails everytime is /articles/poatool.html.
    Thanks.
    Charlie

  • Problem with templates in Dreamweaver...

    I'm using Dreamweaver 8 and here is my dilema... Originally I
    had my
    template named something different. I changed the name of the
    template and
    now my other pages that run off that template wont work
    because of this
    code...
    <html><!-- InstanceBegin
    template="/Templates/index2.dwt"
    codeOutsideHTMLIsLocked="false" -->
    <head>
    I obviously changed the name of the template so it is no
    longer index2.dwt.
    The problem is is that this code doesn't actually show up in
    the template
    itself it shows up in the pages that are using that template.
    I want to
    know how I go about changing this bit of code in all my pages
    that use the
    template without having to do it by hand. There must be an
    easy way?
    Thanks!
    Chris Jumonville

    Good luck!
    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
    ==================
    "Chris Jumonville" <[email protected]> wrote in
    message
    news:[email protected]...
    > Murray,
    >
    > Nope, I messed up. I accidently changed the name of the
    file without
    > doing it in Dreamweaver so that is my fault. Thanks for
    the useful
    > information about the find and replace feature. I didn't
    know it would be
    > able to do it in the template is the files were closed.
    I think I tried
    > it while they were open and that is why it didn't work.
    Easy fix and I
    > just took care of it! Thanks!
    >
    > -Chris
    >
    > "Murray *ACE*" <[email protected]>
    wrote in message
    > news:[email protected]...
    >>> I did try remanimg the template from index2.dwt
    to my new template name
    >>> and for some reason Dreamweaver didn't handle
    the rest.
    >>
    >> Did you do this by selecting the file in the Files
    panel, and renaming it
    >> there? DW will handle the link management if you do
    that.
    >>
    >>> I didn't know if the find and replace feature
    would work since that code
    >>> in all the pages using the template is locked...
    >>
    >> If the file is closed, DW will change the code, even
    in locked regions.
    >>
    >> --
    >> 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
    >> ==================
    >>
    >>
    >> "Chris Jumonville" <[email protected]>
    wrote in message
    >> news:[email protected]...
    >>> Murray,
    >>>
    >>> I did try remanimg the template from index2.dwt
    to my new template name
    >>> and for some reason Dreamweaver didn't handle
    the rest. I use templates
    >>> alot so I think it may just have been a glitch
    and maybe I just needed
    >>> to close and restart dreamweaver because now
    it's working fine. I
    >>> didn't know if the find and replace feature
    would work since that code
    >>> in all the pages using the template is locked...
    >>>
    >>> -Chris
    >>>
    >>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>> news:[email protected]...
    >>>>> There must be an easy way?
    >>>>
    >>>> There are several ways to do this, but the
    easiest would be to close
    >>>> all files in DW, and then do a sitewide
    search to find
    >>>> "/Templates/<name>.dwt" and replace it
    with "/Templates/index2.dwt".
    >>>>
    >>>> You could also just rename (using the files
    panel) the template from
    >>>> "/Templates/index2.dwt" to
    "/Templates/<name>.dwt", and let DW handle
    >>>> the details.
    >>>>
    >>>>
    >>>> --
    >>>> 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
    >>>> ==================
    >>>>
    >>>>
    >>>> "Chris Jumonville"
    <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>> I'm using Dreamweaver 8 and here is my
    dilema... Originally I had my
    >>>>> template named something different. I
    changed the name of the
    >>>>> template and now my other pages that run
    off that template wont work
    >>>>> because of this code...
    >>>>>
    >>>>> <html><!-- InstanceBegin
    template="/Templates/index2.dwt"
    >>>>> codeOutsideHTMLIsLocked="false" -->
    >>>>> <head>
    >>>>>
    >>>>> I obviously changed the name of the
    template so it is no longer
    >>>>> index2.dwt. The problem is is that this
    code doesn't actually show up
    >>>>> in the template itself it shows up in
    the pages that are using that
    >>>>> template. I want to know how I go about
    changing this bit of code in
    >>>>> all my pages that use the template
    without having to do it by hand.
    >>>>> There must be an easy way?
    >>>>>
    >>>>> Thanks!
    >>>>> Chris Jumonville
    >>>>>
    >>>>
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • [CS3] Publish problem with no valid HTML templates

    Hi,
    I have a project file which I have publish numerous times
    before without problems. It has come to finally publishing it for
    the last time and when I go to publish an error messages comes up
    saying...
    "no valid HTML templates are avaliable to complete this
    operation".
    I have reinstalled the app again but still getting the
    problem.
    Any ideas...

    I get to the point where you select Publish Settings in the
    file menu but then it comes up with the error message...

  • Problem with template and ie

    I'm running through a weirg problem here. I've designed my webpage and everything worked fine in chrome , firefox and explorer 8. So I saved it as a template and created a basic page with it (normal html/css here, very simple). The probleme is that now, everything is messed up but only in explorer (page not centered, big empty space added somewhere). And then, when I remove the editable regions markers ( <!-- TemplateBeginEditable name="head" --> <!-- TemplateEndEditable --> ...) and save it back as a normal html page without templates, it is working fine again.
    Can someone help me please?
    Thanks!

    I'm running through a weirg problem here. I've designed my webpage and everything worked fine in chrome , firefox and explorer 8. So I saved it as a template and created a basic page with it (normal html/css here, very simple). The probleme is that now, everything is messed up but only in explorer (page not centered, big empty space added somewhere). And then, when I remove the editable regions markers ( <!-- TemplateBeginEditable name="head" --> <!-- TemplateEndEditable --> ...) and save it back as a normal html page without templates, it is working fine again.
    Can someone help me please?
    Thanks!

  • Problems with template and page links..

    Hello community!
    I'm pretty new to dreamweaver Cs4 and am having a slight problem. I have my template.dwt file and 5 other pages which use this template layout. However when I preview my website in my browser, the template.dwt file links to all the pages, however when I click on another link (a page link) once on this page, the hyperlinks from the navigation cant be clicked. In other words the navigation turns into just text and no hyperlinks.
    I want to be able to click on any page on my website using the navigation bar, so i can go back and forth onto pages all over my website using my navigation.
    Anyone know what to do or a solution to allow me to have all the links working from the template
    Thanks

    You are being confused by a) not understanding root relative vs document
    relative links, and b) not understanding how DW previews files.
    If I have a document with a link to an image that looks like this -
    <img src="/images/foo.gif"...
    That's what's called a root relative link.
    If I preview that document in DW, then the browser gets the document, sees
    the leading "/" and reads that as the root of the hard drive, since the
    browser has no idea where the root of the site is.  Thus, the image is
    broken in the preview.
    If I have temp files enabled, then DW will secretly convert the file being
    previewed into a temporary file, and hand that to the browser.  This temp
    file has had all root relative links converted to document relative links
    (as you will see by looking at the code in the browser), and has had all
    include files actually embedded in the page, and has had all external CSS
    and js markup embedded in the page.  In other words, DW has made the
    document into a stand-alone page.
    If you do not have temp files enabled, all of these links would be broken on
    preview.
    Now - if you are using root relative links, AND you have temp files enabled,
    AND you click away from the previewed document, then all of your links will
    be broken, since DW has not made that linked file into a temp file.  This is
    what you are seeing.
    So - if you want to click away on preview, then you must use document
    relative links for the site -
    <img src="../images/foo.gif"... (for example)
    These will still work on preview since the browser knows how to determine
    the current file's location and how to follow that path.
    GEDDIT?

  • Problems with templates in DW MX 2004

    As the subject line states, I'm using Dreamweaver MX 2004.
    The problem is, I haven't made any updates to my site for a few
    months, but the last time I did make an update, the templates were
    working fine. Now when I go to make an edit to one of the
    templates, the change doesn't propagate to any of the pages based
    on that template (messages suggest that Dreamweaver can't find the
    template files, but the path to the templates is correct, and the
    templates subdirectory is intact with the templates still there as
    they always have been. It's like the pages have spontaneously lost
    all connections to the templates, but not 'really' since the pages
    still recognize editable and noneditable regions specified by the
    templates. Can someone please help?!? I'm getting a little
    desperate at this point to understand what's going on.
    (otherwise I'll be forced to remove templates from pages,
    which will cause me ALOT of time and work, and introduce the
    potential for alot of error when updating pages consistently.)
    Thanks

    Do changes to other templates work on this site? Do they work
    on other
    sites?
    Here are seven common mistakes that will result in changes
    not propagating
    from Template to child -
    1. Rename the Templates folder
    2. Move the Templates folder to some other folder level in
    the site other
    than root level
    3. Move a template out of the Templates folder.
    4. Make changes to an editable region of the template (which
    will not
    propagate)
    5. Assume that template changes can be uploaded to the server
    without also
    uploading the changed local files
    6. Corrupt the site cache so that the link between template
    and child page
    is broken
    7, Improperly create your child pages by simply opening the
    template,
    adding page specific content, and resaving the template with
    an *.html
    extension rather that its *.dwt extension. (you can tell if
    this is the case
    by looking at the code on a child page - if you see anything
    like <!--
    TemplateBeginEditable... then this is what you have done). If
    you *have
    done this*, then recreate the child pages (in DWCS3) using
    FILE | New > Page
    from Template, select the template and click CREATE.
    The 6th problem can be repaired by using SITE | Advanced >
    Recreate Site
    Cache, and the six others can be fixed by just not doing
    them. Have you
    done any of those?
    Or, read this -
    http://www.adobe.com/go/dd83ba8b
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "frostdawn" <[email protected]> wrote in
    message
    news:[email protected]...
    > As the subject line states, I'm using Dreamweaver MX
    2004. The problem is,
    > I
    > haven't made any updates to my site for a few months,
    but the last time I
    > did
    > make an update, the templates were working fine. Now
    when I go to make an
    > edit
    > to one of the templates, the change doesn't propagate to
    any of the pages
    > based
    > on that template (messages suggest that Dreamweaver
    can't find the
    > template
    > files, but the path to the templates is correct, and the
    templates
    > subdirectory
    > is intact with the templates still there as they always
    have been. It's
    > like
    > the pages have spontaneously lost all connections to the
    templates, but
    > not
    > 'really' since the pages still recognize editable and
    noneditable regions
    > specified by the templates. Can someone please help?!?
    I'm getting a
    > little
    > desperate at this point to understand what's going on.
    >
    > (otherwise I'll be forced to remove templates from
    pages, which will cause
    > me
    > ALOT of time and work, and introduce the potential for
    alot of error when
    > updating pages consistently.)
    >
    > Thanks
    >

  • CS3 gallery problem with Vista

    When I use one of the automatic gallery creators (a modified white on black - see:
    http://theearlybirder.com/insects/lepidoptera/sessiid/index.htm
    from Bridge, everything goes as before, when I was using XP. But only after finishing and uploading dozens of new galleries with hundreds of images, did I notice that when a thumbnail is clicked and the image comes up, the box below, which is supposed to have the file name was blank.
    When making more galleries, I later discovered that I had to click on a box above the image warning about Active X or scripts and then choose to unblock it. I thought this solved the problem as the names of all appeared. Then when I just finished another huge batch of galleries and images, did I notice that next time I opened such images, the names were gone, and I had to choose to unblock content every time I opened a gallery again.
    I talked with Microsoft for about 2 hours regarding this and in the end they said there was no solution as it is inherent in Internet Explorer with Vista.
    I just couldn't believe it. I had a Vista 64 machine built specifically to work on my photos as the XP machine had been so unbearably slow with Bridge and other things. Now I have high speed but can't upload the galleries as before.
    does anyone else have such a problem?

    Well, you can manually override security zone settings with your group policy editor in Vista, but it would be ill-advised due to causing a security hole. You may also selectively add your image site to your "trusted sites" in the Internet settings, which would be a better way. For more refined control, consider installing Internet Explorer 8, which takes this even further. Short of that, simply use a different template or adjust the code. It isn't done correctly and doesn't work in other browsers, either.
    Mylenium

  • Problems with template working but not working...

    Ok, so I have a template I’m using in Dreamweaver 8
    – it’s working out well, with 3 editable regions, and
    I'm using a couple of stylesheets as well. Unfortunately
    something’s happened to the template though – I’m
    able to apply it to all my pages, but within DW itself the template
    is showing up as being unstylized.... you know how a page looks
    when it doesn’t have a stylesheet attached – that plain
    white and black? That’s how my template (and all my pages
    which use the template) looks
    *within* DW. If I open up the HTML files created from the
    template, they'll show up fine in Firefox or Safari - but from
    within Dreamweaver itself it's like it's not recognizing the
    stylesheet in a way. The path is there correctly - just some how my
    template is getting in the way :(
    Has this happened to anyone? Any ideas on how to rectify it?
    I've got a main stylesheet attached (globalstylesheet.css) but I've
    never had this problem before. Help!

    Hi Murray,
    thanks for posting. Yes, I usually just do a child from the
    template and cut and paste - would that be why the template got
    screwed up.
    This is really frustrating me, since the joy of DW is the
    ability to view the code AND the WYSIWYG panel at the same time -
    but I have no such luck right now... help!
    Here is my template:
    &lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0
    Strict//EN&quot; &quot;
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;
    &lt;html xmlns=&quot;
    http://www.w3.org/1999/xhtml&quot;&gt;
    &lt;head&gt;
    &lt;!-- TemplateBeginEditable
    name=&quot;doctitle&quot; --&gt;
    &lt;title&gt;&lt;/title&gt;
    &lt;!-- TemplateEndEditable --&gt;
    &lt;meta http-equiv=&quot;Content-Language&quot;
    content=&quot;English&quot; /&gt;
    &lt;meta http-equiv=&quot;Content-Type&quot;
    content=&quot;text/html; charset=UTF-8&quot; /&gt;
    &lt;link href=&quot;../globalstylesheet.css&quot;
    rel=&quot;stylesheet&quot;
    type=&quot;text/css&quot; /&gt;
    &lt;/head&gt;
    &lt;body&gt;
    &lt;div id=&quot;wrap&quot;&gt;
    &lt;div id=&quot;header&quot;&gt;
    &lt;h1&gt;Rachel M. Murray User Experience
    Design&lt;/h1&gt;
    &lt;h2&gt;at the intersection of business design and
    technology is good user experience&lt;/h2&gt;
    &lt;/div&gt;
    &lt;div id=&quot;navigation&quot;&gt;
    &lt;ul&gt;
    &lt;li&gt;&lt;a
    href=&quot;../welcome.html&quot;&gt;welcome&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a
    href=&quot;../who.html&quot;&gt;who&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a
    href=&quot;../work.html&quot;&gt;work&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a
    href=&quot;../write.html&quot;&gt;write&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a
    href=&quot;../sitemap.html&quot;&gt;where&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
    &lt;/div&gt;
    &lt;div id=&quot;content&quot;&gt;
    &lt;div id=&quot;right&quot;&gt;&lt;!--
    TemplateBeginEditable name=&quot;body&quot; --&gt;
    &lt;!-- TemplateEndEditable
    --&gt;&lt;/div&gt;
    &lt;!-- TemplateBeginEditable
    name=&quot;leftnav&quot; --&gt;
    &lt;div id=&quot;left&quot;&gt;
    &lt;div class=&quot;menutop&quot;&gt;
    &lt;/div&gt;
    &lt;div class=&quot;menumiddle&quot;&gt;
    &lt;/div&gt;
    &lt;div class=&quot;menubottom&quot;&gt;
    &lt;/div&gt;
    &lt;/div&gt;
    &lt;!-- TemplateEndEditable --&gt;
    &lt;div style=&quot;clear:both;&quot;&gt;
    &lt;/div&gt;
    &lt;/div&gt;
    &lt;div id=&quot;footer&quot;&gt;
    &amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;img
    src=&quot;../images/tinylogo.gif&quot; alt=&quot;tiny
    logo&quot; width=&quot;16&quot;
    height=&quot;18&quot; align=&quot;top&quot;
    /&gt; &lt;span
    class=&quot;footertext&quot;&gt;Copyright
    &amp;copy; 2007 and beyond Rachel M. Murray User Experience
    Design. All Rights Reserved.
    &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp ;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Revised
    from a design by &lt;a href=&quot;
    http://www.minimalistic-design.net/&quot;
    target=&quot;_blank&quot;&gt;Minimalistic
    Designs&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;
    &lt;/div&gt;
    &lt;/body&gt;
    &lt;/html&gt;
    any help is appreciated - thanks...

  • [CS3] GREP-Problem with Anchored Objects

    Hi,
    I've the following problem:
    Lines beginning with a, b, c etc. should be formatted equally, so I use the following GREP:
    Search:
    ^([a-z])(\.??)([ \t])
    Replace:
    $1.\t
    Now there are some abc lines, which begin with an anchored object, so I tried:
    Search:
    ^(~a*?[a-z])(\.??)([ \t])
    Replace:
    $1.\t
    But with this, the anchored object is deleted. Is this a bug or am I doing something wrong?
    Thanks
    Tobias

    That's a known bug -- Dave Saunders discovered it, to his surprise, I might add. There seems to be no reason for it.

  • Word document does not open - problem with template

    I have a share point folder synced to my computer. I have repeatedly trouble opening word documents that have been created based on a specific word template (.dotx). In those cases, when I open the document in my local synced folder Word opens and
    the bottom border of Word indicates that it is "Opening" the template file. This process never seems to complete and Word must be closed through Ctrl-Alt-Del. Suggestions would be appreciated.

    Hi AlexBXL,
    DOTX files use the newer Open XML-based Word document format, which was introduced in Microsoft Office 2007.  They can opened in Microsoft Word 2007 or previous versions of Word with Open XML component support.
    You can open the DOTX files with Microsoft Word 2007 or previous versions of Word. Or you can convert the documents to the Word 2013 mode.
    Here is an article about using Word 2013 to open documents created in earlier versions of Word, you can use as a reference:
    https://support.office.com/en-sg/article/Use-Word-2013-to-open-documents-created-in-earlier-versions-of-Word-609bbdba-96f2-407b-baaf-d8e53d60d34f?ui=en-US&rs=en-SG&ad=SG
    Best Regards,
    Lisa Chen
    Lisa Chen
    TechNet Community Support

  • DW CS3 ImageViewer - problem with .swf file

    I'm trying to make a slide show in Dreamweaver for the first time. I've searched and found a lot of common problems people have - forgetting to upload the .js file, not including the .swf file, etc.
    I think I've done everything right (obviously I'm wrong though), it previews in DW, it works when I preview it in a browser, but when it's uploaded, nothing.
    But I think I've found where the problem is. The .swf file that was created doesn't seem to be the right file. When I open it, it shows a blank flash slideshow with three empty slides, just as the sample is when you first open the Imageviewer.
    But then what is DW pulling the slideshow from that works in the preview?? How do I re-export the .swf file from DW?
    Do my questions even make sense? Sorry, kinda new at all this.
    Thanks in advance.
    Oh, here is the blank page, but when I view source, the code is there.
    http://www.americanindianreport.com/imageviewer.html
    The .js file is in the Scripts folder, the .swf is in the same folder. Actually, here you can see why it doesn't work. This is the .swf file, three blank pages:
    http://www.americanindianreport.com/imageviewerflash.swf

    If you look at my last post, the js file has been overwritten with html code, and this is what will be causing the problem.
    The only solution is to delete this file insert a new flash object (any swf file will do for this), then copy the new js file to your server, as your flash will not work with this file.
    here is a short example of the js files content (not javascript), -
    <html>
    <head>
    <title>Page not found | www.americanindianreport.com</title>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <link rel="shortcut icon" href="/http://www.falmouthinstitute.com/favicon.ico" type="image/x-icon" />
    <link type="text/css" rel="stylesheet" media="all" href="/modules/book/book.css?r" />
    <link type="text/css" rel="stylesheet" media="all" href="/modules/node/node.css?r" />
    PZ

Maybe you are looking for

  • Mysite Error - The site does not contain a default keywords termstore

    I know this error has to do with the Managed Metadata Service. I recently had to delete my User Profile Service and Search Service, and then recreate new ones. Do I need to connect them to the existing Managed Metadata Service somehow? I get this err

  • JApplet won't switch image??

    Hi everyone... My JApplet was supposed to display a new image when the sign up button is pressed.. But it doesn't.. Here take a look at my source code! import java.awt.*; import javax.swing.*; import java.awt.event.*; import java.applet.*; public cla

  • General algorithm for cartesian product

    i am looking for an algorithm to get the cartesian product from a set of sets like {{1,2,3,4},{a,b,c},{x,y,z,7,15}...} - this means in most general form. google yields no results :-(. i think implementing it by myself is not a good idea.

  • Problem in footer

    Hi all, There is a strange problem in our final PDF output in the footer section along with the date we are getting the time too.Our requirement is that we need to have only the date which is fetched from the table.The query is fetching as 06/08/2007

  • Configure grid alert to mobile via SMS

    Hello All, We have oracle Grid control installed and it is sending us the email notifications. Now we want only critical alerts to be rooted to mobile by means of SMS. Does anybody has worked on configuring this? Please share .. Thank you, Anil Malka