Ask a Question related to Macromedia Exchange Dreamweaver Extensions, Design and Development.
-
tompen #1
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
-
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... -
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... -
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... -
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... -
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.... -
danilocelic AdobeCommunityExpert #2
Re: slideshow extension
tompen wrote:
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.> 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)?
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
-
tompen #3
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
-
danilocelic AdobeCommunityExpert #4
Re: slideshow extension
tompen wrote:
Good to hear that you've found a way to> 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.
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.> 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?
--
Danilo Celic
| [url]http://blog.extensioneering.com/[/url]
| WebAssist Extensioneer
| Adobe Community Expert
danilocelic AdobeCommunityExpert Guest
-
Al Sparber - PVII #5
Re: slideshow extension
"danilocelic AdobeCommunityExpert" <danilo@shimmerphase.com> wrote in
message news:goq7e5$e0e$1@forums.macromedia.com...whatsamatta with you - there is a sample link from the exchange page :-)> 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.
[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
-
danilocelic AdobeCommunityExpert #6
Re: slideshow extension
Al Sparber - PVII wrote:
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.> "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]
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



Reply With Quote

