Indigo Rose Software

Professional Software Development Tools

 
Results 1 to 10 of 10
  1. #1
    Join Date
    Mar 2004
    Location
    Germany
    Posts
    53

    One-Page Slide Show

    With help from TJ Tigger I have made a one-page slide show which runs automatically and allows viewer navigation via thumbnails. It almost seemed to be too easy to be true once I dove into the project; I had imagined it would take me, a non-programmer, several hours or even days. Using a project Tigger sent me and information from this thread:

    http://www.indigorose.com/forums/sho...multiple+timer

    I was able to cobble together a working version of exactly what I wanted in less than an hour.

    This might seem just a kiddie project for some of the code crunchers out there, but I've been looking in this forum for this solution for a while now. Maybe I searched for the wrong things and did not find previous threads, but please indulge my happiness at being able to contribute something hopefully new to the forum.

    This forum is great!

    Now, can anyone help work transitions into the slide show?

    Thanks!
    Attached Files

  2. #2
    Join Date
    Jul 2002
    Location
    USA
    Posts
    3,959
    Nice job!

    Now think of all the cool things you could do on your lunch hour

    For transitions, you might have a look-see at this thread:
    http://www.indigorose.com/forums/sho...85&postcount=6

  3. #3
    Join Date
    Jan 2000
    Posts
    2,002
    Very cool project. Good job!

    I was playing with your On Timer event and reduced the code to this:

    Code:
    timercounter = timercounter + 1;
    for i = 1,5 do
    	Image.SetVisible(i, timercounter == i);
    end
    if(timercounter >=5)then timercounter = 0; end
    I am not taking away from what you did - your method works, but hopefully the above code witll help you learn new scripting techniques.

  4. #4
    Join Date
    Mar 2004
    Location
    Germany
    Posts
    53
    Quote Originally Posted by Brett
    I am not taking away from what you did - your method works, but hopefully the above code witll help you learn new scripting techniques.
    Sure does! I forgot to add to my message something along the lines of "feel free to clean up or improve upon the code."

    Glad you like it!

  5. #5
    Join Date
    Mar 2004
    Location
    Germany
    Posts
    53

    Multiple Sets at Event

    Brett,

    I have implemented this into my real project, in which three happen On Timer or when a thumbnail is clicked: the photo changes, a caption changes, and a thumbnail highlight "moves" to the TB of the current photo displayed. So for each event, two Images and one Label change.

    In implementing your code changes, I know I have to pay attention to object names. In the test project the images are objects named numerically 1 thru 5. Will I have to name the other images and labels as numbered only objects (e.g. photos are 1-10, captions are 21-30, and thumbnail highlights are 51-60), or can I use Foto1, Caption1, Highlight1, etc?

    Also, must I use other vaiables other than "i" for the other objects, and would I leave out "timercounter == i" for the actions on the objects?

    Thanks!

  6. #6
    Join Date
    Jan 2000
    Posts
    2,002
    Well, you could adjust it to use a table of information for the image objects and then use the index to access them. For example:

    tblImages = {};
    tblImages[1] = {ObName="Image1",Caption="Nice Picture"};
    tblImages[2] = {ObName="BeachImage",Caption="The beach"};

    and then access them by index:

    strCaption = tblImages[i].Caption;

    etc...

  7. #7
    Join Date
    Mar 2004
    Location
    Germany
    Posts
    53
    Well, that was a bit over my head. I tried for hours this morning to figure out tables, and while I understand their purpose and value, I seemed to produce only a jumble of errors. Even though I implicitly understood the script Brett posted for the simple slide show, the deeper I delved into scripting this morning, the cloudier my vision got.

    Anyway, I've attached a long-way-around version of what I am ultimately trying to achieve, if anyone want to take a crack at tidying up the code into scripts.


    ;->
    Attached Files

  8. #8
    Corey is offline Indigo Rose Staff Alumni
    Join Date
    Aug 2002
    Posts
    9,746
    There's a free video on Tables at http://www.speedytraining.com which is pretty good at explaining it in a simple way. Plus I'm happy to answer any questions you may have anytime. You'll be amazed how easy they are to learn and use once it clicks in, but I know what you mean about checking them out for the first time, it can seem a bit confusing at times. I think the easiest way to think of tables is as a grid. Once you can picture it in your mind, then I think it's all downhill from there.

  9. #9
    Join Date
    Mar 2004
    Location
    Germany
    Posts
    53

    Transitions

    Worm, that is exxxactly what I am looking for! (I figured that opacity would be the key.) However, as is apparent in my previous post, it is gonna take me some time before I learn enough to be able to utilize those scripts.

    :-(

  10. #10
    Join Date
    Mar 2004
    Location
    Germany
    Posts
    53
    I guess I should buy the CDs, Corey. I liked all the video samples available on that site! Tables as a concept are not really the problem as much as scripting terms and puctuation, total lack of scripting experience, and shortage of time. But I'll keep plugging away so my projects keep getting better, more efficient, and more useful.

Similar Threads

  1. how to sinchronize a slide show with music
    By Sergio_1 in forum AutoPlay Media Studio 4.0
    Replies: 7
    Last Post: 10-19-2003, 05:57 PM
  2. Adobe slide show
    By sdarchery in forum AutoPlay Media Studio 4.0
    Replies: 4
    Last Post: 05-08-2003, 05:17 PM
  3. Executing a PowerPoint Show in Slide Show mode
    By Paul13 in forum AutoPlay Media Studio 4.0
    Replies: 11
    Last Post: 05-07-2003, 05:20 PM
  4. slide show
    By sdarchery in forum AutoPlay Media Studio 4.0
    Replies: 0
    Last Post: 05-05-2003, 12:32 PM
  5. HOWTO: Create a Page Template
    By Support in forum AutoPlay Media Studio 4.0 Examples
    Replies: 0
    Last Post: 10-26-2002, 05:20 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