Integrating an interview into my iweb page

Hi Guys,
Could anyone give me any ideas about how I could integrate an interview into my iweb site. It is a long text (currently in ms word format) w and so putting it as one continuous block on one of the iweb pages would just be too much I was thinking of some kind of pop-up windows (more PDF-ish?) with navigation arrows, but I can't seem to come up with anything.
Here's the site as it stands:
www.dubkasm.com
Any tips please?
Thanks in advance!
Ben (Brazil)

Hi QTK!
Just a quick question, where will the pdf document reside? Will it automatically copy the file into the folder of the published site?
Ben

Similar Messages

  • Any idea how to "frame" another website into my iweb pages?

    Disclaimer - I'm fairly new at this, may be a rookie question.
    I want to allow info from another site to be shown & interacted with by the visitor on my iweb page. The purpose for this is to allow real estate listings (provided by a subscription-based third party) to be integrated into my site, allowing the visitor access to those listings, photos, etc, while maintaining the image & brand that I use to support/market my services. An HTML snippet is not available from the provider that allows for the level of access that I need, and once again the objective is to not direct the visitor away from my main page or from the site entirely.
    Thanks, guys - I look forward to your responses.

    Yes. See this demo page: Embed a Site Within an iWeb Page. It just takes iFrame code, the site's URL in an HTML snippet.
    OT

  • How do I manually enter code into an iweb page??

    iweb blogging is not bad; but there are times when I want to enter html code by hand; maybe a form script or CSS code.
    I tried inputting the code into the blog.html page, but it will vanish every time I update iweb.
    So; how can I manually add code to an iweb page? Surely this is possible?
    thanks

    Of course it's possible. Lots of us do that on our pages already. Two things to keep in mind...1. No way to do this via iWeb directly, so it involves editing the published html files, and 2. Because iWeb republishes the html files whenever you update the your webpage, you will lose your changes and have to redo them to add your HTML back.
    The general directions are as follows (using banner code as an example)...
    1. Decide where you want your banner and know exactly what dimensions you need.
    2. Insert a text box onto your page and adjust its size to exactly your dimensions.
    3. Type in some uniquely identifiable text like, "BANNERCODEHERE" without changing the font or anything else...just type it in.
    4. Publish your page with iWeb.
    5. Find the html file associated with your published page (either on your iDisk or in a folder depending on how you published) and open it in any text editor (like Microsoft Word, or Textedit, or anything).
    6. Scroll through the html file and locate your placeholder text, e.g. "BANNERCODEHERE".
    7. Replace the placeholder text with your html code and publish your page.
    That's it. You should see your html coded element show up where you placed the text box.
    If any of this information is useful to you, please do me a favor and mark my reply as "solved" or "helpful" using the little buttons that you see in the title bar of this reply. I would appreciate it immensely. Thank you.

  • How to publish an iCal calendar into an iWeb page?

    I want to include an iCal calendar in an iWeb page. I know this should be VERY straightforward but can't figure it out. How do I accomplish this?
    Brian

    I'm having a problem getting the iCal to publish to iWeb, so that I can have a calendar on my website with rss feed for new dates. So I put in my mobile me account name, and I do have several calendars, but there's nothing that looks like I can specify which calendar. Please don't tell me that I have to use one calendar, because I don't want my personal with my court, my court with my work, my work with my kids etc. is there a way to maintain the "public" calendar. I'm confused.
    Assuming this is doable, I did try the widget, but i keep getting an error message that page not found, we're sorry but we cannot find the ical you requested, its possible that it has been deleted or renamed.

  • Integrating XML Publisher into an OAF page

    Hello,
    I'm pretty to new to both OAF and XML Publisher...hoping someone can help me out. I created an OAF page that uses oracle.apps.xdo.oa.common.DocumentHelper to display a PDF. I created my Data Definition and Template, and tested that using concurrent manger.
    When I display my OAF page and click a button to view the PDF, the page does not show the PDF. However, when I click on the export button it opens a new window and I can view the PDF no problem.
    So I know the XML Publisher document is working, but why doesn't it display in the page?
    We are on 11.10.2 applications and 5.6.3 XML Publisher.
    Thanks,
    Johnnie
    CO:
    private static final String APP_NAME = "PTC";
    private static final String TEMPLATE_CODE = "PTC_HR_TOTAL_COMP";
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    System.out.println( "============processRequest 10" );
    pageContext.putParameter("p_DataSource",DocumentHelper.DATA_SOURCE_TYPE_BLOB);
    pageContext.putParameter("p_DataSourceCode",TEMPLATE_CODE);
    pageContext.putParameter("p_DataSourceAppsShortName",APP_NAME);
    pageContext.putParameter("p_TemplateCode",TEMPLATE_CODE);
    pageContext.putParameter("p_TemplateAppsShortName",APP_NAME);
    pageContext.putParameter("p_Locale","English:United States");
    //pageContext.putParameter("p_XDORegionHeight","95%");
    pageContext.putParameter("p_OutputType","PDF");
    System.out.println( "============processRequest 20" );
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    Serializable[] parameters = { new Integer(pageContext.getEmployeeId()).toString() };
    System.out.println( "============processRequest 30" );
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    System.out.println( "============processFormRequest 10" );
    if (pageContext.getParameter("ViewStatement") != null)
    Serializable[] parameters = { new Integer(pageContext.getEmployeeId()).toString() };
    BlobDomain result = (BlobDomain) am.invokeMethod("getXMLData", parameters );
    System.out.println( "============processFormRequest 20" );
    pageContext.putSessionValueDirect("XML_DATA_BLOB", result );
    System.out.println( "============processFormRequest 30" );
    AM:
    public BlobDomain getXMLData( String personId )
    BlobDomain blobDomain = new BlobDomain();
    OADBTransaction oadbtransaction = getOADBTransaction();
    System.out.println( "============getXMLData 10" );
    try
    String dataDefCode = "PTC_HR_TOTAL_COMP";
    String dataDefApp = "PTC";
    // Create the new data template
    DataTemplate datatemplate = new DataTemplate(((OADBTransactionImpl)getOADBTransaction()).getAppsContext(), dataDefApp,dataDefCode );
    // Set the parameters
    Hashtable parameters = new Hashtable();
    parameters.put("p_person_id", personId );
    datatemplate.setParameters(parameters);
    // Process the template
    datatemplate.setOutput(blobDomain.getBinaryOutputStream());
    datatemplate.processData();
    catch(SQLException e)
    throw new OAException("SQL Error=" + e.getMessage(),OAException.ERROR);
    catch (XDOException e)
    throw new OAException("XDOException" + e.getMessage(),OAException.ERROR);
    catch(Exception e)
    throw new OAException("Exception" + e.getMessage(),OAException.ERROR);
    return blobDomain;
    }

    Hi Steve,
    I tried the approach you mentioned using IFRAME and found that,i am able to get the region in the end of the page, but its displaying the error message "Page not Found".
    Can you please let me know, what could be the reason.
    Here is my code
    In Controller( Process Request):
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    BlobDomain result = (BlobDomain)am.invokeMethod("getXMLData");
    pageContext.putSessionValueDirect("XML_DATA_BLOB", result);
    // Outputs letter in PDF format inline.
    String redirectURL = DocumentHelper.getOutputURL(pageContext,"XXJSDATA","XXJS_SAC_CPD",result.getInputStream(),"RTF",null,"en","US");
    OAHTMLWebBean outRegion = (OAHTMLWebBean)createWebBean(pageContext, HTML_WEB_BEAN, null, "IFRAME");
    outRegion.setHTMLAttributeValue("src",redirectURL);
    outRegion.setHTMLAttributeValue("width", "50%");
    outRegion.setHTMLAttributeValue("height", "50%");
    outRegion.setHTMLAttributeValue("title ","XXJS_SAC_CPD");
    outRegion.setHTMLAttributeValue("name ","XXJS_SAC_CPD");
    pageContext.getPageLayoutBean().addIndexedChild(outRegion);
    In AM:
    /**Get XML Data*/
    public BlobDomain getXMLData()
    BlobDomain blobDomain = new BlobDomain();
    OADBTransaction oadbtransaction = getOADBTransaction();
    try
    System.out.println("Now Calling Template to get XML Data>>>");
    String dataDefCode = "XXJS_SAC_CPD" ;
    String dataDefApp = "XXJSDATA";
    DataTemplate datatemplate = new DataTemplate(((OADBTransactionImpl)getOADBTransaction()).getAppsContext(), dataDefApp,dataDefCode );
    datatemplate.setOutput(blobDomain.getBinaryOutputStream());
    datatemplate.processData();
    System.out.println("Got XML Data>>>");
    catch(SQLException e)
    throw new OAException("SQL Error=" + e.getMessage(),OAException.ERROR);
    catch (XDOException e)
    throw new OAException("XDOException" + e.getMessage(),OAException.ERROR);
    catch(Exception e)
    throw new OAException("Exception" + e.getMessage(),OAException.ERROR);
    return blobDomain;
    Kindly help.
    Thanks,
    S

  • Can you imbed a Paypal html  button into an iweb page?

    I would like customers to be able to purchase a few products from me.

    Go to this page and click the PayPal button...
    http://www.iwebformusicians.com/DistributeandPromote/ECommerce.html

  • Embed video into iweb page

    Is there any way to embed video into my iWeb page without making an external HTML file?
    Thanks.

    QuickTime Media Link format. One of mine as an example:
    http://homepage.mac.com/kkirkster/.Public/wwdc_keynote.qtl
    They are text based files that download when clicked so there is no need for any addition html code to open a new page.

  • How can I export iDVD into iWeb Page?

    I made a short DVD by sending iPhoto pictures to iDVD. Everything works fine: music, captions etc., but I cannot get it into my iWeb page. Is there any way now to export it to iMovie so iWeb can take it?
    Frank

    Frank:
    You need to export the slideshow from iPhoto to a Quicktime movie and then add that movie to iWeb. Did you export just the photos and add the music, captions, etc there?
    There are a couple of ways to add a movie to iWeb and avoid having the movie load while the page is loading: 1 - QT movies; 2 - Opening Movie in New, Specially Sized Window.
    The key is toexport out of iPhoto as a QT movie.
    OT

  • Looking for 'music player' widget to play songs dragged onto iWeb page

    Has anyone found a 'music player' widget that can be embedded into an iWeb page, and that can then load and play the songs that have been dragged onto that page?
    I have found several such widgets that can scan a URL for mp3 files, and I have successfully embedded each of those widgets into an iWeb page using the HTML Snippet, but none of them could find the mp3 files that I dragged onto the page, even though I supplied the widget with the URL for that page.

    Wyodor, I just wanted to let you know that I am having a lot of fun with the WimpyPlayer, and I like the skin you sent me. Thank you so much.
    I've been playing around with it. I had to reduce the height of the widget to fit on my webpage, but when I did, the text became too small to read, so instead, I went into the skin's jpeg and cut out the midsection of the playlist area. Then I had to readjust the playlist's number of lines displayed and its slider size to fit. I also changed the color scheme to match my webpage, and some of the Help tags. All in all, it looks great, and I am very happy with it.
    The one feature I miss from when I was using iWeb's built-in QuickTime player is the ability to have a photo (such as an album cover) displayed with the music. Do you happen to know of any music players that enable you to attach a photo with each track or album?

  • Ical in my Iweb page

    I can not figure out how to put a calendar into my Iweb page since the upgrade. Anyone have any suggestions.

    Martin:
    I don't know if this will work for all viewers but go to our calendar online and set the preferences to have monthly as the default and hit the Apply button. That will set it for you but don't know if it will carry over for other users.
    You can try my embedded calendar in this test page and see if you get weeks or months. I get months when I load the page.
    OT

  • Increasing Mobile Me Gallery on iWeb Page

    I am inserting a MobileMe Gallery into my Web Page. Unfortunately the size is to small 160 x 140.
    I want to at least double the size.
    I click on the outer edge and find the 6 small boxes that would normally allow increase/decrease
    and no change of cursor when over the box.
    I have looked in Inspector and the size cannot be altered.
    Is there any way to increase the size.
    Any assistance gratefully appreciated.

    That size if fixed by iWeb. However, you can embed the gallery itself into an iWeb page, using any of the modes, mosaic, grid, etc. as in this demo page: MobileMe Galleries and Quicktime Movies. But changing the size of the widget is a user function. You can send a feature request to Apple via http://www.apple.com/feedback/iweb.html.
    OT

  • Embed SlideShowPro for Lightroom in iWeb page?

    I would like to embed a SlideShowPro for Lightroom gallery in an iWeb page.
    Does anyone know if (and how) this would be possible?
    Previously, I have used Soundslides for making photo galleries - getting the embed code is extremely simple and embedding into an iWeb page takes seconds.
    SlideShowPro is proving to be far more difficult...
    Many thanks!

    From the description at [their site|http://slideshowpro.net/products/slideshowpro/slideshowproforlightroom] I learn that it publishes to a webpage.
    +You either export your slideshow to a folder on your hard drive then manually upload it to your web site+
    So you have a webpage you can display in the browser.
    If you want to display it inside a iWeb page, you have to use the HTML Snippet. Paste this line in it
    <iframe src="top.html" frameborder="0" width="100%" height="159" scrolling="no">></iframe>
    The src is the link to your slideshow page and the width and height depend on the size of that slideshowpage.

  • HTML Snippet Challenge: how to add falling snow to my iweb pages?

    Using the source code and assets provided on this site...
    http://www.schillmania.com/projects/snowstorm/
    ...can anyone help me with embedding this into my iweb pages? The snippet html is a snap, but I don't know how to link the folders containing the images or the script.
    I am working with version# 1.3.20081215.
    And if this won't do it, can anyone recommend another way that I can embed falling snow on my iweb pages?
    Thanks for any help.

    Welcome to the discussions. This may help (or it may not)...
    http://web.mac.com/catucker/InsideOutside/Javascript.html

  • Embedded simpleviewer gallery in iWeb page

    I've been doing a lot of research looking up on different sites and I've come up with a battle plan. I want to embed a simpleviewer gallery into my iweb page. Right now, I have a gallery set to open up in a separate window, and it's working fine. I'd either like to hide the address bar or embed the simpleviewer gallery right into the page, so instead of just the gallery opening up in its own webpage, the new page would include the rest of my links, and images. I think that an html snippet is the way to go, but I don't know how to obtain all the proper html to make it work. Does anybody know how to get it? iWeb's help section for html snippets is ironically incredibly unhelpful.
    Here's a link to the gallery as it is now.
    http://web.mac.com/soncraig/Cami&_Stevesv/index.html
    I guess I should mention that I've seen it done before, I'm not just making something up. Here's a link to an autoviewer gallery that I've seen, and it's embedded into the iWeb page.
    http://www.rowan-cottage.co.uk/Site/Teacher.html

    Okay, here's some code that you provided for a flash video.
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="309" height="206" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab #version=8,0,0,0">
    <param name="src" value="http://web.mac.com/wyodor/_Flash/anpplayer.swf?file=http://eclogite.geo. umass.edu/funstuff/flash/Mixotricha.flv&amp;autoStart=true" />
    <param name="autoplay" value="true" />
    <param name="loop" value="false" />
    <param name="controller" value="false" />
    <param name="kioskmode" value="false" />
    <param name="cache" value="true" />
    <param name="scale" value="tofit" />
    <object type="application/x-shockwave-flash" data="http://web.mac.com/wyodor/_Flash/anpplayer.swf?file=http://eclogite.geo.u mass.edu/funstuff/flash/Mixotricha.flv&amp;autoStart=true" width="309" height="206">
    <param name="autoplay" value="true" />
    <param name="loop" value="false" />
    <param name="controller" value="false" />
    <param name="kioskmode" value="false" />
    <param name="cache" value="true" />
    <param name="scale" value="tofit" />
    </object>
    </object>
    Here's a link to my gallery,
    http://web.mac.com/soncraig/Cami&_Stevesv/index.html
    and here's a link to the rough page that I made for it
    http://web.mac.com/soncraig/CraigSalmond_Photography/About2.html
    Exactly which parts do I need to edit? I have a basic understanding of html, but I don't know how to link the gallery files to my iWeb page. Also, the Simpleviewer code doesn't look anything like some people say it should. For example, http://www.rowan-cottage.co.uk/Site/SimpleViewer.html
    Is this page not accurate? Is it dealing with an earlier version of Simpleviewer?

  • Who logs into my web page?

    Is there a way for me to see who logs into my iWeb page?

    Try statcounter: http://www.statcounter.com/

Maybe you are looking for