• [Mod] Slideshow 4 0 5 1
Currently:  

Author Topic: [Mod] Slideshow  (Read 139923 times)

0 Members and 1 Guest are viewing this topic.

Offline Snooky

  • Newbie
  • *
  • Posts: 15
    • View Profile
[Mod] Slideshow
« Reply #30 on: April 03, 2003, 10:32:29 PM »
really a great job but i have the same problem as someone already postet in german...
everything workes fine, but while looking to a slideshow my header with the logo is missing what makes the page look a bit strange ;)
could anyone help to solve the problem?!
thanxxxx

Offline Fugaziman

  • Jr. Member
  • **
  • Posts: 80
    • View Profile
    • http://www.1024x768wallpapers.com
[Mod] Slideshow
« Reply #31 on: April 03, 2003, 10:42:00 PM »
Quote from: Snooky
really a great job but i have the same problem as someone already postet in german...
everything workes fine, but while looking to a slideshow my header with the logo is missing what makes the page look a bit strange ;)
could anyone help to solve the problem?!
thanxxxx


It looks like you are missing something from your template slideshow.html file.
Have you included at the very top  {header} ?
If you have compare one of your other template files like details.html with the slideshow.shtml and see if you can see something missing.

Hope that Helps
Fugaziman
Please take time to visit us at ...
http://www.1024x768wallpapers.com
And don't forget to leave a comment or message.

Offline Maweryk

  • Sr. Member
  • ****
  • Posts: 253
    • View Profile
[Mod] Slideshow
« Reply #32 on: April 04, 2003, 08:33:05 PM »
Quote from: V@no
how about using .php file that will show next images?
it's pretty easy to do, the generated page became tiny, it doesnt show the filenames, neither path to them :D (I like that part the most)
I did an example based on random image mod:
HTML page source
PHP file source

and when u combine them, it shows this.


Great Idea to show the random image on every homepage.
...and it works.  :D

Thanks and Cheers,

Markus

By the way: Do U have finished the new Upload-Mod for Users... (URL-fetching, zip-extracting, ...)
URL-fetching where very nice to put the files on an free of charge server.
 :wink:

Offline geza

  • Newbie
  • *
  • Posts: 10
    • View Profile
Lightbox Slideshow
« Reply #33 on: April 17, 2003, 09:43:46 AM »
(sorry for my poorly english)

how is ist possible to make lightbox-slideshow?
-------------
;-) gruss
geza

Offline Fugaziman

  • Jr. Member
  • **
  • Posts: 80
    • View Profile
    • http://www.1024x768wallpapers.com
SLIDE SHOW NOW WORKS WITH LIGHTBOX/ALBUM
« Reply #34 on: April 19, 2003, 05:24:12 AM »
SLIDESHOW V2.2  for LIGHTBOX/ALBUM

The latest version of the Slideshow Mod also works for registered users Lightbox/Album now.

WARNING:
This will not work with the lightbox for Guests Mod found here http://www.4homepages.de/forum/viewtopic.php?t=4826


Simply follow the steps in my first post ...

 :arrow: Replace step 1 slideshow.php code with this code
Code: [Select]

<?php
/**************************************************************************
 *                                                                        *
 *    4images - A Web Based Image Gallery Management System               *
 *    ----------------------------------------------------------------    *
 *                                                                        *
 *             File&#58; slideshow.php                                        *
 *        Copyright&#58;                                   *
 *            Email&#58;                                        *
 *              Web&#58;                                *
 *    Scriptversion&#58; 1.7                                                  *
 *                                                                        *
 *                                                                        *
 *************************************************************************/

$templates_used 'slideshow';
$main_template 'slideshow';

define&#40;'GET_CACHES', 1&#41;;
define&#40;'ROOT_PATH', './'&#41;;
define&#40;'MEDIA_DIR', 'data/media'&#41;;
include&#40;ROOT_PATH.'global.php'&#41;;
require&#40;ROOT_PATH.'includes/sessions.php'&#41;;
$user_access get_permission&#40;&#41;;
include&#40;ROOT_PATH.'includes/page_header.php'&#41;;

//-----------------------------------------------------
// Configrable variables ------------------------------
$max_height "651";  // any images with a greater height will not be included in slide show
$max_width   "651";  // any images with a greater width will not be included in slide show

//-----------------------------------------------------

if &#40;$action == "slideshow"&#41; &#123;
if &#40;!$cat_id || !isset&#40;$cat_cache[$cat_id&#93;&#41; || !check_permission&#40;"auth_viewcat", $cat_id&#41;&#41; &#123;
header&#40;"Location&#58; ".$site_sess->url&#40;ROOT_PATH."index.php", "&"&#41;&#41;;
exit;
&#125;

if &#40;$cat_id && isset&#40;$cat_cache[$cat_id&#93;&#41;&#41; &#123;
    
$txt_clickstream .= get_category_path&#40;$cat_id, 1&#41;.$config['category_separator'&#93;;
&#125;
&#125;

if &#40;$action == "slideshowlightbox"&#41; &#123;
// $txt_clickstream = $lang['lightbox'&#93;;
$txt_clickstream "<a href=\"".$site_sess->url&#40;ROOT_PATH."lightbox.php"&#41;."\" class=\"clickstream\">".$lang['lightbox'&#93;."</a>";
&#125;

$msg "";

//-----------------------------------------------------
//--- New Slide Show ----------------------------------
//-----------------------------------------------------

$main_template  'slideshow';
$random_cat_image = &#40;defined&#40;"SHOW_RANDOM_IMAGE"&#41; && SHOW_RANDOM_IMAGE == 0&#41; ? "" &#58; get_random_image&#40;$cat_id&#41;;

$additional_sql "";
$countit  0;
$file_array  "theimage[0&#93;=[' ','";
$additional_sql "";

$image_id_sql str_replace&#40;" ", ", ", trim&#40;$user_info['lightbox_image_ids'&#93;&#41;&#41;;

if &#40;$action == "slideshow"&#41;&#123;
$sql "SELECT i.image_id, i.cat_id, i.user_id, i.image_name, i.image_description, i.image_keywords, i.image_date, i.image_active, i.image_media_file, i.image_thumb_file, i.image_download_url, i.image_allow_comments, i.image_comments, i.image_downloads, i.image_votes, i.image_rating, i.image_hits".$additional_sql.", c.cat_name".get_user_table_field&#40;", u.", "user_name"&#41;." 
        
FROM ".IMAGES_TABLE." i,  ".CATEGORIES_TABLE." 
        LEFT JOIN 
".USERS_TABLE." u ON &#40;".get_user_table_field&#40;"u.", "user_id"&#41;." = i.user_id&#41; 
        
WHERE i.image_active AND i.cat_id $cat_id AND c.cat_id i.cat_id 
        ORDER BY i
.image_name" ;
&#125;
else &#123;
if &#40;!empty&#40;
$user_info['lightbox_image_ids'&#93;&#41;&#41;  &#123;
$sql = "SELECT i.image_idi.cat_idi.user_idi.image_namei.image_descriptioni.image_keywordsi.image_datei.image_activei.image_media_filei.image_thumb_filei.image_download_urli.image_allow_commentsi.image_commentsi.image_downloadsi.image_votesi.image_ratingi.image_hits".$additional_sql."c.cat_name".get_user_table_field&#40;"u.", "user_name"&#41;." 
        
FROM ".IMAGES_TABLE." i,  ".CATEGORIES_TABLE." 
        LEFT JOIN 
".USERS_TABLE." u ON &#40;".get_user_table_field&#40;"u.", "user_id"&#41;." = i.user_id&#41;  
        
WHERE image_active AND image_id IN &#40;$image_id_sql&#41; AND c.cat_id = i.cat_id AND i.cat_id IN &#40;".get_auth_cat_sql&#40;"auth_viewcat"&#41;."&#41; 
        
ORDER BY i.image_name" ;
&#125;&#125;

if &#40;
$sql == ""&#41;&#123;
$num_rows = "";&#125;
else &#123;  
$result  $site_db->query&#40;$sql&#41;;
$num_rows  $site_db->get_numrows&#40;$result&#41;;
&#125;

if &#40;!
$num_rows&#41;  &#123;
$msg = "<div align=\"center\"> Sorry but there are no suitable images available for a slideshow. <br>Please try another category</div>";
&
#125;
else &#123;
while &#40;$image_row = $site_db->fetch_array&#40;$result&#41;&#41;
&#123; 
    
if &#40;!is_remote&#40;$image_row['image_media_file'&#93;&#41;&#41; &#123;
      
$image_info = @getimagesize&#40;&#40;MEDIA_PATH."/".$image_row['cat_id'&#93;."/".$image_row['image_media_file'&#93;&#41;&#41;; 
      
$width $image_info[0&#93;;
      
$height $image_info[1&#93;;
    
&#125; 

    
$slideshow_id MEDIA_PATH."/".$image_row['cat_id'&#93;."/";

    
if &#40;$width  >= $max_width&#41; continue;
    
if &#40;$height >= $max_height&#41; continue;

if &#40;stristr&#40;$image_row['image_media_file'&#93;,".jpg"&#41; || stristr&#40;$image_row['image_media_file'&#93;,".jpeg"&#41; || stristr&#40;$image_row['image_media_file'&#93;,".bmp"&#41; || stristr&#40;$image_row['image_media_file'&#93;,".gif"&#41;&#41;&#123;
$countit $countit 1;
if &#40;stristr&#40;$image_row['image_media_file'&#93;,'http'&#41;&#41;
&#123;
   
$file_array $file_array."".$image_row['image_media_file'&#93;. "','./details.php?image_id=".$image_row['image_id'&#93;. " '&#93;; theimage[".$countit."&#93;=[' ','"; 
&#125;
else 
&#123;
   
$file_array $file_array."".$slideshow_id."".$image_row['image_media_file'&#93;. "','./details.php?image_id=".$image_row['image_id'&#93;. " '&#93;; theimage[".$countit."&#93;=[' ','"; 
&#125;
&#125;
&#125;


$file_array substr&#40;"$file_array", 0, -19&#41;; 
if &#40;!$countit&#41;  &#123;
$msg "<div align=\"center\"> Sorry but there are no suitable images available for a slideshow. <br>Please try another category</div>";
&
#125;
&#125;

//-----------------------------------------------------
//--- Clickstream -------------------------------------
//-----------------------------------------------------
$clickstream "<span class=\"clickstream\"><a href=\"".$site_sess->url&#40;ROOT_PATH."index.php"&#41;."\" class=\"clickstream\">".$lang['home'&#93;."</a>".$config['category_separator'&#93;.$txt_clickstream."</span>";

//-----------------------------------------------------
//--- Print Out ---------------------------------------
//-----------------------------------------------------
$site_template->register_vars&#40;array&#40;
  
"file_array" => $file_array,
  
"slideshow_id" => $slideshow_id,
  
"random_cat_image" => $random_cat_image,
  
"msg" => $msg,
  
"countit" => $countit,
  
"clickstream" => $clickstream,
  
"lang_control_panel" => $lang['control_panel'&#93;
&#41;&#41;;

unset&#40;$random_cat_image&#41;;
unset&#40;$file_array&#41;;
unset &#40;$countit&#41;;

$site_template->print_template&#40;$site_template->parse_template&#40;$main_template&#41;&#41;;
include&#40;ROOT_PATH.'includes/page_footer.php'&#41;;
?>



 :arrow: Make a copy of your lightbox.php file (just in case)
 :arrow: Edit lightbox.php
 :arrow: Search for
Code: [Select]

if (!$num_rows)  {
  $thumbnails = "";
  $msg .= ($msg != "") ? "<p>".$lang['lightbox_no_images'] : $lang['lightbox_no_images'];


 :arrow: Replace with
Code: [Select]

if (!$num_rows)  {
  $thumbnails = "";
  $msg .= ($msg != "") ? "<p>".$lang['lightbox_no_images'] : $lang['lightbox_no_images'];

// added for slideshow mod
  $slideshow_button = " <img src=\"".get_gallery_image("slideshow_off.gif")."\" border=\"0\" alt=\"".$lang['alt_slideshow_off']."\" />";
// -----------------------


 :arrow: Search for
Code: [Select]

$thumbnails .= "</table>\n";


 :arrow: Replace with
Code: [Select]

  $thumbnails .= "</table>\n";
// added for slideshow mod
$slideshow_url = $site_sess->url(ROOT_PATH."slideshow.php?action=slideshowlightbox");
$slideshow_button = " <a href=\"".$slideshow_url."\"><img src=\"".get_gallery_image("slideshow.gif")."\" border=\"0\" alt=\"".$lang['alt_slideshow']."\" /></a>";
// added for slideshow mod


 :arrow:  Search for
Code: [Select]

$site_template->register_vars(array(
  "msg" => $msg,
  "clickstream" => $clickstream,
  "lang_lightbox" => $lang['lightbox'],
  "lang_delete_lightbox" => $lang['delete_lightbox'],
  "url_delete_lightbox" => $site_sess->url(ROOT_PATH."lightbox.php?action=clearlightbox"),
  "lang_delete_lightbox_confirm" => $lang['delete_lightbox_confirm'],
  "lang_lightbox_lastaction" => $lang['lighbox_lastaction'],
  "download_button" => $download_button


 :arrow: Replace with

Code: [Select]

$site_template->register_vars(array(
  "msg" => $msg,
  "clickstream" => $clickstream,
  "lang_lightbox" => $lang['lightbox'],
  "lang_delete_lightbox" => $lang['delete_lightbox'],
  "url_delete_lightbox" => $site_sess->url(ROOT_PATH."lightbox.php?action=clearlightbox"),
  "lang_delete_lightbox_confirm" => $lang['delete_lightbox_confirm'],
  "lang_lightbox_lastaction" => $lang['lighbox_lastaction'],
  "slideshow_button" => $slideshow_button, // added for slideshow mod
  "download_button" => $download_button


 :arrow: Make a copy of your template lightbox.html
 :arrow: edit your lightbox.html and add
Code: [Select]
{slideshow_button}
Where you want the slideshow button to appear.

That's it. Now your registered members can enjoy viewing their favorite images using the slide show.
Please take time to visit us at ...
http://www.1024x768wallpapers.com
And don't forget to leave a comment or message.

Offline geza

  • Newbie
  • *
  • Posts: 10
    • View Profile
[Mod] Slideshow
« Reply #35 on: April 19, 2003, 12:27:50 PM »
thank you! ist great!
-------------
;-) gruss
geza

Offline Bany

  • Newbie
  • *
  • Posts: 35
    • View Profile
[Mod] Slideshow
« Reply #36 on: April 21, 2003, 12:32:31 PM »
Habe ja schon die SLIDESHOW laufen gesehen.  :oops: Nur steht hier alles in Englisch versucht mit übersetzen habe ich nur hast nicht geklapp auch logisch wenn man nur mit Bücher versucht. Wenn einer mal die Zeit hätte könnte er das für mich in Deutsch Übersetzen würden mich sehr freuen.

Gruss Bany

Offline Snooky

  • Newbie
  • *
  • Posts: 15
    • View Profile
[Mod] Slideshow
« Reply #37 on: April 27, 2003, 06:02:26 PM »
hi.. im also using the slideshow and its always a great pleasure....
but i only have one problem.... i don't want visitors that use the slideshow that they are able to acces the details page when clicking on an image in the slideshow... just nothing should happen...
can anyone help me or poste how to modify this that it works?

Offline Fugaziman

  • Jr. Member
  • **
  • Posts: 80
    • View Profile
    • http://www.1024x768wallpapers.com
[Mod] Slideshow
« Reply #38 on: April 27, 2003, 06:22:19 PM »
Quote from: Snooky
.... i don't want visitors that use the slideshow that they are able to acces the details page when clicking on an image in the slideshow... just nothing should happen...


This should work.....
1)Make a backup copy of your slideshow template file (eg slideshow.html).
2)Edit the slideshow.html template page
2) search for...
Code: [Select]
<A HREF="#" onmouseover="this.href=theimage[i][2];return false">
3)replace with...
Code: [Select]
<A HREF="#">

I must admit I haven't tested this but it should work  :wink: .
Fugaziman
Please take time to visit us at ...
http://www.1024x768wallpapers.com
And don't forget to leave a comment or message.

Offline Snooky

  • Newbie
  • *
  • Posts: 15
    • View Profile
[Mod] Slideshow
« Reply #39 on: April 28, 2003, 02:34:44 PM »
thanks.... works great and now everythings fine!!!!  :lol:

Offline IngoT

  • Newbie
  • *
  • Posts: 49
    • View Profile
new Buttons / neue Button
« Reply #40 on: April 30, 2003, 01:57:50 PM »
Hallo, ich habe mal neue Button für die Slideshow erstellt.
Ihr könnt sie hier herunterladen:



http://www.digitalfotograf.com/temp/button.zip

Weiterhin muß die Datei slideshow.html geändert werden. Hier die Änderungen (auch gleich in deutscher Sprache)

Code: [Select]

{header}

{if countit}
    <script type="text/javascript" language="JavaScript1.2" src="./scripts/slide.js"></script>
    <SCRIPT LANGUAGE="JavaScript">
        theimage = new Array();
            {file_array}
    </SCRIPT>
{endif countit}

<table width="100%" border="0" cellspacing="0" cellpadding="0" align="center">
    <tr>
    <td class="bordercolor">
        <table width="100%" border="0" cellspacing="1" cellpadding="0">
        <tr>
        <td class="tablebgcolor">
            <table width="100%" border="0" cellspacing="0" cellpadding="0">
            <tr>
            <td class="navbar" height="23">
                <table width="100%" border="0" cellspacing="0" cellpadding="0">
                <tr>
                <td align="left" width="50%">
                    <img src="{template_url}/images/spacer.gif" width="4" height="4" alt="" /><font class="navtxt">{clickstream}</font>
                </td>
            </td>
            <td align="right" width="50%">
                <a href="{url_top_images}"><font class="navtxt">{lang_top_images}</font></a>&nbsp;
                <a href="{url_new_images}"><font class="navtxt">{lang_new_images}</font></a>&nbsp;&nbsp;
            </td>
            </tr>
            </table>
        </td>
        </tr>
        </table>

        <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
        <td width="150" class="row2" valign="top">
            <table width="150" border="0" cellspacing="0" cellpadding="0">
            <tr>
            <td class="head2" height="20"><img src="{template_url}/images/spacer.gif" alt="" width="4" height="4" />{lang_registered_user}</td>
            </tr>
            <tr>
                  <td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
                  </tr>
                  <tr>
                  <td align="center" class="row1">{user_box} </td>
                  </tr>
                  <tr>
                  <td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
                  </tr>
                  </table>
{if random_cat_image}
                  <table width="150" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                  <td class="head2" height="20"> <img src="{template_url}/images/spacer.gif" alt="" width="4" height="4" />{lang_random_image}</td>
                  </tr>
                  <tr>
                  <td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
                  </tr>
                  <tr>
                  <td align="center" class="row1">
{random_cat_image}
                   
                  </td>
                  </tr>
                  <tr>
                  <td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
                  </tr>
                  </table>
{endif random_cat_image}
                  <p align="center">
                  <?php 
                    
echo date&#40;"d.m.Y, H&#58;i"&#41;;  
          
?>

                  </p>

                   
                    </td>
                    <td width="1" class="bordercolor" valign="top"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
                    <td width="18" valign="top"><img src="{template_url}/images/spacer.gif" alt="" width="18" height="18" /></td>
                    <td width="100%" valign="top">
                  {if msg} <b> {msg} </b>
                     
                    {endif msg}
                  <table width="100%" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                  <td class="head1">
{if countit}
        <FORM NAME="slideshow">
        <DIV ALIGN="CENTER">
        <TABLE border=0 CELLPADDING=0 CELLSPACING=0 BGCOLOR="black">
        <TR>
            <TD ALIGN=CENTER>
            <TABLE border=0 CELLPADDING=2 CELLSPACING=1>
            <TR>
                <TD ALIGN=CENTER BGCOLOR="white">
                <A HREF="#" onmouseover="this.href=theimage[i][2];return false"><SCRIPT>document.write('<IMG NAME="slideimage"  STYLE="filter:'+transtype+'('+transattributes+');" SRC="'+theimage[0][1]+'" BORDER=0>')</SCRIPT></A>
                </TD>
            </TR>
            <TR>
                <TD ALIGN=CENTER BGCOLOR="#DDDDDD">
                <A HREF="javascript:slideImage(0);" onfocus="this.blur()">
                <IMG SRC="{template_url}/images/a1.jpg" WIDTH="35" HEIGHT="35" BORDER=0 ALT="Zum Anfang"></A>
                <A HREF="javascript:slideImage(i-1);" onfocus="this.blur()">
                <IMG SRC="{template_url}/images/a2.jpg" WIDTH="35" HEIGHT="35" BORDER=0 ALT="Vorheriges Bild"></A>
                <A HREF="javascript:slidePlay();" onfocus="this.blur()">
                <IMG SRC="{template_url}/images/a3.jpg" WIDTH="35" HEIGHT="35" BORDER=0 ALT="AutoPlay" NAME="imgPlay"></A>
                <A HREF="javascript:slideImage(i+1);"onfocus="this.blur()">
                <IMG SRC="{template_url}/images/a5.jpg" WIDTH="35" HEIGHT="35" BORDER=0 ALT="Nächstes Bild"></A>
                <A HREF="javascript:slideImage(theimage.length-1);"onfocus="this.blur()">
                <IMG SRC="{template_url}/images/a6.jpg" WIDTH="35" HEIGHT="35" BORDER=0 ALT="Zum Ende"></A>
                <SCRIPT>imgStop=new Image().src='{template_url}/images/a4.jpg';</SCRIPT>    </TD>
            </TR>
        </TABLE>
        </TD>
        </TR>
        </TABLE>
        </DIV>
        </FORM>
{endif countit}
        </td>
                 </tr>
    </table>
     
    <table width="100%" border="0" cellspacing="0" cellpadding="0">
        <tr>
        <td> {category_dropdown_form}</td>
        <td align="right">&nbsp;</td>
    </tr>
        </table>
        <p>&nbsp;</p>
    </td>
    <td width="19" valign="top"><img src="{template_url}/images/spacer.gif" alt="" width="19" height="19" /></td>
    </tr>
        </table>
          </td>
        </tr>
      </table>
    </td>
  </tr>
  <tr>
    <td>
    </td>
  </tr>
</table>
{if countit}

<SCRIPT language="javascript">

with(document){
    i=0,play=0,di=images,dl=links,form=slideshow,til=theimage.length
    }
     
slideImage(0);
</SCRIPT>

{endif countit}
{footer}


Gruß Ingo.
http://www.digitalfotograf.com

Michael

  • Guest
zu blöd?
« Reply #41 on: May 01, 2003, 10:46:03 PM »
Hallo ich bin mal wieder zu blöde, habe es eigentlich alles so gemacht wie beschrieben aber ich sehe bei der Slideshow keine Bilder, hat es was mit den Kategorien zu tun?
Wäre für jede Art von Hilfe dankbar  :oops:

http://www.digitalfotogalerie.de/4images

Offline jackie911

  • Newbie
  • *
  • Posts: 41
    • View Profile
Slideshow for 4images 1.7
« Reply #42 on: May 02, 2003, 04:52:26 AM »
Runtime Error in Line 170
Error : 'transtype' not define.

Runtime Error in Line 276
Error : object require


Please help me to solve the above ERROR.

Jackie
jackie911@so-net.com.hk

Error => http://barndisco.com/album/slideshow.php?action=slideshowlightbox

Offline Fugaziman

  • Jr. Member
  • **
  • Posts: 80
    • View Profile
    • http://www.1024x768wallpapers.com
Re: Slideshow for 4images 1.7
« Reply #43 on: May 02, 2003, 07:00:52 AM »
Quote from: jackie911
Runtime Error in Line 170
Error : 'transtype' not define.

Runtime Error in Line 276
Error : object require


Please help me to solve the above ERROR.

Jackie
jackie911@so-net.com.hk

Error => http://barndisco.com/album/slideshow.php?action=slideshowlightbox


I have come across this before and 9 times out of 10 it has something to do with some other Javascript you have somewhere in your page.
Just try removing or commenting out any javascript you've added and see if it works then.

If not send me a private messade with a username etc, that I can test it with.

Sorry I couldn't be of more help. :(
Good Luck
Fugaziman  8)
Please take time to visit us at ...
http://www.1024x768wallpapers.com
And don't forget to leave a comment or message.

Michael

  • Guest
Fehler behoben
« Reply #44 on: May 02, 2003, 10:18:02 AM »
bei mir hat sich der Fehler gefunden, ich hatte einfach vergessen das ich einen neuen Ordner "slides" anlegen musste in dem ich dann das slide.js ablegen kann.

vielen Dank an IngoT, der mich darauf aufmerksam machte  :P

Gruß, Michael