3D Photo Wall Support Product Page
This topic was archived
help with dynamic images
Asked 29 Sep 2008 20:23:41
1
has this question
29 Sep 2008 20:23:41 Giancarlo Barba posted:
Hi. I tryed to done a gallery with 3D photowall for dreamweaver with dynamics features . I do that using your tutorial, but i use a asp server model. Well i done same for active slideshow pro and css gallery.. and work always fine. But this one i have some problem If i set the repeat region to dsplay 10 record work.. otherwise dont load all image in the recordset and is completed without display my pics. I know that is a unofficial solution in your tutoral but you can suggest me how resolve this problem?
Thank you.
Replies
Replied 02 Oct 2008 13:16:45
02 Oct 2008 13:16:45 Miroslav Zografski replied:
Hi Giancarlo,
Can you paste or send me the code of the modified XML file to ?
Regards,
M.Zografski
-----------------------------------
DMXZone.com Support Team
-----------------------------------
Can you paste or send me the code of the modified XML file to ?
Regards,
M.Zografski
-----------------------------------
DMXZone.com Support Team
-----------------------------------
Replied 06 Oct 2008 10:59:33
06 Oct 2008 10:59:33 Giancarlo Barba replied:
<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="Connections/cnnconnection.asp" -->
<%
Dim Recordset1
Dim Recordset1_cmd
Dim Recordset1_numRows
Set Recordset1_cmd = Server.CreateObject ("ADODB.Command"
Recordset1_cmd.ActiveConnection = MM_cnnconnection_STRING
Recordset1_cmd.CommandText = "SELECT * FROM images"
Recordset1_cmd.Prepared = true
Set Recordset1 = Recordset1_cmd.Execute
Recordset1_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index
Repeat1__numRows = -1
Repeat1__index = 0
Recordset1_numRows = Recordset1_numRows + Repeat1__numRows
%>
<gallery><properties>
<largeImageFolder>public/images/</largeImageFolder>
<thumbnailFolder>public/images/thumbs/</thumbnailFolder>
<glowSize>16</glowSize>
<numRows>5</numRows>
<cameraFieldOfView>20</cameraFieldOfView>
<largeImageMoveEasing>easeInExpo</largeImageMoveEasing>
</properties>
<images>
<%
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))
%>
<image url="<%=(Recordset1.Fields.Item("thumb"
.Value)%>" link="<%=(Recordset1.Fields.Item("links"
.Value)%>" title="<%=(Recordset1.Fields.Item("title"
.Value)%>" />
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset1.MoveNext()
Wend
%>
</images>
</gallery>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>
Hi Miroslav this is my file modified. I set up to display all pictures (60 images) but when loader come up to 40 is blocked
Thank you for your curtesy
<BLOCKQUOTE id=quote><font size=1 face="Verdana, Arial, Helvetica" id=quote>quote:<hr height=1 noshade id=quote>
Hi Giancarlo,
Can you paste or send me the code of the modified XML file to ?
Regards,
M.Zografski
-----------------------------------
DMXZone.com Support Team
-----------------------------------
<hr height=1 noshade id=quote></BLOCKQUOTE id=quote></font id=quote><font face="Verdana, Arial, Helvetica" size=2 id=quote>
<!--#include file="Connections/cnnconnection.asp" -->
<%
Dim Recordset1
Dim Recordset1_cmd
Dim Recordset1_numRows
Set Recordset1_cmd = Server.CreateObject ("ADODB.Command"
Recordset1_cmd.ActiveConnection = MM_cnnconnection_STRING
Recordset1_cmd.CommandText = "SELECT * FROM images"
Recordset1_cmd.Prepared = true
Set Recordset1 = Recordset1_cmd.Execute
Recordset1_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index
Repeat1__numRows = -1
Repeat1__index = 0
Recordset1_numRows = Recordset1_numRows + Repeat1__numRows
%>
<gallery><properties>
<largeImageFolder>public/images/</largeImageFolder>
<thumbnailFolder>public/images/thumbs/</thumbnailFolder>
<glowSize>16</glowSize>
<numRows>5</numRows>
<cameraFieldOfView>20</cameraFieldOfView>
<largeImageMoveEasing>easeInExpo</largeImageMoveEasing>
</properties>
<images>
<%
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))
%>
<image url="<%=(Recordset1.Fields.Item("thumb"
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset1.MoveNext()
Wend
%>
</images>
</gallery>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>
Hi Miroslav this is my file modified. I set up to display all pictures (60 images) but when loader come up to 40 is blocked
Thank you for your curtesy
<BLOCKQUOTE id=quote><font size=1 face="Verdana, Arial, Helvetica" id=quote>quote:<hr height=1 noshade id=quote>
Hi Giancarlo,
Can you paste or send me the code of the modified XML file to ?
Regards,
M.Zografski
-----------------------------------
DMXZone.com Support Team
-----------------------------------
<hr height=1 noshade id=quote></BLOCKQUOTE id=quote></font id=quote><font face="Verdana, Arial, Helvetica" size=2 id=quote>
Replied 06 Oct 2008 12:04:07
06 Oct 2008 12:04:07 Miroslav Zografski replied:
Hi Giancarlo,
Your code appears to be OK, please, check following:
1) Paths, to thumbs and images in your modified XML.ASP doc.
2) Name of modified XML.ASP doc in your page containing the gallery - embed and param tags.
3) Verify that your modified XML.ASP doc is uploaded.
If those are OK too, please, make more detailed description of what exactly is happening when you test the page.
It will be good if you create test page and post here a link to it.
Regards,
M.Zografski
-----------------------------------
DMXZone.com Support Team
-----------------------------------
Your code appears to be OK, please, check following:
1) Paths, to thumbs and images in your modified XML.ASP doc.
2) Name of modified XML.ASP doc in your page containing the gallery - embed and param tags.
3) Verify that your modified XML.ASP doc is uploaded.
If those are OK too, please, make more detailed description of what exactly is happening when you test the page.
It will be good if you create test page and post here a link to it.
Regards,
M.Zografski
-----------------------------------
DMXZone.com Support Team
-----------------------------------
Replied 09 Oct 2008 10:47:32
09 Oct 2008 10:47:32 Giancarlo Barba replied:
I Miroslav.
I do all you say.
If i path the thumbs and images the 3d photowall dont work
i placed a demo on line . I not set option because i want understand if work. I have a database with about 376 records ... if i use a filtered recordset.. work.. otherwise no
Please see at www.arteesimpatia.it/muro.asp
this is my asp page where i place the 3dphotowall
<font color=blue>
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="800" height="600" id="dmx3DWall1" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="true" />
<param name="movie" value="ScriptLibrary/dmx3DPhotoWall.swf" />
<param name="quality" value="best" />
<param name="scale" value="noscale" />
<param name="salign" value="lt" />
<param name="bgcolor" value="#000000" />
<param name="flashvars" value="xmlFile=dmx3DWall1_xml.asp" />
<embed src="ScriptLibrary/dmx3DPhotoWall.swf" quality="best" scale="noscale" salign="lt" bgcolor="#0000FF" flashvars="xmlFile=dmx3DWall1_xml.asp" width="800" height="600" name="dmx3DWall1" align="middle" allowscriptaccess="sameDomain" allowfullscreen="true" type="application/x-shockwave-flash" pluginspage="www.macromedia.com/go/getflashplayer" />
</object>
</body>
</html>
</font id=blue>
this is my xml.asp file
<font color=blue>
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!--#include file="Connections/cnnvetro.asp" -->
<%
Dim Recordset1
Dim Recordset1_cmd
Dim Recordset1_numRows
Set Recordset1_cmd = Server.CreateObject ("ADODB.Command"
Recordset1_cmd.ActiveConnection = MM_cnnvetro_STRING
Recordset1_cmd.CommandText = "SELECT * FROM prodotti"
Recordset1_cmd.Prepared = true
Set Recordset1 = Recordset1_cmd.Execute
Recordset1_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index
Repeat1__numRows = -1
Repeat1__index = 0
Recordset1_numRows = Recordset1_numRows + Repeat1__numRows
%>
<gallery><properties>
<largeImageFolder>public/prodotti/</largeImageFolder>
<thumbnailFolder>public/prodotti/</thumbnailFolder>
<glowSize>16</glowSize>
</properties>
<images>
<%
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))
%>
<image url="<%=(Recordset1.Fields.Item("immagine"
.Value)%>" />
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset1.MoveNext()
Wend
%>
</images>
</gallery>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>
</font id=blue>
thanks for your curtecy
I do all you say.
If i path the thumbs and images the 3d photowall dont work
i placed a demo on line . I not set option because i want understand if work. I have a database with about 376 records ... if i use a filtered recordset.. work.. otherwise no
Please see at www.arteesimpatia.it/muro.asp
this is my asp page where i place the 3dphotowall
<font color=blue>
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="800" height="600" id="dmx3DWall1" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="true" />
<param name="movie" value="ScriptLibrary/dmx3DPhotoWall.swf" />
<param name="quality" value="best" />
<param name="scale" value="noscale" />
<param name="salign" value="lt" />
<param name="bgcolor" value="#000000" />
<param name="flashvars" value="xmlFile=dmx3DWall1_xml.asp" />
<embed src="ScriptLibrary/dmx3DPhotoWall.swf" quality="best" scale="noscale" salign="lt" bgcolor="#0000FF" flashvars="xmlFile=dmx3DWall1_xml.asp" width="800" height="600" name="dmx3DWall1" align="middle" allowscriptaccess="sameDomain" allowfullscreen="true" type="application/x-shockwave-flash" pluginspage="www.macromedia.com/go/getflashplayer" />
</object>
</body>
</html>
</font id=blue>
this is my xml.asp file
<font color=blue>
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%>
<!--#include file="Connections/cnnvetro.asp" -->
<%
Dim Recordset1
Dim Recordset1_cmd
Dim Recordset1_numRows
Set Recordset1_cmd = Server.CreateObject ("ADODB.Command"
Recordset1_cmd.ActiveConnection = MM_cnnvetro_STRING
Recordset1_cmd.CommandText = "SELECT * FROM prodotti"
Recordset1_cmd.Prepared = true
Set Recordset1 = Recordset1_cmd.Execute
Recordset1_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index
Repeat1__numRows = -1
Repeat1__index = 0
Recordset1_numRows = Recordset1_numRows + Repeat1__numRows
%>
<gallery><properties>
<largeImageFolder>public/prodotti/</largeImageFolder>
<thumbnailFolder>public/prodotti/</thumbnailFolder>
<glowSize>16</glowSize>
</properties>
<images>
<%
While ((Repeat1__numRows <> 0) AND (NOT Recordset1.EOF))
%>
<image url="<%=(Recordset1.Fields.Item("immagine"
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
Recordset1.MoveNext()
Wend
%>
</images>
</gallery>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>
</font id=blue>
thanks for your curtecy
Replied 09 Oct 2008 11:59:09
09 Oct 2008 11:59:09 Miroslav Zografski replied:
Hi Giancarlo,
I saw your test page. It is loading till image 150.jpg and hangs, because the other images are not available - error 404. I tried to open the link to one of those images in the browser and I receive the same error. I checked and the images from 151 to 160 are missing. Gallery tried to get next 7 images few times and hanged. So check for files to be i right place and then test the gallery again.
Regards,
M.Zografski
-----------------------------------
DMXZone.com Support Team
-----------------------------------
I saw your test page. It is loading till image 150.jpg and hangs, because the other images are not available - error 404. I tried to open the link to one of those images in the browser and I receive the same error. I checked and the images from 151 to 160 are missing. Gallery tried to get next 7 images few times and hanged. So check for files to be i right place and then test the gallery again.
Regards,
M.Zografski
-----------------------------------
DMXZone.com Support Team
-----------------------------------
Replied 09 Oct 2008 17:03:50
09 Oct 2008 17:03:50 Giancarlo Barba replied:
Thank you Miroslav
I understand why dont work... the script stopping when no found a image. I see also that stop if the field image of the record is empty.
Now i can use in my projects.
Maybe in next update of thi nice extension you can add a skip instruction when no found a image.
Thank you for the help.
Arch. Giancarlo Barba
I understand why dont work... the script stopping when no found a image. I see also that stop if the field image of the record is empty.
Now i can use in my projects.
Maybe in next update of thi nice extension you can add a skip instruction when no found a image.
Thank you for the help.
Arch. Giancarlo Barba
Replied 09 Oct 2008 18:01:43
09 Oct 2008 18:01:43 Miroslav Zografski replied:
Hi Giancarlo,
I'm glad to help. I'll add this as a proposition to the list with features for future releases.
Regards,
M.Zografski
-----------------------------------
DMXZone.com Support Team
-----------------------------------
I'm glad to help. I'll add this as a proposition to the list with features for future releases.
Regards,
M.Zografski
-----------------------------------
DMXZone.com Support Team
-----------------------------------

