Adjust Slideshow (autoviewer) position withih a page frame

Can anybody tell me...
Once you've created a page frame how do you position the slideshow or item within that frame? which file affects it, and what setting?
Example
http://web.mac.com/coreydee/iWeb/DEMO/Photo%20Page.html

You'll basically have to figure out what the minimum dimensions are for the slideshow you want and then make your textbox/iframe dimensions at least as big. Think of the textbox/iframe as a mask or a cutout through which your slideshow is being displayed. If the slideshow is bigger than the cutout, then parts of it will be cutoff.
The original AutoViewer files should be completely scalable to whatever dimensions you choose. But if you use iPhoto Export, it may disable this feature. What you can do is to use something else to produce your AutoViewer slideshow, like WebExport ( http://mountainmandan.net/webexport/ ) which purportedly leaves the scaling capability intact. Or you can go to http://www.airtightinteractive.com and download the original AutoViewer files and then replace the following files with the ones iPhotoExport gives you...
gallerydata.xml
images folder
Here's an example of the scaling...
This is the displayed page with the iframe...
http://web.mac.com/jwtseng/iWeb/kate/MyWorld/526EAB19-F722-4899-8D92-43849B193C6 1.html
And this is the direct link to the slideshow...
http://homepage.mac.com/jwtseng/playground/
Try dragging the browser window smaller and larger on the slideshow page to see the automatic scaling capabilities of AutoViewer (and most Flash content).

Similar Messages

  • How can I use the "Copy and paste" tool in order get stamps in the same position in different pages (Acrobat XI for PC)?

    With Acrobat 6.0 I was able to copy a stamp in the same position (I mean "exactly" the same one) of different pages just by using the "copy/past" tool.
    Now I am using Acrobat XI and it seems like it is not possible anymore: I am copying a stamp and I am trying to past it in anoter page, but it appears in the center of the page (or wherever it wants to...).
    Does anyone have a solution?
    Thanks in advance.

    Thank you very much. I'll be waiting for you message.
    Messaggio originale----
    Da: [email protected]
    Data: 26/01/2015 17.56
    A: "Umberto Gangi"<[email protected]>
    Ogg:  How can I use the "Copy and paste" tool in order get stamps in the same position in different pages (Acrobat XI for PC)?
        How can I use the "Copy and paste" tool in order get stamps in the same position in different pages (Acrobat XI for PC)?
        created by Gilad D (try67) in Creating, Editing &amp; Exporting PDFs - View the full discussion
    Well, I was in the same situation so I've developed a tool that allows one to do it. I will send you some additional information about it in a private message.
         If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/7132586#7132586 and clicking ‘Correct’ below the answer
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/7132586#7132586
         To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, &amp; "Stop Following"
         Start a new discussion in Creating, Editing &amp; Exporting PDFs by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

  • How to make the graph follows the position of the video frame

    Hai..
    I want to open the video (. avi) and graph together in one VI.. The videos and graphs can be controlled (forwarded or rewind) in the desired position.. However, the graph should follow where's the position of the video frame..   The graph generated from the data in excel, after reading data, then there is the processing of signals, such as filter, mean, find the peak, etc.. After that the result will appear in the graph..
    Until now, I've been able to display video and graph.. I'm trying to use WMP and also IMAQ..
    Because I want to show the position of the graph or signal when the video plays, I was making a cursor or a line on a graph that follows the position of the video..
    First, I'm trying using WMP.. I can forward and rewind video using WMP, after that I make a cursor on the graph and the position of cursor I put in the position video.. And then when I run the program, the signal that arises from the right, but the cursor in the graph follow the position of the video (the cursor appears on the left) different side with the signal..
    I also tried using IMAQ when I tried to use the video controls, so the video can be forward or rewind using the slide, and I made a graph control to follow the video.. But the video isn't playing, it just show only images or frame in the video..
    Can we create a graph that can follow the position of the video? (graph can be in forward and rewind just like with video)
    I've tried many ways but until now have not been successful.. can someone help me?
    Any help is greatly appreciated thank you.

    This should do pretty much what you want, assuming that a slider is how you are controlling your video position. You are going to have to play around with it a little but it should give you the basic idea.
    Attachments:
    Slider.vi ‏35 KB

  • How do you change the page number position on the page and size?

    I am having difficulty changing the size/color/position of the page number in the book?  Does anyone know how to do this?
    thanx. 

    Yes, you can change the position. Do it in Master Layouts. Select the page number - a red box appears around it - select: left, center, or right justification. That will move it within the box. To move the box on the page, just drag the box to where you want it. - Fabe

  • Adjusting child node position in a StackPane

    Hello,
    I have a question about adjusting child nodes positions in a StackPane.
    I added 2 child nodes to a StackPane.
    For the 1st child node, I need it to be always as big as the parent StackPane.
    For the 2nd child node, it should only be as big as necessary to enclose a few small images and it should always be "anchored" to the upper-right corner of the parent StackPane.
    The 2 childs nodes will always overlap.
    Is this doable with a StackPane or would it be better to use a different Pane class?
    Thanks.

    Yes, you can do this in a StackPane.
    Make the first node any Pane subclass and ensure that it has an unbounded, max width and height and it will fill the StackPane's available area completely.
    Use the static StackPane.setAlignment(node, Pos) method to position the 2nd node.
    import javafx.application.Application;
    import javafx.geometry.Pos;
    import javafx.scene.Scene;
    import javafx.scene.layout.*;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.stage.Stage;
    public class StackPanePositioning extends Application {
      public static void main(String[] args) throws Exception { launch(args); }
      @Override public void start(final Stage stage) throws Exception {
        Pane n1 = new Pane();
        n1.setPrefSize(200, 120);
        n1.setStyle("-fx-background-color: green;");
        Rectangle n2 = new Rectangle(50, 50,   Color.RED);
        StackPane.setAlignment(n2, Pos.TOP_RIGHT);
        StackPane stack = new StackPane();
        stack.getChildren().addAll(n1, n2);
        stage.setScene(new Scene(stack));
        stage.show();
    }

  • Is it possible to use the keyboard arrow keys to adjust the exact position of a text box in PE11?

    Hello all,
    Could someone please give me a tip on a precise way to move a text box a pixel to the left (or right) - any direction really, using the arrow keys on the keyboard instead of the mouse.
    This may sound like a daft question but the only way I can move a text object is by using the mouse and dragging text boxes precisely in any direction is a real pain, especially if I have many of them.
    The mouse just can't be the only way.
    I wish the arrow keys could work just like in Microsoft Word. When the text box is selected and the arrow cursor is also activated, one can adjust the exact position of the text box.
    It doesn't seem to work in Pr.Elements 11 though. I tried various combinations (Alt + left/right), (Ctrl + left/right) etc. and still nothing.
    Is this possible at all?
    Thanks in advance to those that will bother to respond.
    Pavlin

    Hi Bill,
    Thanks. We do have Adobe CC and therefore I have access to PrPro but I spent some time getting to know Element's interface already and was hoping I would not have to use PrPro, which is slightly more complicated.
    It is only small to medium edit jobs that I need editing software for anyway.
    That is a shame really!
    As far as I am aware, there is a newer version (PE12) that is now availble. Does anyone know if they have improved the functionality in terms of precise title positioning in that latest version?
    Thanks.
    Pavlin

  • New page to stay in same position as the page user is leaving

    Hi,
    I don't know if this is the right place to ask. I'm guessing it's a javascript issue but any forum I find hasn't had a question answered in weeks.
    I'm looking for a script that tells the new page to stay in the same position as the page the user just left. Example....If the user is in the footer section and clicks a link, the new page opens up in the footer section of the new page.
    I figured I'd be able to find something to achieve this but no luck so far. Any assistance would be fantastic.
    Thanks

    To offer an example of style sheet switching par excellence, visit CSS Zen Garden.  Each page contains exactly the same HTML markup but radically different cascading style sheets (CSS).
    http://www.csszengarden.com/
    Then Google Style Sheet Switcher.js
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Xml feed slideshow pasing variables to detail  page .... confusion ... Help Needed

    Hi there Everyone
    hi Gunter
    I aam having some problems...... yet again.....
    I did have this all working but now I cannot get it to work .... driving me crazy
    A few months ago I had a post on this forum to help me pass a variable from my list page to a detail page that contains an XML flash slideshow that gets, loads, feeds, its image info from a separate 'getpi.php' page that contains the xml info to feed the slideshow
    i still have my other site (still not finished) working with an art gallery that is still working fine ....the same as what I want now but I cannot copy the way I did it to my new site... very frustrating
    Now I have been trying to do exactly the same thing again but I cannot get it to work no matter how hard I try ...(more than 10 solid hours..really)
    i will start the same as before and explain what I have and what I cant get to work....
    For a start I am making a site with a lot of users with a list user and detail user pages ..... and on the detail pages I would like a slideshow that feeds form another page my 'getpic.php' page ( feed more pictures from the users... five extra pictures to be displayed in a slide show )
    I have my listusers.php page working well ... it lists my users and passes a URL variable to the detail page ..... the url variable is 'id_usr'
    I have my userdetail.php page working well.... it displays all the correct pictures from the correct users ..... I have inserted 6 different images... a main picture and all the 5 pics that need to be in the slide show..... (using show image behavior)
    (so I know that the detail page is recieving all the correct pics)
    I have the record set on my detail page set to filter by
    id_usr url varriable = id_usr
    Is that correct? .... i think it is .. . just want to be sure
    now I also have a getpic.php page (that feeds the slideshow)
    I also have a testslideshow.php page that has a slide show inserted in it and that has a recordset that is not filtered by anything .....
    When I test the testslideshow.php page it works ... It uses the getpic.php page to retrieve the pics for the slideshow and it works 100%
    So I am pretty sure the get pic page works too......
    Now it gets difficult for me .......
    The last time I asked about doing this You (Gunter)gave me some code to past at the top of me userdetail.php page and my getpic.php page....
    now I cannot get it to work at all
    First the getpic.php page.....
    The first bit of code to be put at the top of the getpic.php page is
    to be put at line 1
    (this is the same as before and still works fine on my other site)
    and I have set the record set on the getpic.php page to filter by
    id_usr session variable = session_id_usr (I have tried id_usr too)
    Does that all sound correct?
    Now my detail page
    You (Gunter)wrote me some code to stick at the top of my detail page ....
    Now I have modified this code to use my new variable 'id_usr'
    Does that sound correct?
    The recordset on my userdetail.php page is filtered by url variable id_usr
    And i have also tried to filter the recordset by session variabl = session_id_usr ( and just id_usr )
    I am REALLY lost
    I have tried every possible combination of this and I cannot get it to work I haad it working before and I cannot get it to work now .... which makes me feel even worse .......
    Could you please look at all this and tell me if ..... or what I am doing wrong .........
    I am really sorry for brining up the same topic i

    Hi there Everyone
    hi Gunter
    I aam having some problems...... yet again.....
    I did have this all working but now I cannot get it to work .... driving me crazy
    A few months ago I had a post on this forum to help me pass a variable from my list page to a detail page that contains an XML flash slideshow that gets, loads, feeds, its image info from a separate 'getpi.php' page that contains the xml info to feed the slideshow
    i still have my other site (still not finished) working with an art gallery that is still working fine ....the same as what I want now but I cannot copy the way I did it to my new site... very frustrating
    Now I have been trying to do exactly the same thing again but I cannot get it to work no matter how hard I try ...(more than 10 solid hours..really)
    i will start the same as before and explain what I have and what I cant get to work....
    For a start I am making a site with a lot of users with a list user and detail user pages ..... and on the detail pages I would like a slideshow that feeds form another page my 'getpic.php' page ( feed more pictures from the users... five extra pictures to be displayed in a slide show )
    I have my listusers.php page working well ... it lists my users and passes a URL variable to the detail page ..... the url variable is 'id_usr'
    I have my userdetail.php page working well.... it displays all the correct pictures from the correct users ..... I have inserted 6 different images... a main picture and all the 5 pics that need to be in the slide show..... (using show image behavior)
    (so I know that the detail page is recieving all the correct pics)
    I have the record set on my detail page set to filter by
    id_usr url varriable = id_usr
    Is that correct? .... i think it is .. . just want to be sure
    now I also have a getpic.php page (that feeds the slideshow)
    I also have a testslideshow.php page that has a slide show inserted in it and that has a recordset that is not filtered by anything .....
    When I test the testslideshow.php page it works ... It uses the getpic.php page to retrieve the pics for the slideshow and it works 100%
    So I am pretty sure the get pic page works too......
    Now it gets difficult for me .......
    The last time I asked about doing this You (Gunter)gave me some code to past at the top of me userdetail.php page and my getpic.php page....
    now I cannot get it to work at all
    First the getpic.php page.....
    The first bit of code to be put at the top of the getpic.php page is
    to be put at line 1
    (this is the same as before and still works fine on my other site)
    and I have set the record set on the getpic.php page to filter by
    id_usr session variable = session_id_usr (I have tried id_usr too)
    Does that all sound correct?
    Now my detail page
    You (Gunter)wrote me some code to stick at the top of my detail page ....
    Now I have modified this code to use my new variable 'id_usr'
    Does that sound correct?
    The recordset on my userdetail.php page is filtered by url variable id_usr
    And i have also tried to filter the recordset by session variabl = session_id_usr ( and just id_usr )
    I am REALLY lost
    I have tried every possible combination of this and I cannot get it to work I haad it working before and I cannot get it to work now .... which makes me feel even worse .......
    Could you please look at all this and tell me if ..... or what I am doing wrong .........
    I am really sorry for brining up the same topic i

  • Explain please differences of report, dynamic page, frame, portlet

    Hi to all -
    I am a beginner with using WebDB/Portal development so forgive me for such simple questions.
    Can someone explain or point me to a site that explains the differences between report, dynamic pages, frame drivers and portlets? I am trying to understand when I might use say a dynamic page rather than a report, etc. Also, does the PDK functionality complement Portal or is it it's own web development tool entirely?
    I thank you for your shared knowledge
    Mark

    gday Mark -
    There is actually a portal specific forum on OTN which is where the portal experts are all concentrated. See, <a href="http://technet.oracle.com:89/cgi-bin/forumdisplay.cgi?action=topics&forum=Oracle9[ii[/i+AS+Portal&number=70&DaysPrune=20&LastLogin=">Oracle9iAS Portal</a>
    If you've not seen it, there is a ton of good info available for portal. See the page for
    <A HREf="http://otn.oracle.com/docs/products/iportal/doc_index.htm">Portal</a> whitepapers, tutories, faqs, etc.
    The PDK is a set of APIs which expose the services provided by Oracle9iAS Portal. This enables you to build your own custom portlets (the building blocks of a portal and it's pages) using your preferred development language and environment. Note that you can also expose a lot of the inbuilt functionality of portal as portlets to enable the easy reuse of people's work.
    See <a href="http://portalstudio.oracle.com/servlet/page?_pageid=350&_dad=ops&_schema=OPSTUDIO">Oracle Portal Studio</a> site for more details on the PDK and portlets.
    cheers!
    -steve-
    null

  • How do you keep frames in stationary positions on a page

    I have anchored frames which have repeating frames as children my
    output are rows and columns creating cells and I can not keep my
    columns and rows lined up on a page. Things keep shifting.

    You could draw a normal frame within your last repeating frame
    around all of the fields. It should be set to vertically expand
    and, most likely, horizontal fixed. This should mean that all
    your rows start together. To ensure that your columns stay
    aligned, try setting all of the fields to horizontal fixed.
    Paul

  • How can I insert a widget slideshow into a template-based page in Dreamweaver

    HI, I Have a question that has been nagging me for the last three hours.
    I have been trying to insert a slideshow into a template based document using the insert widget function in Dreamweaver CS 5.5.  The problem is that I contine to get the error that
        "This widget requires code that must be inserted into the head of the current document.  Insertion cannot happen because the head of this document is read only."
    I have tried to edit the template file in order to make the head tag into an editable region.  I have tried to resolve the problem by eliminating the
    <!-- #BeginEditable "doctitle" --> function call and instead using the <!-- InstanceBeginEditable name="head" -->
    function, but all that does is grey out all the code on the page following the this function call.  The other side effect of using this method is that the child documents do not even have a header anymore.
    I do not know if this is just a lack of understanding how this works, or if there is a bug in Dreamweaver.
    Any help in this subject wold be appreciated. 
    The original HTML for the template in question is below.
    Header 1
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
    <html>
    <head>
    <!-- #BeginEditable "doctitle" -->
    <title>Priental Solar, Solar, Photovoltaik, PV Anlagen</title>
    <!-- #EndEditable -->
    <META NAME="Title" CONTENT="Priental Solar, Solar, Photovoltaik, PV Anlagen</">
    <META NAME="Author" CONTENT="Priental Solar, Solar, Photovoltaik, PV Anlagen">
    <META NAME="Publisher" CONTENT="Priental Solar, Solar, Photovoltaik, PV Anlagen">
    <META NAME="Copyright" CONTENT="printEFFECTS  GbR 2011">
    <META NAME="Revisit" CONTENT="After 14 days">
    <META NAME="Keywords" CONTENT="Sonnenenergie, Solar, Photovoltaik, Photovoltaik energie, solarmodul, solarmodule, solaranlagen, solarenergie, solaranlage, pv anlage, erneuerbare energie, pv anlagen, solarenergie photovoltaik">
    <meta name="abstract" content="Sonnenenergie, Solar, Photovoltaik, Photovoltaik energie, solarmodul, solarmodule, solaranlagen, solarenergie, solaranlage, pv anlage, erneuerbare energie, pv anlagen, solarenergie photovoltaik">
    <META NAME="Description" CONTENT="Hier können Sie kostenlos ein Angebot für eine PV Anlage (Photovoltaikanlage) anfordern. Priental Solar ist Ihr Partner für Planung und Installation von Photovoltaikanlagen">
    <META NAME="Abstract" CONTENT="Priental Energiesysteme & Priental Solar, Solar, Photovoltaik, PV Anlagen</">
    <meta name="classification" content="Priental Energiesysteme & Priental Solar, Solar, Photovoltaik, PV Anlagen">
    <META NAME="audience" CONTENT=" Alle ">
    <META NAME="Robots" CONTENT="INDEX,FOLLOW">
    <META NAME="Language" CONTENT="Deutsch">
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <link rel="stylesheet" href="../style.css" type="text/css">
    <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
    </head>
    <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
    <div class="back">
      <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td height="100%" align="center">
            <table width="900" border="0" cellspacing="0" cellpadding="0" height="10">
              <tr>
                <td height="10"></td>
              </tr>
            </table>
            <table width="900" border="0" cellspacing="0" cellpadding="0" height="142">
              <tr>
                <td>
                  <table width="900" border="0" cellspacing="0" cellpadding="0" height="142">
                    <tr>
                      <td width="645"><a href="../index.html"><img src="../images/top-1-2_01.jpg" width="645" height="142" border="0"></a></td>
                      <td width="255" background="../images/top-1-2_02.jpg"> </td>
                    </tr>
                  </table>
                </td>
              </tr>
            </table>
            <table width="900" border="0" cellspacing="0" cellpadding="5" height="20" bgcolor="#CCCCCC">
              <tr>
                <td bgcolor="#003366">
                  <div align="right">   <a href="../kont_schreiben.php" class="linkGrey">Kontakt</a>     <span class="linkGrey">|</span>     <a href="../anfahrt.htm" class="linkGrey">Anfahrt</a>    <span class="linkGrey">|</span>     <a href="../Impressum.htm" class="linkGrey">Impressum</a>    </div>
                </td>
              </tr>
            </table>
            <table width="900" border="0" cellspacing="0" cellpadding="5" height="3" bgcolor="#99CC33">
              <tr>
                <td bgcolor="#99CC33"> </td>
              </tr>
            </table>
            <table width="900" border="0" cellspacing="0" cellpadding="0" height="450">
              <tr>
                <td valign="top">
                  <table width="900" border="0" cellspacing="0" cellpadding="3">
                    <tr>
                      <td valign="top" width="180" bgcolor="#99CCCC">
                        <table width="180" border="0" cellpadding="10">
                          <tr>
                            <td bgcolor="99CC33">
                              <div align="left"><a href="../index.html" class="linkmmenu2">Startseite</a></div>
                            </td>
                          </tr>
                          <tr>
                            <td bgcolor="99CC33">
                              <div align="left"><a href="../Solaranlagen.htm" class="linkmmenu2">Solaranlagen</a></div>
                            </td>
                          </tr>
                          <tr>
                            <td bgcolor="99CC33">
                              <div align="left"><a href="../BHKW.htm" class="linkmmenu2">BHKW</a></div>
                            </td>
                          </tr>
                          <tr>
                            <td bgcolor="99CC33">
                              <div align="left"><a href="../heimkraftwerk.htm" class="linkGrey"><span class="linkmmenu2">Priental Heimkraftwerk</span></a></div>
                            </td>
                          </tr>
                           <tr>
                            <td bgcolor="99CC33">
                              <div align="left"><a href="../FAQ.html" class="linkGrey"><span class="linkmmenu2">Heimkraftwerk FAQ</span></a></div>
                            </td>
                          </tr>
                          <tr>
                            <td bgcolor="99CC33">
                              <div align="left"><a href="../Brandsicherung.htm" class="linkmmenu2">Brandsicherung</a></div>
                            </td>
                          </tr>
                          <tr>
                            <td bgcolor="99CC33">
                              <div align="left"><a href="../Solar-Lexikon.htm" class="linkmmenu2">Solarlexikon</a></div>
                            </td>
                          </tr>
                          <tr>
                            <td bgcolor="99CC33">
                              <div align="left"><a href="../Team.htm" class="linkmmenu2">&Uuml;ber
                                uns / Team</a></div>
                            </td>
                          </tr>
                          <tr>
                            <td bgcolor="99CC33">
                              <div align="left"><a href="../1_Referenzen4_70KwP.htm" class="linkmmenu2">Referenzen</a></div>
                            </td>
                          </tr>
                          <tr>
                            <td bgcolor="99CC33">
                              <div align="left"><a href="../newsletter_anm.php" class="linkmmenu2">Anmeldung News</a></div>
                            </td>
                          </tr>
                          <tr>
                            <td bgcolor="99CC33">
                              <div align="left"><a href="../pdf/empfehlung_heimkraftwerk.pdf" target="_new" class="linkmmenu2">Empfehlungen</a></div>
                            </td>
                          </tr>
                        </table>
                      </td>
                      <td width="20" bgcolor="#99CCCC"> </td>
                      <td valign="top" width="660" align="left" bgcolor="#FFFFFF">
                        <table width="660" border="0" cellspacing="8" cellpadding="0" height="450" bordercolor="#999933" bgcolor="#F0F8FB" align="left">
                          <tr>
                            <td align="left"><!-- #BeginEditable "content" -->{content}<!-- #EndEditable --></td>
                          </tr>
                        </table>
                      </td>
                    </tr>
                  </table>
                </td>
              </tr>
            </table>
            <table width="900" border="0" cellspacing="0" cellpadding="5" height="25" bgcolor="#003366">
              <tr>
                <td height="10" align="left">     <span class="txtBottomSm">BERATUNG
                  | PLANUNG | KOMPLETTSERVICE</span></td>
              </tr>
            </table>
            <table width="900" border="0" cellspacing="0" cellpadding="0" height="60" bgcolor="99CC33">
              <tr>
                <td height="10">
                  <table width="860" border="0" cellspacing="0" cellpadding="20">
                    <tr>
                      <td align="left"><!-- #BeginEditable "bottom" -->{bottom}<!-- #EndEditable --></td>
                    </tr>
                  </table>
                </td>
              </tr>
            </table>
          </td>
        </tr>
      </table>
    </div>
    </body>
    </html>

    Thanks for the response.
    Unfortunately, I have tried it, but continue to recieve the same error message.  I have double checked the syntax and positioning of the editable regions, and they match yours completely.  In the child page everything is editable.  Do you have any other suggestions for this perplexing problem?  Thanks
    Here is the syntax of the header tag from the child page showing all of the editable regions:
    Header 1
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
    <html><!-- #BeginTemplate "/Templates/comp.dwt" --><!-- DW6 -->
    <head>
    <!-- #BeginEditable "doctitle" -->
    <title>Priental Solar, Solar, Photovoltaik, PV Anlagen</title>
    <!-- #EndEditable -->
    <!-- #BeginEditable "meta" -->
    <META NAME="Title" CONTENT="Priental Solar, Solar, Photovoltaik, PV Anlagen</">
    <META NAME="Author" CONTENT="Priental Solar, Solar, Photovoltaik, PV Anlagen">
    <META NAME="Publisher" CONTENT="Priental Solar, Solar, Photovoltaik, PV Anlagen">
    <META NAME="Copyright" CONTENT="printEFFECTS  GbR 2011">
    <META NAME="Revisit" CONTENT="After 14 days">
    <META NAME="Keywords" CONTENT="Sonnenenergie, Solar, Photovoltaik, Photovoltaik energie, solarmodul, solarmodule, solaranlagen, solarenergie, solaranlage, pv anlage, erneuerbare energie, pv anlagen, solarenergie photovoltaik">
    <meta name="abstract" content="Sonnenenergie, Solar, Photovoltaik, Photovoltaik energie, solarmodul, solarmodule, solaranlagen, solarenergie, solaranlage, pv anlage, erneuerbare energie, pv anlagen, solarenergie photovoltaik">
    <META NAME="Description" CONTENT="Hier können Sie kostenlos ein Angebot für eine PV Anlage (Photovoltaikanlage) anfordern. Priental Solar ist Ihr Partner für Planung und Installation von Photovoltaikanlagen">
    <META NAME="Abstract" CONTENT="Priental Energiesysteme & Priental Solar, Solar, Photovoltaik, PV Anlagen</">
    <meta name="classification" content="Priental Energiesysteme & Priental Solar, Solar, Photovoltaik, PV Anlagen">
    <META NAME="audience" CONTENT=" Alle ">
    <META NAME="Robots" CONTENT="INDEX,FOLLOW">
    <META NAME="Language" CONTENT="Deutsch">
    <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
    <!-- #EndEditable -->
    <!-- #BeginEditable "head" -->
    <link rel="stylesheet" href="style.css" type="text/css">
    <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
    <!-- #EndEditable -->
    </head>

  • Is there a way to use a different slideshow on all iWeb Photo pages?

    I am getting real tired of the iWeb slideshow. Hard to adjust the timing, scales automatically even when you don't want it to, etc...
    I did some searching on this site and a few people, such as Old Toad are mentioning SimpleViewer or Jalbum. But it sounds like it has to be setup individually for each page by modifying the html file in idisk/resources, etc...
    While that would be fine for just a few pages,I have a photo blog with about 20 pages that are constantly been updated and more are added each week. I would like to be able to automatically change the default iWeb slide show to something better like Jalbum. Is there a way to do that by simply adding an html snippet on each page in iWeb directly? And if so, what would that code be for the Bananalbum as shown on OT's demo page?
    Thank you very much indeed.
    Bo

    Hard to adjust the timing
    that can be changed: http://discussions.apple.com/thread.jspa?messageID=5199553
    if you use iweb blog/podcast/photos and album templates then you need to know that they are rendered by javascript/AJAX... so you can use javascript/AJAX to alter them, slideshow and what not.
    Here are some of my examples:
    http://www.cyclosaurus.com/iWeb3Widgets/Lytebox/Photos.html
    http://cyclosaurus.com/iWeb3Widgets/Highslide/PhotosPage.html
    http://cyclosaurus.com/iWeb3Widgets/Couloir/Photos.html
    they were built in iweb with my widgets, no pre-processing, no post editing, no flash.

  • Why can't i adjust the bottom of my home page

    I recently deleted content from my home page, and rather than the bottom of the page adjusting up as it usually does, it's stuck in the old position. 
    i've tried adjusting the master page settings, and i've tried just deleting the space on the home page.  neither thing has worked and i'm not sure what else to try.
    the content i deleted was in the body of the page, not the footer.
    thanks!

    Hi
    Could you please check the page in design mode, if you have any blank object, like text box, rectangle or anything like that, specially in the footer. You can use "Select All" in Edit menu, to select all the content on the page, and try to locate it. Make sure you have unlocked everything on page, so it can select everything.
    Let me know if that helps

  • SharePoint 2013 shows the same picture library after add more than two picture library slideshow web part in one page.

    The environment is SP2013 with SP1, I had check the KB, but don't have any hotfix about this.
    I had try it on the different fram, also the same result.
    I try it on sharepoint online is work. So I think that must have hotfix about this.
    I find there is someone have the sam problem.
    http://sharepoint.stackexchange.com/questions/70944/picture-library-slideshow-issue-with-multiple-libraries
    Some snapshot about this :
    Vinci Wang

    Hi Vinci,
    Thanks for posting your issue, This is a known issue in 2013.  You could have multiple slideshow
    webparts on a page in 2010, but it won't work in 2013.  As of now there is no hot fixes for this issue. you can try code mentioned in below URL
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/5ca65f7f-770b-4b0f-8e40-d08578a6442b/sharepoint-2013-picture-library-slideshow-web-part-image-not-displaying-correct-size
    Also, check out below mentioned URLs to know more about this issue and fixes
    http://sharepoint.software.tech.answers.ninja/post/70944
    https://social.msdn.microsoft.com/Forums/office/en-US/63b2ce8c-5f31-4a39-934e-6d759e9afa0c/picture-library-slideshow-web-part?forum=sharepointgeneralprevious
    http://blog.vgrem.com/2013/04/27/beyond-the-slideshow-web-part-capabilities-in-sharepoint-2010/
    I hope this is helpful to you, mark it as Helpful.
    If this works, Please mark it as Answered.
    Regards,
    Dharmendra Singh (MCPD-EA | MCTS)
    Blog : http://sharepoint-community.net/profile/DharmendraSingh

  • Page frame

    Hi Friends,
    I am new to indesign scripting (vb.net). I want to add a page with frame content "hello world" from page 2 to 5.
    This is the code i have used
    For i = 2 To 5
    mydoc.Pages.Add()
    mypage = mydoc.Pages.Item(i)
    myframe = mypage.TextFrames.Add
    myframe.GeometricBounds = arr
    myframe.Contents = "Hello world"
    Next
    The above code adds 2 frames in 2nd and 4th page instead of adding it to the 3rd and 5th page.

    You have facing pages in your document. Objects on the left have
    different coordinates than the ones on the right.
    If you run this script on a document without facing pages, it will work as you expected. If you need it to run on a facing document, you will need to determine what should be placed in the "left" position and what in the "right" position. The difference between the left and right position is exactly the current page width.

Maybe you are looking for

  • How could I edit correctly my bullets in my html editor

    I try to manage bullets in a simple HTML Editor. To do that, I used two differents methods but they both failed. When I look at the generated source code, my tags correcty exist but in the HTMLDocument, I can't see the text well formatted. Is anybody

  • How to find the Music and Movies folder in your Finder

    I wish I bought a cheap computer with low GB space because MacBook Pro GB is not enough so you have to buy an external harddrive anyway. Anyway I wanted to delete some music files but I couldn't delete it from the Disk Inventory. I remember someone f

  • How to make report for last 24 hours?

    Hello, I have a little problem, I can't make report for last 24 hours. Example: If I am running report on 2.1.06 at 14:00, I want to get results from 1.1.06 14:00 to 2.1.06 14:00. How do i make a report with this selection? Because,if I choose date f

  • Downloading files from harddrive to lightroom2

    Please help. I can not download jpeg files from harddrive to the library in Lightroom 2. Lightroom freezes.I try to download one file or multiple files folder with the same result. I do not have this problem when downloading files from card rider.

  • Local Path Not identified

    Hi, I have an auto file which picks the queries from a file and executes in toad and place the results in a excel sheet. The content of the auto file is: SET lines 100 SET head off SET feed off SET term off SET wrap off SET verify off PROMPT COLUMN D