Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.

  1. #1

    Default slideshow extension

    I'm a rank novice developing my first website (Dreamweaver CS4) for a friend
    with a small business. I want to include a slideshow. I went to the extension
    manager and downloaded & installed the Ken Burns slideshow extension. I can run
    it with its default images, but I can't figure out how to put in my own images
    and delete the default images. Will this app run just with CS4, or do I need to
    have another app with it (like Fireworks or Flash)?

    Any help greatly appreciated.

    tompen Guest

  2. Similar Questions and Discussions

    1. slideshow
      Hi there, a friend of mine sent me an slideshow.exe that can be played in Flashplayer...:)ofcourse.anyway,after i seen the pictures i realized that...
    2. Free Dynamic Slideshow Extension
      Hey everyone, I have completed my first attempt at creating a DW extension. It is an extension that allows you to create a slideshow with images...
    3. XML slideshow
      I'm trying to simplify a presentation .fla file I inherited. I was able to successfully build a slideshow that functions exactly as the original...
    4. Slideshow extension loops same pics
      Hi everyone Hope someone can help me with this. I have an anxious client breathing down my neck. I'm working on a real estate website. 6 locations...
    5. pdf slideshow on web?
      Okay, everyone, I haven't used this feature at all, so I need some help here. Someone has been asking me about putting the pdf slideshow on the web....
  3. #2

    Default Re: slideshow extension

    tompen wrote:
    > I'm a rank novice developing my first website (Dreamweaver CS4) for a friend
    > with a small business. I want to include a slideshow. I went to the extension
    > manager and downloaded & installed the Ken Burns slideshow extension. I can run
    > it with its default images, but I can't figure out how to put in my own images
    > and delete the default images. Will this app run just with CS4, or do I need to
    > have another app with it (like Fireworks or Flash)?
    The web widget extensions generally require that you go into the code and make any modifications necessary. If there are images that are displayed, then in the code that the extension applies to your page should be paths to the images. Update the paths to point to your images and you should be good to go, and if you need to add more, then you'll need to follow the code to see how to do that.

    From there, either contact the creator of the extension to see if they have any further documentation, or post a link to your page and perhaps someone can peer at the generated code and make some suggestions about how to proceed.


    --
    Danilo Celic
    | [url]http://blog.extensioneering.com/[/url]
    | WebAssist Extensioneer
    | Adobe Community Expert
    danilocelic AdobeCommunityExpert Guest

  4. #3

    Default Re: slideshow extension

    Danilo, thanks for the very useful info. Although I'm not great with code
    (yet), I was able to edit it and insert my images, changed the captions and
    removed the thumbnails and control bar popup.

    Another question on the Ken Burns slideshow extension. I want to change the
    slide timings. I haven't been able to locate the code for the timings. Should
    it be in the external CSS for the app? Is there some special text that I'm
    missing?

    Again, really appreciate your help.

    tompen Guest

  5. #4

    Default Re: slideshow extension

    tompen wrote:
    > Danilo, thanks for the very useful info. Although I'm not great with code
    > (yet), I was able to edit it and insert my images, changed the captions and
    > removed the thumbnails and control bar popup.
    Good to hear that you've found a way to
    > Another question on the Ken Burns slideshow extension. I want to change the
    > slide timings. I haven't been able to locate the code for the timings. Should
    > it be in the external CSS for the app? Is there some special text that I'm
    > missing?
    Sorry, have never looked at that extension. The timing wouldn't be in the CSS, it would be in some JavaScript. Perhaps you can post a link to a page so that someone can take a look to see how to modify the code.

    --
    Danilo Celic
    | [url]http://blog.extensioneering.com/[/url]
    | WebAssist Extensioneer
    | Adobe Community Expert
    danilocelic AdobeCommunityExpert Guest

  6. #5

    Default Re: slideshow extension

    "danilocelic AdobeCommunityExpert" <danilo@shimmerphase.com> wrote in
    message news:goq7e5$e0e$1@forums.macromedia.com...
    > Sorry, have never looked at that extension. The timing wouldn't be in the
    > CSS, it would be in some JavaScript. Perhaps you can post a link to a page
    > so that someone can take a look to see how to modify the code.
    whatsamatta with you - there is a sample link from the exchange page :-)

    [url]http://www.electricprism.com/aeron/slideshow/[/url]


    --
    Al Sparber - PVII
    [url]http://www.projectseven.com[/url]
    The Finest Dreamweaver Menus | Galleries | Widgets
    [url]http://www.projectseven.com/go/pop[/url]
    The Ultimate DW Menu System




    Al Sparber - PVII Guest

  7. #6

    Default Re: slideshow extension

    Al Sparber - PVII wrote:
    > "danilocelic AdobeCommunityExpert" <danilo@shimmerphase.com> wrote in
    > message news:goq7e5$e0e$1@forums.macromedia.com...
    >> Sorry, have never looked at that extension. The timing wouldn't be in
    >> the CSS, it would be in some JavaScript. Perhaps you can post a link
    >> to a page so that someone can take a look to see how to modify the code.
    >
    > whatsamatta with you - there is a sample link from the exchange page :-)
    >
    > [url]http://www.electricprism.com/aeron/slideshow/[/url]
    Well thanks, Al. I suppose that I should visit the exchange more often, as I don't remember being any sample pages posted for extensions.

    It looks like there is are a couple of options that may determine determines how long images are displayed. From this sample page which say is is the Ken Burns example:
    [url]http://www.electricprism.com/aeron/slideshow/example4.html[/url]

    There is this in the code:
    window.addEvent('domready', function(){
    var data = {
    '1.jpg': { caption: 'Volcano Asención in Ometepe, Nicaragua.' },
    '2.jpg': { caption: 'A Ceibu tree.' },
    '3.jpg': { caption: 'The view from Volcano Maderas.' },
    '4.jpg': { caption: 'Beer and ice cream.' }
    };
    var myShow = new Slideshow.KenBurns('show', data, { captions: true, controller: true, delay: 4000, duration: 1000, height: 300, hu: 'examples/', width: 400 });
    });


    In particular this line:
    var myShow = new Slideshow.KenBurns('show', data, { captions: true, controller: true, delay: 4000, duration: 1000, height: 300, hu: 'examples/', width: 400 });

    See "delay: 4000" and "duration: 1000" ? It seems that delay may be how long an image is shown and duration is the amount of time to do the fade between images. The times are in milliseconds (I assume), so 4000 equals 4 seconds. I'd suggest varying the values for those two parameters until you get something you like.

    As the code is minified, its fairly difficult to know fully what all is going on in the code beyond what is documented, so, for future questions, you might want to contact the developer, or of course, dig in an learn JavaScript as if you're going to use the web widget extensions, you'll need to know how to dig around to do more with them.


    --
    Danilo Celic
    | [url]http://blog.extensioneering.com/[/url]
    | WebAssist Extensioneer
    | Adobe Community Expert
    danilocelic AdobeCommunityExpert Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139