Embedding gigapan panorama's into a webpage

Hello all,
I'm having a little issue with embedding a panorama hosted by Gigapan into my webpage. I can successfully use this chunk of code to embed it:
<iframe src="http://gigapan.com/xxxxxxx.html" frameborder="0" height="400" scrolling="no" width="100%"></iframe>
I want to be able to zoom in and out of the panorama with the mousewheel WITHOUT simultaneously scrolling up and down on the webpage itself. Does anyone have an recommendations? I thought of maybe using onmouseover to lock the webpage from scrolling while on the panorama but couldn't find a way to use onmouseover in an iframe.
Also I fully acknowledge that I am a huge noob
Thanks for your help in advanced!

Hi Phil and welcome to our community
The Captivate output files are a bit like a house of cards.
All elements are critical. Here's how they pan out.
You upload all the files to your server. Normally in the same
location.
You point your user to the HTML file.
User clicks the link pointing to the HTML file and it loads
up into the browser.
The HTML file looks for the standard.js file. Assuming it is
found, more code is added to the HTML file.
The MainMovie_skin.SWF is then loaded into the browser
window.
Internally, the MainMovie_skin.SWF knows to look for the
MainMovie.SWF and it loads up.
As each slide pointing to a .FLV is encountered, the .FLV is
loaded at that time and plays.
As for embedding into an existing page, you will need to sift
through the code for the Captivate created HTML file for clues. Are
you using a Web Development tool such as Dreamweaver, FrontPage or
Expression Web designer?
Cheers... Rick

Similar Messages

  • Embedding a Captivate Project into a Webpage

    Hi there,
    First post here so forgive me if it's excessively detailed!
    Just published my project (which contains interactive
    elements and flv video clips) to Flash and I have now have a folder
    containing the two .swf files, the flv files, .js file and the html
    file.
    When I open the html file it works fine - the project plays
    inside a pale green border that fills the browser window. I want to
    embed the project into an existing webpage (or have a popup)
    *without* the pale green border.
    I've looked at the source code of the html file and I'm not
    sure what, if anything, I should strip out. There is also no
    reference in that html code to the .swf file (only the skin.swf
    file) or any of the flv files. How does it know where to call them
    from???
    Any help would be much appreciated.
    Thanks,
    Phil.

    Hi Phil and welcome to our community
    The Captivate output files are a bit like a house of cards.
    All elements are critical. Here's how they pan out.
    You upload all the files to your server. Normally in the same
    location.
    You point your user to the HTML file.
    User clicks the link pointing to the HTML file and it loads
    up into the browser.
    The HTML file looks for the standard.js file. Assuming it is
    found, more code is added to the HTML file.
    The MainMovie_skin.SWF is then loaded into the browser
    window.
    Internally, the MainMovie_skin.SWF knows to look for the
    MainMovie.SWF and it loads up.
    As each slide pointing to a .FLV is encountered, the .FLV is
    loaded at that time and plays.
    As for embedding into an existing page, you will need to sift
    through the code for the Captivate created HTML file for clues. Are
    you using a Web Development tool such as Dreamweaver, FrontPage or
    Expression Web designer?
    Cheers... Rick

  • Embedding interactive documents into a webpage

    Hi there,
    Does anyone know of a solution, in the catalogue of Apple Technologies, that would help achieve the following interactive « read-only » result of embedding a PDF or iWork document into a webpage? Example: http://dunod.ebrochure.fr/10-plaies-internet/netbook_dunod.php (no need to refer me back to web-based hosting solutions, I need something as DRM-safed as iBooks Author for iBooks Store, but for an author’s website!).
    Thank you

    Hi Jasmine and Fiona,
    We are still have difficulties. See below the info I have been provided by our Web Services Team:
    We’d already looked at the two help topics that they’ve linked to below and I believe we’ve got the correct code snippet:
    <iframe height="580" src="https://tra-opa.custhelp.com/tra_opa/web-determinations/startsession/TRAWizardv3" width="100%"></iframe>
    We’ve even tried putting it in an (extremely) simple HTML page and we still get the same issue.  I’ve attached a copy of the page for your reference.  We’ll need to investigate further.
    We will need to resolve this in order to move our 'wizard' rulebase into a production website.
    Thank you
    Bryce

  • Embedding MP3 files into dreamweaver webpage

    I've embedded mp3 files into my webpage, but every time someone opens the page, they are prompted to either open or save the file.  I want the viewer to be able to play the song using the embedded player, without the prompt.

    Embedded players are very old school.  And it won't work for many since they need a player and appropriate browser plugins installed on their end.  The modern approach is HTML5 <audio> which is widely supported by all browsers, including mobile and tablets.  For an example of HTML5 audio, copy and paste this code into a new, blank document.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Audio Demo</title>
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <style>
    header {
        width: 500px;
        margin: 0 auto;
        text-align: center
    audio { color: red }
    figure {
        margin: 20px auto;
        padding: 20px;
        width: 500px;
        text-align: center;
        border: 1px #ccc dashed;
        clear: both;
    figcaption {
        display: block;
        clear: both;
        text-align: center;
        font-style: italic;
        padding-top: 15px;
    dl {
        text-align: left;
        margin-left: 40%
    dt {
        clear: both;
        float: left;
        width: 4.5em;
        font-weight: bold;
    line-height: 150%
    dd {line-height:150%; color:maroon}
    </style>
    </head>
    <body>
    <header> <h1>HTML5 Audio Demo</h1>
    <p><a href="http://www.w3schools.com/html/html5_audio.asp">HTML5 Audio Tutorial</a></p>
    </header>
    <figure>
    <audio preload="auto" controls >
    <!--replace demo audio files with your own-->
    <source src="http://alt-web.com/Media/Fake-Empire.ogg" type="audio/ogg">
    <source src="http://alt-web.com/Media/Fake-Empire.mp3" type="audio/mp3">
    Looks like your browser is outdated and doesn't support the audio element.
    Please upgrade to a modern browser that does.
    </audio>
    <figcaption>HTML5 Audio using OGG &amp; MP3 files. <br>
    Works in all current browsers &amp; mobile devices.<br>
    </figcaption>
    </figure>
    <dl>
    <dt>Title:</dt>
    <dd>Fake Empire</dd>
    <dt>Year:</dt>
    <dd>2007</dd>
    <dt>Artist:</dt>
    <dd>The National</dd>
    <dt>Album:</dt>
    <dd>Boxer</dd>
    </dl>
    </body>
    </html>
    Nancy O.

  • Can you embed a jar into a webpage?

    Hi, I worked out how to embed my .class file into a webpage with <applet>.
    Im using netbeans which also creates a jar which includes my audio files in the archive.
    Could I just upload the jar file and embed that into a webpage?

    slenkar wrote:
    say if i just wanted to upload the jar to the server and nothing else, could it be embedded as an applet?Yes you can. You only need to mention the jar in your HTML. Don't ask me for specifics, it's been ages since I wrote an Applet.

  • Help required in embedding flash file object into Crystal Report file.

    Hello,
          I use the default version of Crystal Report (i.e.'Crystal Report Basic For Visual Studio 2008 - version 10.5' ) which is the part of 'Visual Studio 2008', to create and display the Report. Further, as a requirement, I have to show 'Event Video' into the Report. But, as this default version of Crystal Report does not support Flash File, I uninstalled it and downloaded and installed the 30 days trial version of the Crystal Report (i.e. Crystal Report 2008 - version 12.0).
          Then, I created a new Crystal Report File using 'Crystal Report 2008 Designer', embedded the video as a Flash File(i.e. SWF file) into it. Now,  when I add this newly created Crystal Report File into my sample application, which is created using VS 2008, it does not shows the embedded video.
          So, can anybody please tell me, how can I embed the Flash File into Crystal Report, so that it will be visible in the sample application?
    I would like to appreciate your help and support.
    Thanks,
    -Yogesh.

    Symptom :
    When embedding a pdf document into a Crystal Report, only the one page shows.
    Reproducing the Issue
    Environment:
    Crystal Reports OLE object
    Cause
    An OLE object only displays the first page.
    Resolution
    Embed multiple objects, one for each page
    Or
    Use a hyperlink to the object instead
    Hope this helps!
    Regards,
    Vinay

  • Embedding MS Accessibility controls into pdf document.

    I have a pdf form running fine in a server with Adobe Proffesional 8.0,  We need to update to Adobe Pro 9.0 or Adobe Pro 10.  The app is not performing well in those higer versions of Adobe Pro because we need to capture data from a pop up window to name an output file, but the data can no be scraped from the pop up window.  I heard that the problem can be circumvented by embedding MS Accessibility Controls into the form.  Can sombody please help me understand what is "embedding MS Accessibility Controls into a pdf form"?
    Thanks

    We have the pdf rendered in a JVM in an Intranet.  The pdf is displayed using Adobe Prod 8.0, when all the required data is captured from a phone interview, a button (click) triggers a WebService to execute and send a file to a Lenux Server. 

  • I embedded some HTML code into adobe Muse but not displaying when the pages are Exporting to HTML

    I embedded some HTML code into adobe Muse and when I published the remote site on business catalyst the (Add This widget) HTML code shows up but when I exported the site to HTML pages and view the index page in the browser (Safari, Chrome, Firefox) the (Add this widget) HTML code wouldn't display on any of the pages. I've used this code before on other Muse sites not sure what could have happened. Thnx!!!

    Hi,
    Please take a look at this post for a similar discussion : Re: When i export my muse website my youtube video links stop working. Why is this?
    Regards,
    Aish

  • How to enter excell formulas into a webpage using Dreamweaver CS4

    I am new at dreamweaver and recently purchased CS4 web premium. I also bought some training videos from an Abode affilated training center on dreamweaver CS4. I was wondering how to create or hide formulas into a webpage. I am trying to enter my MS excel calculator into a webpage. Can anyone help me?
    thanks
    Mike

    Unfortunately this will not work directly in DW.
    You probably have 2 alternatives and that is, A - use JavaScript (if you are new to DW/webdesign probably not an option). B - See if there is an extension or plug-in for doing something similar.
    For pre-built extensions for DW try:   http://www.adobe.com/cfusion/exchange/index.cfm?event=productHome&exc=3&loc=en_us
    An alternative (you would have to copy/paste the code yourself would be one of the following (also check with the Microsoft site as this is (hopefully) something that may have come up before)).
    http://developer.yahoo.com/
    from Microsoft, you could check out: http://www.microsoft.com/downloads/details.aspx?FamilyID=7287252C-402E-4F72-97A5-E0FD290D4 B76&displaylang=en
    HTH
    PZ

  • How do I insert video into my webpage?

    I am using Dreamweaver 8. I have taken my camcorder video and uploaded it to youtube and copied the mp4 file to my hard drive.
    I have created a page with several videos on the page. I created a screenshot of the video and sized it to the appropriate size. I then created a link to the video mp4 file. However it opens in a separate page.
    I want to have the video open on the same page in the same location as the screenshot. Click on the image and it just starts playing.
    I notice that I can get it to do this if it is a flash (.flv) file but since all of my videos are mp4 that won't work.
    How do I insert video into my webpage? Do I convert the mp4 files to flash? How? What do I do?
    Thanks
    Matt

    The help docs tell you how:
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WSc78c5058ca073340dcda9110b1f693f21-7c9 fa.html
    or:
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WSc78c5058ca073340dcda9110b1f693f21-7ca da.html
    Or other media objects:
    http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WSc78c5058ca073340dcda9110b1f693f21-7c9 2a.html

  • [svn] 663: Fix SDK-14201: Performance: embedded images are written into the swf one byte at a time.

    Revision: 663
    Author: [email protected]
    Date: 2008-02-26 13:56:08 -0800 (Tue, 26 Feb 2008)
    Log Message:
    Fix SDK-14201: Performance: embedded images are written into the swf one byte at a time.
    This changes the way swfs are written out when they contain embedded lossless images,
    such as PNGs and GIFs. The old code had a loop to write a byte at a time; the new code
    does a single biblt. The result is a modest compilation speedup, on the order of
    several hundred milliseconds when compiling Flexstore.
    (This already went into the trunk as revision 658.)
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-14201
    Modified Paths:
    flex/sdk/branches/3.0.x/modules/swfutils/src/java/flash/swf/TagEncoder.java

    Hiya, Mike,
    It's pretty tough to work through pasted-in code. If you can, please upload a page to a server, so we can see your pages in context. We'll be able to download it and look at it.
    That said, you can do this: Find the beginning of an editable region in Code View. It will look like this:
    <!-- InstanceBeginEditable name="nameofregionhere" -->
    Click anywhere in that tag, between the opening bracket and the closing bracket.
    Then, on the vertical toolbar on the left side of the Code window, click on the "Collapse Full Tag" button. It is the one with two arrows pointing at each other. This will collapse that entire editable region. Then click the button with the two arrows pointing away from each other. That will re-open the editable region, but will highlight it.
    If you have nested regions, you will find the other inside one of the editable regions. If you copy the <!-- InstanceBeginEditable and do a search on it in that document, you will find the nested region.
    Beth

  • [svn] 658: Fix SDK-14201: Performance: embedded images are written into the swf one byte at a time.

    Revision: 658
    Author: [email protected]
    Date: 2008-02-26 11:28:16 -0800 (Tue, 26 Feb 2008)
    Log Message:
    Fix SDK-14201: Performance: embedded images are written into the swf one byte at a time.
    This changes the way swfs are written out when they contain embedded lossless images,
    such as PNGs and GIFs. The old code had a loop to write a byte at a time; the new code
    does a single biblt. The result is a modest compilation speedup, on the order of
    several hundred milliseconds when compiling Flexstore.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-14201
    Modified Paths:
    flex/sdk/trunk/modules/swfutils/src/java/flash/swf/TagEncoder.java

    Thanks John,
    I've downloaded the exif tool + the gui - I can see how it's meant to work and have successfully processed a single file (even when I got the name wrong it still copied exif time data!)
    I'll investigate further on how to do a batch and use command line
    Really appreciate your prompt response to my problem. 
    I will let you all know how I get on - will take quite a few weeks but I am confident I can get there!
    Thanks Mike
    A week later I've now got back into this.  I used the exif gui tool - which was very simple to use once I sat down with peace and quiet for 10 mins!  I successfully copied and updated the correct exif data including capture time from the original backup files.  My metadata keywords remained untouched when I then updated the metadata setting from disk in lightroom.
    exif is a great tool, and I found it easier to use than AM pro - I couldn't  see the photo attributes in the trial download so made it hard to sort by date.
    Anyway my problem was overcome thank you

  • How can I embed ical into my webpage

    Is there an easy way to embed my iCal calendar into my webpage? I already know it can be done using Google Cal but I stopped using Google Cal.

    I don't believe this can be done directly from iCal. A work around might be to save it has a .pdf file and put that in the site. Or save and upload it to Google Calendars and then insert it into the site with the supplied code. There is software that will sync iCal with Google, but I'm sorry, I can't remember what it's called.
    Good luck

  • It does not allow me go in a webpage that i could previously use, it just does not allow me to log into the webpage

    i previously using firefox could access this webpage, but it logged me out and from then onwards i could no longer logg into the webpage as it keeps denying my information to log in, it is not the webpage as i can log in using internet explorer so i assume that the problem lies with firefox and the webpage.

    Numbers documents from iOS need Numbers 3.2 on a Mac to open. And Numbers 3.2 requires Mavericks. If you are using Mavericks you can get Numbers 3.2 from the Mac App Store. It will be free IF you have Numbers 2 (iWork '09) installed. Otherwise you must buy it.
    Your other option is to send the Numbers file as an Excel file via e-mail to yourself to open with an earlier version of Numbers.

  • How do I go about embedding a jquery plugin into the building process of Adobe Muse?

    How do I go about embedding a jquery plugin into the building process of Adobe Muse?

    Many of the "Edge" fonts offered in Muse for web font use are available as open source fonts from Google or other sites like Font Squirrel. For example, a company may want to use the Exo typeface in their logo. You can use Exo as a web font within a web site created in Muse. For general graphics work, like creating a logo and other branding work, the same typeface can be installed as a system font from the sources I mentioned.
    The newest version of Muse will now allow you to use SVG graphics -a vector-based graphics format for the web. SVG objects can be scaled to any size without showing pixel jaggies. You can create vector-based type objects using any system font in Adobe Illustrator or other similar applications capable of saving SVG. Within Illustrator you can creatively manipulate those type objects, or do subtle things like adjusting letter spacing, then output it as an SVG image. I don't particularly care for the default letter spacing of many web fonts, so SVG is a fairly decent alternative.
    Most new web browsers support SVG properly. Old versions of Internet Explorer (8 and earlier) and some older mobile web browsers don't support SVG without user-installed plug-ins. Those web browsers are disappearing quickly.

Maybe you are looking for