Single Thumbnail activate multiple page(image) slideshow?

I want to be able to have a single thumbnail from a lightbox slideshow visible on a webpage. That when clicked activates a slideshow with multiple images...not mulitple images on a single page like in the tutorial where the social network icons pop up, but rather that triggers an independent multipage slideshow.
Whenever I add an image it adds a thumbnail. I want one thumbnail to be seen for a 7 image slideshow. I can't figure out how to do this with the triggers. The tutorial also doesn't seem to address this.
Right now what I'm doing is creating a lightbox slideshow, turning all the thumbnails in all states transparent, then hiding the collection of thumbnails behind an image (the image being the single thumbnail I want displayed) but this is getting cumbersome with some many transparent lightboxes next to each other.
Is there a easier way. Its for a portfolio site, and each thumbnail should trigger a new project slideshow.

I am having the exact same issue as englishm87. I would like to have a portfolio page with a grid of theumbnails. Each thumbnail will then trigger the multipage slideshow. There is an example on the Adobe Muse website here:
http://www.adobe.com/products/muse/eliana-t-stein.html
I don't quite understand how you can nest the composition widget with the slideshow widget...
Could you provide more of a step by step answer?
Thanks!

Similar Messages

  • How to display multiple page images in forms ?

    Hi,
    What is the best method to display multiple pages image(100 pages) in forms 10g?
    Thanks

    Hello,
    <p>this is a link to a tutorial that contains several sample forms.<br> One of them (ALBUM.FMB) demonstrates how to display hundred of images.<br><br>The tutorial is in French, but you can simply download the samples on the introduction chapter</p>Francois

  • How to make single file from multiple PDF image?

    Hi, it's my first question in SCN.
    I promise my efforts for developing this site.
    Lately, I made multiple PDF image by function 'CONVERT_OTFSPOOLJOB_2_PDF'.(each spool ID)
    And I wanna make single .PDF file by merging these image in server directory(not local PC).
    So I tried it following.
    1. Each internal table resulted from CONVERT_OTFSPOOLJOB_2_PDF append one internal table.
       BL_PDF + MF_PDF → PDF
    2. Excute following command.
      OPEN DATASET P_FILE FOR OUTPUT MESSAGE LV_MSG IN BINARY MODE.
      IF SY-SUBRC = 0.
        LOOP AT PDF.
          MOVE PDF TO FIELD.
          TRANSFER FIELD TO P_FILE.
          CLEAR PDF.
        ENDLOOP.
        CLOSE DATASET P_FILE.
      ENDIF.
    But files was not merged, only last image was made as .PDF file instead.
    How can I do it?
    Thank you.

    Hi Sangrok,
    Instead of preparing PDF multiple times, you can combine all the OTF data and then finally convert it into PDF. For saving the PDF onto application server, you can refer following report.
    http://wiki.scn.sap.com/wiki/display/Snippets/To+convert+spools+to+PDF+and+place+it+in+Application+server+with+the+Generated+Partner+ID
    Regards,
    Aditya

  • Spreading a single form across multiple pages

    I'd like to implement a single record form that spreads it's items across multiple pages for the purpose of grouping related information on each page such as "Contact Details"," Education Profile" etc. There are way too many columns for a single page.
    In Oracle forms you can create a form across multiple canvases or on different tabs of a tabbed canvas. Each item has a property to position it on which canvas.
    Is this possible in ApEx? I can see that transaction processing could be complex.
    How do I avoid, for example, inserting the record a second time if I commit from a different page?
    Any comments appreciated.
    Paul P

    Another way to do this without javascript and ajax that works pretty well is to setup a list that represents the logical "sections" and display it as a sidebar list.
    Create a hidden item on the page called PX_ACTIVE_SECTION and set the visibility of each region on the page based on the value of this item. For example: :PX_ACTIVE_SECTION = 'Contact Details'. You can also have multiple regions associated with a single tab. Set the default value to whatever section you wish to display first.
    Next, set each list item to be "current" when :PX_ACTIVE_SECTION is equal to that item ('Contact Details', 'Education Profile', etc.). Also set the URL destination of each item to: javascript:doSubmit('section name');
    Finally, add a branch back to the current page that sets PX_ACTIVE_SECTION to &REQUEST.. This traps the doSubmit call so you can set the hidden item. (Add a condition, if needed, to prevent this branch from executing due to other buttons and requests).
    The result is that the user can switch freely between sections and save after all data is entered. The page does refresh (since it doesn't use AJAX), but if your regions aren't too big, it should be reasonable.

  • How to add a single Button to multiple pages

    .....using Acrobat 9 pro Extended?
    I wish to place a single Button, (containg the same action), onto nearly 1000 pages in the same document, without having to laboriously copy/paste to each and every page. How can this be achieved please?
    I have tried selecting all the thumbnail pages in the Navigation pane, but the Paste function becomes disabled.
    Any assistance would be much appreciated.
    Nigel
    Message was edited by: Rafflesnh

    Just the ticket! Works a treat and saved me many hours of frustrating tedium. Thank you so much for taking the trouble to respond and so promptly.
    Kind regards and best wishes,
    Nigel

  • How to post to database as single user on multiple pages

    Hi,
    I am trying to develop a quiz where I use the ADDT insert record form wizard. Since the test will have over 50 questions, I would like to have two questions listed per page, and then have it all be submitted at one time. Anyone have any ideas of how to do this? I am using the insert record form wizard so that I can upload this information to a database to keep on file.
    Any help would be appreciated.

    jedimark,
    Here's a way to do it using session variables:
    Brief Session Tutorial
    However, you could also do it using an initial Insert Record page, and then every page after that would be an Update Record page. You would just need to pass the primary key for that Record to each subsequent Update Record page.
    Shane

  • Multiple pages that edit a single row

    I have searched on tabs and editing a single row using multiple pages and I am confused. I don't want to use java as I am trying to not learn that too...
    What I am trying to do sounds like it has been explained before but let me do this again...
    I have a record that is too large to fit on a single screen. This makes for a cumbersome entry process. The record is actually broken into four "logical" chunks. Main, Sub1, Sub2 and Sub3.
    I have made a list that will allow the record to be selected and call the first logical page... L1.
    I have made tabs that show all the pages and allow me to navigate between them quickly.
    When I get to L1 all the data is there. I may not change any data on that page and go directly to L2 through L4. However the record is not brought forward onto those pages. So the pages are not related (and I don't have the terminology right I know :) and I could "link" the pages. So here is what I would like the application to do;
    1. Display a list and allow the user to select the record to edit.
    2. Upon edit go to the first page (tab).. this works
    3. Allow the user to select a tab and the page displays the data for the record selected
    4. Allow the user to complete the edits and save the record. Upon save the user is returned to the list in step 1.
    I was thinking there are several ways to do it... but I was hoping someone could save me a bunch of trial and error (emphasis on the error) ...
    1. When navigating off the page save the record, pass the key and re-read the record... ugly huh?
    2. Pass all the session data for the record over to the next screen. Is that possible? e.g pxx_field1 = pyy_field1
    The the question was does a template with two level tabs keep the record data between tabs?
    Any help is greatly appreciated.
    Sam

    I think this works... kinda
    1. I have a "list" that allows the selection of the item to edit.
    2. That list opens a page that is the "header" page for a tab set.
    3. Each page in the tab set uses the same "ID" to read the record and display the columns. That is how it would work if the list called each individual page.
    4. I modified the "slave" tabs to have the "ID" of the "header" page.
    This displays the correct data on each page. And it looks like the "apply changes" button saves the changes on the page.
    Caveats inlclude (I think as I haven't done exhaustive testing"
    1. "apply changes" must be done at each page where there were changes or they would be lost.
    2. The first dispaly of the page is blank. Clicking on the tab a second time displays the data. This is true if it is the first time a user selects a record in a session (the "slave" tabs are blank) or if it is a subsequent record update (the "slave" tabs have the last records data.
    Thoughts... is this really boring to everyone but me?
    Sam

  • How do you print multiple different images on a single page in preview

    How do you print multiple different images on a single page in preview?

    Chances are no one who saw your question knew the answer.
    Unless you're willing to share the answer you found here, then anyone else like you searching for the problem who comes across this thread will also be unable to thank you for providing the answer too.  

  • Acrobat 9 Pro:  Dragging multiple pages by their thumbnails

    Re:  Acrobat 9 Pro:  Dragging multiple pages by their thumbnails.
    In Acrobat 9 Pro for Mac, it used to be that I could click on a single thumbnail page in the Pages Navigation Panel (the thumbnail image of that single page would turn blue), then shift-click on another page 3 pages down (with the first and last thumbnail image, along with the 2 thumbnail images in between turning blue), and then drag all 4 pages (i.e., the first and last pages clicked upon and the two pages in between) to another document. 
    Now, when I try that, only the last thumbnail image clicked upon turns and remains blue, and only that one page can be dragged.
    Note 1:  I'm using Acrobat 9.4.5 Pro on a MacBook Pro running OS 10.6.8.
    Note 2:  I checked for this desired ability on a friend's PC running Acrobat X, and it worked fine.
    Note 3:  I completely reinstalled Acrobat 9.0 and updated it, and the feature described above still does not work.
    So, what happened and how can I get this feature to work again?

    This is a known bug with 9.4.5: http://forums.adobe.com/thread/865843?tstart=30
    There's a good chance it will be fixed in a quarterly update that should be available within a month or two. In the mean time, you can update to just 9.4.4

  • Link thumbnails in separate page to specific images in Easy Rotator?

    Hello.
    I have a a web page with a grid of 16 thumbnail images.
    I have a separate web page running an Easy Rotator Slideshow.
    I want to be able to click on a thumbnail and have Easy Rotator start with it's corresponding image rather than from the start.
    Thanks in advance for any help!

    Thanks for your reply!
    I'm sorry, but I don't have hosting yet. I copied and pasted the code below
    from the Easy Rotator Website. I'm able to open the Rotator (on a separate
    webpage), but only from the beginning. That's as far as I've been able to
    get.
    I don't understand the following instructions (below the code).
    I can't figure out how to link thumbnails to their corresponding images in
    the rotator. I also have multiple thumbs that I need to link.
    Thanks in advance for any help you can give based on what I've been able to
    send.
    Then, to link to a specific photo in the rotator, link to that rotator's
    page using er_col in the querystring. The er_col value should be the
    zero-base numeric index of the slide. For example, if you want to link to
    the third slide (index 2) in the rotator in gallery.html, use the following
    link:
    gallery.html?er_col=2
    When the gallery.html page loads, the rotator will jump to the third slide.
    If your rotator has multiple image categories, you can link to a specific
    category via the er_row parameter. As with er_col, er_row should be the
    zero-base index of the category. Building on our previous example, let's
    suppose you want to link to the third photo in the second category. Here's
    the link you would use:
    gallery.html?er_row=1&er_col=2
    Thank you!
    Lisa
    On Fri, Mar 8, 2013 at 10:20 PM, Sudarshan Thiagarajan <

  • How do I show multiple rollover images on a page inserted dynamically (pulled out of a sql database

    How do I show multiple rollover images on a page inserted dynamically (pulled out of a sql database table) using Dreamweaver’s Repeat Region. Example: I have different products each one associated (through their productID) with two images (one that’s showing in the page and one for the rollover effect) that are pulled from a database using Dreamweaver’s Recordset. So I want to end up with a page containing row after row of images(one for every product).When moused over each image will reveal the second (rollover) image for the same product which in turn can be a link(the image itself ) that when clicked leads to a detailed page with more information about the product the image is associated with. To show row after row with images for the different products in the database table I am using Dreamweaver’s Insert Rollover Image command and then the  Repeat Region – I have no problem to complete the steps, to insert the image and the rollover one at once and set the paths so they are pulled dynamically depending on the productID they are associated with .I have also no problem to apply the Repeat Region so not only the first image associated with the first product in the table is shown but all of them-a routine and standard procedure when using the Repeat Region to dynamically generate and display multiple rows of data. However, when I preview the page the rollover effect is lost –the images are shown but when moused over the second  image does not  show. The problem is caused when the Repeat Region is applied-once again I am allowed to apply it but the rollover stops working, a kind of interference. ANY SOLLUTION PLEASE, ANY WORK AROUND.

    I gotta tell you, using multiple images for rollover effects is going to be a big challenge in your dynamic scenario. 
    If this were my product page, I would use thumbnails with a bit of CSS opacity or filters to desaturate and make them full opacity/color on mouse over.  Nice effect with much less bandwidth. Easily done globally with CSS code.
    Two examples:
    http://alt-web.com/GALLERY/GalleryTest.php
    http://alt-web.com/TEMPLATES/CSS-Semi-liq-photo-sheet.shtml
    Nancy O.

  • How do I create a single PDF file with multiple pages?

    Hi, I occasionally need merge several jpg images into a single pdf file with multiple pages (one Jpg per page). I have tried doing this on Preview, and by selecting all the pages I want to include in my document and trying to save to Pdf through the "Print" function, but every time it only saves the first page.
    Can anyone tell me if there is a way to save multple-page pdf files without having to purchase a specific program (i to this too infrequently to justify the cost)?
    Thanks very much,

    This works for me...
    Open first image in Preview View > Sidebar. Drag the other images into Sidebar, then select all.
    From File menu > print selected images. Choose PDF > Save as PDF
    -mj

  • How can i scan multiple pages in a single file in pdf.

    How can i scan multiple pages in a single file in pdf using 1536 dnf.

    Hi @veerendrajain ,
    I see that you would like to save multiple PDF documents into one file. I would like to help you out today.
    In the HP Scan Software, select Advanced scan settings, click on the File tab and uncheck Create a separate file for each scanned image.
    Hope this helps.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • SCRIPT TO IMPORT MULTIPLE PLACED IMAGES..AND OUTPUT MULTIPLE IMAGES TO SINGLE PDF.

    Anyone got a script to import multiple placed images into CS4? or is this possible in CS5?
    and can we output multiple layers into a single PDF in illustrator?  Or multiple layers into single JPEGS from illustrator with one command instead of individually saving out each page... would be a huge time saver for me.
    Currently I output each completed layer individually and then right click those outputted jpegs in their output folder and choose "combine supported files into acrobat..." to make a single acrobat file..
    I`d also like to be able to CTRL click multiple layers and go save as... only those layers get saved out...
    And so adding something in the Save for PDF output dialogue box to save layers to multiple pages would be a helpful time saver..

    In CS 4 and CS 5 you can drag and drop fro m the finder or the Bridge, and I guess any other similar type viewer, multiple number of image files to a document. You can configure the bridge in such a way as to allow you to see the Bridge and your document at the same time for this very purpose.
    If you just drag and drop the files are linked if you drag while holding the shift key then the files will be embedded.
    ID and PS CS 5 have a minibridge which works the sam way but is an actually panel and will stay in the front.
    I separate the images but they import one on top of another.

  • Firefox prints pieces of a single page on multiple pages

    Firefox prints pieces of a single page on multiple pages. For example, if a page is only one page long in IE, it will print one page. But if I print the same page in FF, it will print 5 pages, and each page would have a different section of the original web page. Same thing is valid for web images. I have tried upgrading to the latest version of FF 3.6.12, and I have tried uninstalling and reinstalling my print driver (Brother MFC-7420), and have tried rebooting my PC, and have tried changing the print settings from within the Printer's menu and the Firefox print settings.

    Check the paper size that is selected in your printer's preferences when viewing those prefs through Firefox. Or maybe the left & right page margins are set unusually wide for that printer within Firefox.
    http://kb.mozillazine.org/Problems_printing_web_pages#Prints_to_a_small_portion_of_the_page

Maybe you are looking for

  • My iPhone 4s does not appear on devices when connected to iTunes in my Mac

    My iPhone 4s does not appear on devices when connected to iTunes in my Mac

  • Weird PC Suite problems

    Phone N95 connected via Nokia USB Cable Nokia PC Suite 6.85.14.1, English Nokia Connectivity Cable Driver 6.85.10.0 OS Windows XP - SP2, English PC Connectivity Solution 7.37.22.0 I have been running PC Suite on my office computer with minor niggles.

  • Count of string

    Hi All, I have a  field carton no which is string type.The values are 1 and 2. I gave summary as count for that in report footer .But it is showing 32 .But it should show 2 only. Here the report having 32 records .I tried with changing string to numb

  • Kernel hacking

    Hey guys, I'm at a bit of a standstill here on a project I really don't feel like doing. I could ask this question in a more appropriate area, but I'd rather get a quicky from someone who knows me if that's possible... The overall goal is to port a k

  • I would like the older version back - is it possible to reload that? too many things missing

    I don't care for the look or usability of the new firefox. can i reload the older version? most specifically, my antivirus program pre-fills passwords on the sights needing them. i now have to go into my menu, open the program in full and click throu