Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 4 of 4
  1. #1
    Join Date
    Jan 2004
    Location
    Markham, Canada
    Posts
    2

    Help with Slideshow

    Hi Group,

    i'm looking for some help with a slideshow control. i created a slideshow: SlideShow1 and added 10 pictures. i would like to be able to set a paragraph with a text that describes the pictures as it shows up.

    Any suggestions? i'm not a programmer and any help will be appreciated.

    Thanks.

  2. #2
    Join Date
    Jul 2002
    Location
    Just South of Reality
    Posts
    778
    One way to do this would be to have a corresponding paragraph object for each Image.
    Text files may be a better approach since maintenance to the description could be done externally from AMS7.

    I've attached a very simple example of a slide show object with associated paragraph objects.
    It would be best to number the images to correspond to the paragraph numbers, easy management. (Image1 / paragraph1)

    The next button controls the setting of paragraph visibility. If you don't want to click a button, there is an event in the Slideshow object (On Slide Changed) which could be used for automatic rolling of Paragraphs with the Images.

    hope this gives you some ideas.
    Attached Files

  3. #3
    Join Date
    Jun 2002
    Location
    Israel
    Posts
    1,843
    Using a textfile, you can put the description of each image in a separate line (very important!), then under the onShow even of the Page, put the following:

    Code:
    tbl_Desc = TextFile.ReadToTable("yourDescriptionfile.txt");
    Then, under the OnSlideChanged event of your SlideShow Object, put the following:

    Code:
    Paragrah.SetText("YourParagraphObject", tbl_Desc[e_Index]);
    That would insert the matching description line from the table into your paragraph object.

    Hope that helps

    Yossi

  4. #4
    Join Date
    Jan 2004
    Location
    Markham, Canada
    Posts
    2

    Re: Help with a slideshow

    Thank you very much for the reply. I tried both methods Holtgrewe's and Yosik's both work at least i managed that. Yosik i end up using your method it's exactly what i was looking for!

    Thanks again for the help!

Similar Threads

  1. slideshow controls
    By StudioFx in forum AutoPlay Media Studio 7.5
    Replies: 2
    Last Post: 12-01-2007, 01:48 PM
  2. Making a Slideshow with Voiceovers
    By Desmond in forum AutoPlay Media Studio 5.0 Examples
    Replies: 1
    Last Post: 10-27-2006, 01:25 PM
  3. KB: Making a Slideshow
    By Desmond in forum AutoPlay Media Studio 5.0 Examples
    Replies: 8
    Last Post: 06-19-2005, 02:58 AM
  4. Corporate slideshow page access slowdown
    By densed in forum AutoPlay Media Studio 4.0
    Replies: 3
    Last Post: 07-28-2003, 09:27 PM
  5. How to insert a slideshow using Roxio CD Creator
    By christywalter in forum AutoPlay Media Studio 4.0
    Replies: 21
    Last Post: 12-06-2002, 06:17 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts