Slide show in table cell and text in layer above images

I need to create a slide show within
a table cell (one cell of several).  The
display should commence after the launch page has been completely loaded and only appear once.  Also, there needs to be text in a layer above the slide images which changes coordinated with each slide but is generated independent of each slide and therefore may be positioned within the cell independently.
Anyone?

Hi again Nancy,
You've provided very helpful information in the past.  The code for the "show" in the upper right position would be perfect if the text-bar background could be made transparent and positioned higher against the image. Your suggestion has forced me to clarify my concept in my own mind.  The need for transparency hadn't occurred to me yet. 
An alternative would be the upper left "show" in a bottom layer with text with a transparent background in a top layer.  The text in the top layer would remain constant from the time of the page's loading; i.e., would be independent of changes in the bottom layer.  Perhaps I could figure out the code necessary to coordinate that text's change of shade from one slide to the next appropriate to the slide's shade.
I'm assuming that a table cell can be partitioned into layers using HTML and each layer programmed independently using JavaScript.
Thanks again for your prompt attention.

Similar Messages

  • How do  create a slide show with both video and photos in elements 12

    how do  create a slide show with both video and photos in elements 12

    Hi Brian
    You can batch process a set of prepared slides from Full Edit (see image) using:
    File >> Process Multiple Files
    In the PMF dialog you can choose filename, date, or description (caption)
    Make sure you choose a separate destination folder to your source folder so as tot to permanently overwrite your originals.
    Click image to view

  • I just installed iPhone 11 and when I try to play a slide show, it just blinks and and shows the whole group of pictures at once. I have done many slideshows with older versions of iPhoto. How can I fix this?

    I just installed iPhoto from the iLife 11 and when I try to play a slide show, it just blinks and shows a whole bunch of pictures at once. I have done many slide shows with no problem in an earlier version of iPhoto. What can I do to fix this?

    thats tough man, yeah exchanging it is the best option. But why do people always leave a message saying" i'll probably just by an ipod" and it's usually followed by, "even though i don't like apple or ipod" . I mean fine, if u feel like giving up on the zen micro thats fine, i personally don't care if you're going to buy an ipod. for god sakes ipod isn't even the next alternati've mp3 players, theres plenty. Are u just trying to get the creative people saying "oh man we lost another one to ipod" cuz i'm sure they don't lose sleep over u wanting to buy an ipod instead of a zen. *done ranting*
    Message Edited by bleakreserve on 02-3-2005 06:34 AM

  • Can I transfer a slide show to Apple TV and then take my Apple TV to another home and plug it into the TV and play that slideshow for those friends?

    Can I transfer a slide show to Apple TV and then take my Apple TV to another home and plug it into the TV and play that slideshow for those friends?

    If you mean transfer a slideshow from your computer then no. It is not storing it but rtaher streaming from the computer over your local network. The old model had an accessible hard-drive that would have allowed this.

  • How can we delete SID table data and Text table data

    Hi,
    How can we delete SID table data and Text table data of any
    InfoObject.

    Hi,
    Go to transaction SE14, give the technical name if the table:
    /BIC/T<InfoObject Name>   for Text Table
    /BIC/S<InfoObject Name>  for SID Table
    Select "Table" in the given 4 options below  &  hit Edit button.
    in the next screen select "Direct"
    & also select "detele data" radio button.
    & hit  "Activate & adjust database".
    this will delete the complete data from the tables.
    Note: before deleting the SID's make sure of the consequences & after effects.
    Also the SID gets generated the next time you load master data/transaction data only for those records which were loaded..
    Regards,
    Iliyas

  • I am using using IDVD to create slide shows.  When viewed on my computer the pictures are clear and of high quality.  When I burn the slide show to a disk and play it back, the pictures are blurry and of poor quality.

    I am using IDVD to create slide shows.  When viewed on my computer, the pictures are clear and of high quality.  When I burn the slide show to a disk and play it back, the pictures are blury and of poor quality.  Is there a setting that controls the quality of the burn and if there is, where do I find it?  Thank you.

    The Mac software - iPhoto, iMovie, and iDVD are not the best with the Ken Burns effect (zoom in/out effect), so you might want to minimize that effect; also, if your subjects are wearing stripes for instance, that will have an effect if you zoom. There is better software available for slideshows; however, I do not know of any that is free (and does a good job). I've used Photo to Movie for some time; it does a fine job even in HD, but you have to pay for it. I use iDVD extensively, but only to add a menu, theme, special effects, etc. and then to burn it.

  • My screen on the touch is frozen. the screen shows a usb cable and the itunes logo above it. How can I get it back to the main screen?

    My screen on the touch is frozen. the screen shows a usb cable and the itunes logo above it. How can I get it back to the main screen

    The screen is telling you to connect the iPod to a computer with iTunes via the USB cable.  iTunes should open and give you instructions.  If not, open iTunes and retore the iPod via iTunes.

  • Table Cell Renderer Text Alignment Problem

    Hallo !
    I got a JTable with cells containing text and icons. I would like to have the icon on the top and the text on the bottom, but the renderer aligns always the text on the right of the icon.
    I made a custom renderer extending DefaultTableCellRenderer and there i wrote setVerticalTextPosition(BOTTOM);, but it does'nt work in any way (i tried in many ways. I also used html for the text, but it's the same).
    More exactly the code is
    public class MyRenderer extends DefaultTableCellRenderer{
    public java.awt.Component getTableCellRendererComponent(JTable table,Object value,boolean isSelected,boolean hasFocus,int row,int column) {
            super.getTableCellRendererComponent(table,""/*value*/,isSelected,hasFocus,row,column);
    FieldRenderer renderedValue=(FieldRenderer)value;
    //setHorizontalAlignment(CENTER);
    //setVerticalAlignment(CENTER);
    setVerticalTextPosition(BOTTOM);
    setText(renderedValue.getRepresentation());
    setToolTipText(renderedValue.getRepresentation());
    setIcon(renderedValue.getIcon());
            return this;
    }where FieldRenderer is an object containing icon, text, etc.
    Can anyone help ?
    Thanks in advance, Massimo
    }

    Setting a renderer for first column:
    assetTable.getColumnModel().getColumn(1).setRenderer(tableRenderer);Your custom renderer must honor the selection color and border or otherwise the first column will not look selected. You should subclass DefaultTableCellRenderer:
    public class AssesTableRenderer extends DefaultTableCellRenderer  {
      public Component getTableCellRendererComponent(...) {
        // default renderer uses a label
        JLabel label = (JLabel)super.getTableCellRendererComponent(...);
        // decide icon to use
        Icon icon = ...;
        label.setIcon(icon);
       return label;
    }

  • Adding button to a custom table cell (and handling them)

    Hi
    I'm wondering if it's possible to add a button on each row of a table view using a custom table cell view. If it's possible, I'm really wondering how I can handle the click events on these buttons.
    Thanks

    No.
    Try creating a view and adding it to a cell. Let us know what problems you have, and we can try to help.

  • Dreamweaver CS4 - Can't see table cells and borders

    Hello you all.  I just started using CS4 and whenever there is a white background I can't see any of the table cell or main borders.
    I went to View>Visual Aids>Table Borders and it is on, but I can't seem to find the area I need to change the color to view it on white.

    I just remember the previous versions would allow you to change the dotted line color that indicated the table and cell borders.
    Must say I can't ever remember that being a preference in any previous version of DW.
    Sadly, it looks like I will be using tables to set up my site.  Haven't adopted CSS as much as I'd like at this point.
    Now's as good a time as any to start with CSS from the ground up.
    Try one of the pre-made templates in DW under File > New

  • Wanna make a slide show of my photos and burn to dvd

    I just got my mac.  Novice at best.
    However, I am a quick study.
    Tech nerd. 
    I want to make a slide show of photos and burn to a dvd for my "non-tech" parents to play in their dvd player.
    What's the easiest way.

    The easiest way is to use iDVD; however, Apple doesn't bundle that with new Macs and you can't buy it from the App Store. It is apparently still available on iLife disks, but you'd want to check the label.
    iPhoto will create a nice slideshow which can be converted to a movie. Then you will need something like iDVD or Toast to create the DVD.  http://support.apple.com/kb/VI195
    As you say you are new to Macs, I don't imagine you have an old copy of iDVD on another Mac.

  • Sync self made slide shows from with titles and music to I TOUCH

    Trying to sync pictures i have put into slide show with titles and music to I touch is there away

    Why not make a movie with iPhoto/iMovie?

  • Imported slide show movie looks weird and flickering

    I exported a slide show of high rez photos out of Lightroom as a MP4 movie @1080 and inserted it in to my final Cut X movie and most of the slides have areas of  the photo that are flickering back and forth. Seems like it might be the areas with a lot of detail. is there a fix for this.

    Under "Effects" drop "Broadcast Safe", onto the slide show, and see if that helps.
    Tom is right, do not make them MPEG4 first, export out as a .MOV file. 
    Russ A

  • Reading the older questions, is there a way in which the full screen slide shows can be saved and/or exported?

    Reading the older questions, is there a way in which a full screen slide show (such as places or geotagged photo's) can be saved and/or exported for viewing by another party?

    Yes. Just export the slideshow and select your preferred output size.
    Regards
    TD

  • Slide Show using Elements 5 and Premiere4

    I have downloaded a trial version of Elements Premiere 4 and am trying to get pictures from Elements Collection file into it to produce a slide show.
    I have another software which will do slide shows but the pictures are never in proper arrangement when I import to this program and it's hard to arrange 100 plus pics.
    Can I produce a good DVD straight out of Elements 5?

    >I am using a trial version of Premiere Elements 4. I have sent my slideshow to Premiere Elements, but cannot get it to appear in Premiere Elements. Could this be because I am using a trial version?
    No I don't think it is the trial version that prevents the slide show from appearing. As I said I am not sure the PSE 5 to PRE 4 will work.
    > My other software is Pinnacle Studio 9. It's a good program but does not interface with the Organizer in Elements; therefore the pictures arrive in the alphabetical order of file title. Unfortunately there are 294 photos that must be manually rearranged in a very small working space
    The usual solution for this is to do a File > Export from the Organizer and use the Base Name option which will make an additional copy of the files so that
    b their file names preserve the sequence of the files in the Collection.
    You do this step
    -- In PSE 5, display the specific Collection which you wish to use as the basis of the slide show. Then do a Select All so that all its thumbnails are selected (visible by blue outline box on the thumbnails)
    And then you do
    the File > Export command of the Organizer choosing the Base Name option. Personally I would give each slide show a different base name and I would make that name similar to the name of that Collection.
    The Export command makes an additional copy of these photo files in the Collection, names them as designated in the Base Name option and allows you to designate the folder to which they are saved (I use a newly created folder). Then use the files of that folder as the input to Pinnacle.

Maybe you are looking for

  • ERP Integrator

    Hi all, We have requirement to load data from oracle GL to Hyperion planning by using ERP integrator and ODI. We configured the source system in ERP integrator and ODI. When we try to Intialize the source system in ERP integrator,we are getting error

  • Where is the fingerprint app for my new ENVY 17t Quad touch smart

    I have 2 profiles , the one profile i did a search for " fingerprint scanner"  and I tapped the the button that said fingerprint scanner under search. A dos window opened and the a Gui which helped me store my finger print and associate it with my ID

  • When adding audio to my webpage do I have to add a photo as well?

    Hello, I just set up my website using iweb and it was really fun and easy. I added an audio file to one of my pages and it required me to add a photo or it wouldn't add the song. Can this be changed? Thanks, Chad Powerbook G4 1.5   Mac OS X (10.4.2)

  • Tag selector question

    hello dreamwevaers i have made a tag selector and have made a new ccs rule to affect the h1,on the page i made the css rule the header and colour and various styles i apply to it. on the other pages when i apply the h1 property,they dont inherit the

  • Photoshop Elements 8 conversion of CR2 files

    How can I convert Canon 60D CR2 raw files to camera raw?  The Camera Raw plug-in 6.2 did not work.