Members: 16,996
Threads: 38,831
Posts: 159,349
Online: 29

Newest Member: Kl_broka@rediffmail.com


Odoo.tv - Outdoor Television


Sedo - Domains kaufen und verkaufen das Projekt mambers.com steht zum Verkauf Besucherstatistiken von mambers.com etracker® Web-Controlling statt Logfile-Analyse

Go Back   Mambers.com > Development > Module Development

Reply
 
LinkBack Thread Tools Display Modes
Old 20.04.2004, 21:55   #1 (permalink)
Mamber
 
Join Date: Apr 2004
Location: Wiesbaden, Germany
Posts: 64
Fabster is on a distinguished road
Default Looking for Slideshow Module

Hi,

I was playing around with the latest version of RSGallery and was really amazed by the Slideshow-Option. Now I was wondering if there is ans module around, that allows to make several picture appear like a slideshow in, let's say "user1"??

Kind regards
Fabster
Fabster is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Old 20.04.2004, 22:02   #2 (permalink)
Professional Mamber
 
tonyskyday's Avatar
 
Join Date: Apr 2004
Location: Charlottesville, VA USA
Posts: 565
tonyskyday is on a distinguished road
Default Re: Looking for Slideshow Module

Hmm. That's an interesting idea. I don't believe it exists at the moment, but maybe it will appear now that you've brought it up.

How exactly do you envision this working?

Would it be thumbnails so it could be in a side column? Or are you thinking whole pictures?

Would it be pictures in the gallery (meaning the module would call the pictures from the gallery), or would it just be a set of pictures that you define?

-Tony
tonyskyday is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 20.04.2004, 22:13   #3 (permalink)
Expert Mamber
 
keliix06's Avatar
 
Join Date: Mar 2004
Posts: 202
keliix06 is on a distinguished road
Send a message via MSN to keliix06
Default Re: Looking for Slideshow Module

You could copy the code that produces the slideshow and with a few adjustments have it show in a module.
keliix06 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 20.04.2004, 22:18   #4 (permalink)
Professional Mamber
 
tonyskyday's Avatar
 
Join Date: Apr 2004
Location: Charlottesville, VA USA
Posts: 565
tonyskyday is on a distinguished road
Default Re: Looking for Slideshow Module

Quote:
Originally Posted by keliix06
You could copy the code that produces the slideshow and with a few adjustments have it show in a module.
Stop giving my programming secrets out for free!
tonyskyday is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 20.04.2004, 22:23   #5 (permalink)
Mamber
 
Join Date: Apr 2004
Location: Wiesbaden, Germany
Posts: 64
Fabster is on a distinguished road
Default Re: Looking for Slideshow Module

Now You've brought up some thing I was'nt thinking about.

Hmm, I think for me it would work fine, if I could just upload some picture (maybe even zip-upload) and could define the speed and the transition effect in the backend. It should be normal picture not just the thumbnails. Just as a nice effect on the frontpage for example to show some picture to your visitors (maybe even randomly, so it is not started from the beginning everytime I come to this page).

I was just thinking that it would be the easiest way to place it in one of the module's "places" (left, right, user1..). If you make the pictures a smaller size, it could also be in a side column then.

It does not have to be linked or part of a whole gallery. This would depend on how other mambers would prefer. The linking to a gallery should, for my opinion, be optional and not mandatory.

I came up beacause I'm working on a site for a company that rents appartments and thought it would be nice to have "something moving" on the frontpage and giving the user a glimpse of what the appetments are like (without installing a full gallery).

I hope I made myself clear enough
Fabster is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 20.04.2004, 22:49   #6 (permalink)
Professional Mamber
 
tonyskyday's Avatar
 
Join Date: Apr 2004
Location: Charlottesville, VA USA
Posts: 565
tonyskyday is on a distinguished road
Default Re: Looking for Slideshow Module

So really, there could be two modules, one to pull pics from a propper gallery (RSGallery or AkoGallery), and one for pulling pictures from a directory -- or perhaps there can be a simple component just for loading pictures for this second slideshow module...
tonyskyday is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 20.04.2004, 22:53   #7 (permalink)
Expert Mamber
 
keliix06's Avatar
 
Join Date: Mar 2004
Posts: 202
keliix06 is on a distinguished road
Send a message via MSN to keliix06
Default Re: Looking for Slideshow Module

You can have a database table (or flatfile) that contains paths to all of your images. Manually create a module (Modules->Manage Modules->New) and use something like the following (module position can be determined from here):

PHP Code:
<?php 
global $database;
$database->setQuery"SELECT link FROM #__apartment_pics ORDER BY random" );
$rows $database->loadObjectList();
That will get you your randomly ordered list of pictures, then copy the slideshow code and update the image source as needed.
keliix06 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 20.04.2004, 22:58   #8 (permalink)
Professional Mamber
 
tonyskyday's Avatar
 
Join Date: Apr 2004
Location: Charlottesville, VA USA
Posts: 565
tonyskyday is on a distinguished road
Default Re: Looking for Slideshow Module

Quote:
Originally Posted by keliix06
You can have a database table (or flatfile) that contains paths to all of your images. Manually create a module (Modules->Manage Modules->New) and use something like the following (module position can be determined from here):

PHP Code:
<?php 
global $database;
$database->setQuery"SELECT link FROM #__apartment_pics ORDER BY random" );
$rows $database->loadObjectList();
That will get you your randomly ordered list of pictures, then copy the slideshow code and update the image source as needed.
He also wants parameters for speed and transition effect. I suppose the speed parameter can be taken from the RSGallery code, but does that also have a transition effect parameter?

Edit: Also, I didn't think you could put php in a user module, but making an installable module is trivial.
tonyskyday is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 20.04.2004, 23:00   #9 (permalink)
Expert Mamber
 
keliix06's Avatar
 
Join Date: Mar 2004
Posts: 202
keliix06 is on a distinguished road
Send a message via MSN to keliix06
Default Re: Looking for Slideshow Module

Never used it. Used AkoGallery long ago
keliix06 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 20.04.2004, 23:05   #10 (permalink)
Professional Mamber
 
tonyskyday's Avatar
 
Join Date: Apr 2004
Location: Charlottesville, VA USA
Posts: 565
tonyskyday is on a distinguished road
Default Re: Looking for Slideshow Module

I use AkoGallery myself for my personal site (gotta have pictures of my girls available for the whole family!). I actually am not fond of slideshow features, personally.

Obviously a flat file would work fine, but since there is a database available, might as well use that, then pictures could be uploaded in a userfriendly manner so that the client can easily add/remove pictures.

-Tony
tonyskyday is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Yanc Subscribe Module 1.2 Released visualdensity Development Announcements 24 14.10.2005 13:06
Is there an easy way to create multiple instances/copies of a module nickc Module 'How Do I' Questions 8 29.04.2004 03:50
Post nuke module conversion? wooly Module Development 0 17.04.2004 22:19
Module -> Public Module viewable only by Public and not Registered and above sash Module 'How Do I' Questions 1 17.04.2004 07:03
Is there a FAQ Module for Mambo caspern Module 'How Do I' Questions 3 14.04.2004 12:40


All times are GMT +2. The time now is 19:39.

Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.1.0
A vBSkinworks Design
© Copyright 2004-2008 by Arthur Konze Webdesign.