You are not logged in.

- SZIKRA -

Beginner

Posts: 34

Location: Hungary, Szeged

  • Send private message

161

Saturday, August 1st 2009, 7:16pm

more then 10 thumbnails is not scrolling

It is sure a stupid question,
but more then 10 thumbnails is not scrolling. hmm..
I cant see

Where can I find solution for this?... *confused*

Thanks Szikra

VN2009

Professional

Posts: 1,336

Location: Duluth MN

  • Send private message

162

Tuesday, August 4th 2009, 12:38am

i use 14 thumns in one of my panos and it is working fine. i just do not like that it mvoes farther to the left than the right.

Shanti

Intermediate

Posts: 301

Location: Puerto Vallarta

Occupation: Web Developer

  • Send private message

163

Wednesday, August 5th 2009, 11:36pm

Sorry I have been terribly busy.

VN2009, that was a problem with the older version, but if I remember correctly that was fixed in the latest version...

can I see an URL for this pano?

164

Tuesday, August 11th 2009, 3:59pm

Hello,
I can't edit position of thumbnails. I can only edit left-right position. I don't know what i'm doing wrong. thanks for any sugesstion!

gallery1.xml

Source code

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
<?xml version="1.0" encoding="utf-8"?>

<images>
<thumboptions>
<ScrollSpeed>20</ScrollSpeed>

<thumbW>150</thumbW>
<thumbH>80</thumbH>

<ThumbPadding>20</ThumbPadding>
<ShownThumbs>10</ShownThumbs>
<ThumbOffset>10</ThumbOffset>
<ThumbOffsetY>-10</ThumbOffsetY>
<textOffsetX>100</textOffsetX>
<textOffsetY>-200</textOffsetY>
<InitialAlpha>.20</InitialAlpha>
<font_type>Verdana</font_type>
<font_size>15</font_size>
<font_alpha>10</font_alpha>
<font_color>0xffffff</font_color>
<overColor>#FFFFFF</overColor>

</thumboptions>

	<pic>
    	<thumb>jpg/1.png</thumb>
    	<panoToLoadXml>s0</panoToLoadXml>
    	<about>Meta</about>
	</pic>
	<pic>
    	<thumb>jpg/2.png</thumb>
    	<panoToLoadXml>s1</panoToLoadXml>
    	<about>Most Zamkowy</about>
	</pic>
	
  </images>


xml.

Source code

1
2
3
4
5
6
7
8
9
10
<plugin name="thumbnails"
    	url="plugins/as3Thumbsforkrpano.swf?TheXML=gallery1.xml"
   	align="leftbottom" x="900" y="10"
    	/>
    	<action name="s0">
loadpano(44.xml,null,MERGE,BLEND(1));
</action>
<action name="s1">
loadpano(2/60.xml,null,MERGE,BLEND(1));
</action>


pano is here: http://www.imprezy.rzeszow.pl/pano/repor…owski/1/44.html

thanks for help *attention*

Best regards

Shanti

Intermediate

Posts: 301

Location: Puerto Vallarta

Occupation: Web Developer

  • Send private message

165

Tuesday, August 11th 2009, 6:09pm

panoo4 have ou chaned the Y offset?

<ThumbOffsetY>-10</ThumbOffsetY>

166

Tuesday, August 11th 2009, 6:29pm

yes of course but still no reaction. in this example all thumbnails are good, and i can change position with no problems. *confused* i use rev7

167

Wednesday, August 12th 2009, 7:15am

Hi, thanks for this plugin! But it seems we have some issues with using it.
The thumbnails does not load and plugin shows “Loaded 2 of 10 thumbnails”.
But some pictures does not have these problems. Could you please tell us what can cause these problems? Thank you!
P.S. We have these problems on both server and local machine.

168

Thursday, August 13th 2009, 10:46pm

Is it possible to scroll through Spherical and Cylindrical panoramas?

Hi everyone,

first of all thanks a lot to Shanti for the great plugin.

I have been studying it for the past hour and I have come across an issue I can't seem to solve.

I shoot both full spherical and cylindrical panoramas. To display them properly in KRpano they need very different view settings. For cylindrical panoramas I need to limit the FOV.

In this example:

http://www.stefanzander.com/pano/thumbss…heorandall.html

The first pano xml is limiting the FOV because it is a cylindrical. If you click on the second thumbnail, the second pano loads and the way it rotates is with the same FOV limitation of the first one, even though on it's own xml it is not limited.

If you load the second pano directly it navigates like a spherical:

http://www.stefanzander.com/pano/thumbss…ullscreen1.html

So both panos are acting with the view settings of the first one.

Has anyone come across an issue like this and knows a way around it?

Many Thanks,

Zander

michel

Professional

Posts: 1,153

Location: ANDORRA

Occupation: TV

  • Send private message

169

Thursday, September 3rd 2009, 6:51am

Hi zander,

I think the problem comes from your view settings in the first xml...
code from your theorandall.xml :

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
    <view hlookat       ="81"
          vlookat       ="0"
          fov           ="81"
          fovmin        ="5"
          fovmax        ="81"
          limitfov      ="true"
          fisheye       ="0"
          architectural ="1.0"
          fisheyefovlink="0"
          limitview="lookat"
          vlookatmin="-0"
          vlookatmax="+0"
          />

You have used the attribute limitview in a way that make impossible to tilt the camera up or down !!!
limitview="lookat"
vlookatmin="-0"
vlookatmax="+0"
It's ok...
But, in your second xml , you have not changed the limitview attribute in the view settings...
Then, this attribute continue to make impossible to tilt the camera up or down !!!
That's not what you want... *unsure*
There is no problem when you use it directly because the limitview was not defined before !!! *whistling*
You have to change the view settings in your second xml adding limitview="auto"
The code from your fullscreen1.xml will be like this:

Source code

1
2
3
4
5
6
7
8
9
    <view hlookat       ="0"
          vlookat       ="0"
          fov           ="90"
          fovmin        ="90"
          fovmax        ="90"
          fisheye       ="0.35"
          fisheyefovlink="0.50"
       	       limitview="auto"
          />


I have tried this way and it works... ;-)

Hope this help,
Salut.

170

Monday, September 7th 2009, 1:34pm

totaln00ber:

It works exactly like that

krpano.call("action(" + panoToLoad +")");

and as you can see on the xml

<action name="s1">
loadpano(pano.xml,null,MERGE,BLEND(1));
</action>

s1 is an action

you can name your action anything you like, and just replace it in the <panoToLoadXml>


I think the xml is not clear on that, sorry *sad* maybe I should rename it to <krpanoaction> ... *confused*
Dear Shanti,

I use final beta 8 version of krpano and just tried your plugin and can't see anything. What I do wrong? Here my gallery 1 xml code
<?xml version="1.0" encoding="utf-8"?>

<images>
<thumboptions>
<ScrollSpeed>25</ScrollSpeed>
<thumbW>120</thumbW>
<thumbH>60</thumbH>
<ThumbPadding>20</ThumbPadding>
<ShownThumbs>8</ShownThumbs>
<ThumbOffset>-100</ThumbOffset>
<thumbH>70</thumbH>
<InitialAlpha>.2</InitialAlpha>
<font_type>Wide Latin</font_type>
<font_size>15</font_size>
<font_alpha>1</font_alpha>
<font_color>0xffffff</font_color>
</thumboptions>


</images>

<pic>
<thumb>thumbs/test0.jpg</thumb>
<panoToLoadXml>test0.xml</panoToLoadXml>
<about><![CDATA[Text To Show]]></about>
</pic>

</images>
<pic>
<thumb>thumbs/test1.jpg</thumb>
<panoToLoadXml>test1.xml</panoToLoadXml>
<about><![CDATA[Text To Show]]></about>
</pic>

</images>
<pic>
<thumb>thumbs/test2.jpg</thumb>
<panoToLoadXml>test2.xml</panoToLoadXml>
<about><![CDATA[Text To Show]]></about>
</pic>

</images>
<pic>
<thumb>thumbs/test3.jpg</thumb>
<panoToLoadXml>test3.xml</panoToLoadXml>
<about><![CDATA[Text To Show]]></about>
</pic>

</images>
<pic>
<thumb>thumbs/test4.jpg</thumb>
<panoToLoadXml>test4.xml</panoToLoadXml>
<about><![CDATA[Text To Show]]></about>
</pic>

</images>
<pic>
<thumb>thumbs/test5.jpg</thumb>
<panoToLoadXml>test5.xml</panoToLoadXml>
<about><![CDATA[Text To Show]]></about>
</pic>

</images>
<pic>
<thumb>thumbs/test6.jpg</thumb>
<panoToLoadXml>test6.xml</panoToLoadXml>
<about><![CDATA[Text To Show]]></about>
</pic>

</images>

<pic>
<thumb>thumbs/test7.jpg</thumb>
<panoToLoadXml>test7.xml</panoToLoadXml>
<about><![CDATA[Text To Show]]></about>
</pic>

</images>
<pic>
<thumb>thumbs/test8.jpg</thumb>
<panoToLoadXml>test8.xml</panoToLoadXml>
<about><![CDATA[Text To Show]]></about>
</pic>

</images>
And this is from main xml
<plugin name="thumbnails"
url="as3Thumbsforkrpano.swf?TheXML=gallery1.xml"
align="lefttop"
keep="true"
/>

</krpano>

Can you please advise where I messed up?

Thanks a lot,
Toga


Have corrected everything but still have two things unsolved:

1. I don't want my thumbnails to be transparent but there's only one parameter InitialAlpha. How I can make thumbnails 100% visible?
2. I can place plugin leftbottom or lefttop but not center top, how to do that?
Please help anybody who faced the same and settled successfully.
thanks

This post has been edited 1 times, last edit by "rzayevt" (Sep 9th 2009, 10:40am)


andrew22222

Intermediate

Posts: 397

Location: Australia

  • Send private message

171

Friday, September 18th 2009, 7:37pm

How to set individual loading views?

Hi,

Thanks for the plugin. I am practicing with a demo and have 14 panoramas loaded through scrolling thumbnails using 1 XML file.

What I'm struggling to work out is where or how to add the code that sets the initial view for each panorama as they all have different starting views?

The basic code is

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  <!-- as3Thumbsforkrpano plugin: -->

<plugin name="thumbnails" 
        url="as3Thumbsforkrpano.swf?TheXML=./gallery1.xml" 
        capture="false"
        keep="true"
        align="leftbottom"
        scale="0.5"
y="-114"
edge="leftbottom"
        />

<action name="loadpano">
loadpano(%SWFPATH%/%1, null, MERGE, BLEND(1));
</action>


and then 14 of these

Source code

1
2
3
<action name="thumb01action">
action(loadpano, xml/01.xml);
</action>


Each of the 14 xml files looks something like

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
<krpano>

	<image type="CUBE">

		<left url="../360/01/demo_01_l.jpg" />
		<front url="../360/01/demo_01_f.jpg" />
		<right url="../360/01/demo_01_r.jpg" />
		<back url="../360/01/demo_01_b.jpg" />
		<up url="../360/01/demo_01_u.jpg" />
		<down url="../360/01/demo_01_d.jpg" />
	</image>

</krpano>


The gallery1.xml is

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<thumboptions>
<thumbW>150</thumbW>
<thumbH>70</thumbH>
<ThumbOffset>5</ThumbOffset>
<InitialAlpha>0.2</InitialAlpha>
<ThumbPadding>10</ThumbPadding>
<ScrollSpeed>10</ScrollSpeed>
<ShownThumbs>4</ShownThumbs>
<font_type>Arial</font_type>
<font_size>37</font_size>
<font_alpha>1</font_alpha>
<font_color>0xffffff</font_color>
<textOffsetX>-180</textOffsetX>
    <textOffsetY>-50</textOffsetY>
</thumboptions>

<pic>
    <thumb>thumbs/001.jpg</thumb>
    <panoToLoadXml>thumb01action</panoToLoadXml>
    <about>Location 1</about>
</pic>

etc..........


Would the code be added to any of those pages?

Thanks,

Andrew

michel

Professional

Posts: 1,153

Location: ANDORRA

Occupation: TV

  • Send private message

172

Friday, September 18th 2009, 9:09pm

Hi andrew22222,

Quoted

Each of the 14 xml files looks something like
.......
Here is where you have to set your <view> preferences....
Like this:

Source code

1
<view hlookat="0" vlookat="0" fov="90" />

Each xml file will have his own <view> settings. ;-)
More info about <view> attributes here http://krpano.com/docu/xml/#view

Salut.

andrew22222

Intermediate

Posts: 397

Location: Australia

  • Send private message

173

Monday, September 28th 2009, 12:26am

Excellent. Many thanks for the solution Michel. I just got back from a well earned holiday from the computer and got the individual views loading no problem *smile*

I had another idea also but not sure if it's possible with the plugin? Load just 3 thumbnails ( which I can do) but have a button on the left and right. Left button would show the previous 3 thumbs and right button would show the next 3 thumbs. I have read the threads again and didn't see that anyone had attempted this.

Andrew

Felipeca

Beginner

Posts: 38

Location: México City

Occupation: Dsigner, 3dmodeler and photographer

  • Send private message

174

Tuesday, September 29th 2009, 1:16am

Panos won't load after changing my files from computer

Hi everyone,

I'm new to Krpano and I want to implement it on my website. I was successfully trying locally on one of my computers a file using the scrolling thumbnails gallery. Everything was working fine, but I copied all my files, respecting directory structure to another computer and I got "loading error (IO Error)" message.
I copied my directory structure to a different drive on the same computer and the error is the same as when moving my files to another computer.
It seems that krpano is looking for my files in the wrong address "file:///C:Users/file.xml". I even tried using the complete path for my files, with the same result. I'm posting a piece of the code I'm using.

Any advice would be greatly appreciated.


<krpano version="1.0.8" onstart="action(load0);">

<!-- <display flash10="off" stillquality="HIGHSHARP" />
<view fov="90" maxpixelzoom="1.5" fovmax="120" fisheye="0" /> -->


<!-- as3Thumbsforkrpano plugin: -->

<plugin name="thumbnails"
url="as3Thumbsforkrpano.swf?TheXML=galeria.xml"
capture="false"
keep="true"
align="rightbottom"
scale="1"
y="-20"
/>

<action name="loadpano">
loadpano(%SWFPATH%/../../../%1, null, MERGE, BLEND(1));
</action>



<!-- actions for thumbnails, called from the as3Thumbsforkrpano plugin, see gallery1.xml -->

<action name="load0">
action(loadpano, C:\Users\Felipe\Desktop\Colegio\xmldocs\inicio.xml);
</action>

<action name="load1">
action(loadpano, actos.xml);
lookto(112.5,0,45,smooth(100,50,20));
</action>

<action name="load2">
action(loadpano, biologia.xml);
lookto(-150,0,45,smooth(100,50,20));
</action>

<action name="load3">
action(loadpano, computo.xml);
</action>

<action name="load4">
action(loadpano, hall.xml);
</action>

<action name="load5">
action(loadpano, lectura.xml);
</action>

<action name="thumb06action">
action(loadpano, psicomotriz.xml);
</action>

<action name="load6">
action(loadpano, salon52.xml);
</action>

<action name="load7">
action(loadpano, salon55.xml);
</action>



</krpano>

michel

Professional

Posts: 1,153

Location: ANDORRA

Occupation: TV

  • Send private message

175

Tuesday, September 29th 2009, 1:33am

Hi Felipeca,

Path problem... *sad*

Look at this post from KLAUS about paths inside the xml file: Problem on changing URL of a plugin

Hope this can help. ;-)

Salut.

Felipeca

Beginner

Posts: 38

Location: México City

Occupation: Dsigner, 3dmodeler and photographer

  • Send private message

176

Tuesday, September 29th 2009, 5:31pm

Thanks Michel.

Will try it right away!

Already gave it a try. It worked after a couple of tries.

Thanks a lot!

This post has been edited 1 times, last edit by "Felipeca" (Sep 29th 2009, 5:57pm)


177

Tuesday, October 6th 2009, 7:17am

Hello, you didn't answer on my comment #167. Please let me know if anybody can help me with this:

The thumbnails does not load and plugin shows “Loaded 2 of 10 thumbnails”.
But some pictures does not have these problems. Could you please tell us what can cause these problems? Thank you!
P.S. We have these problems on both server and local machine.

Fabrice

Beginner

Posts: 16

Location: Paris

Occupation: Photographer

  • Send private message

178

Friday, October 30th 2009, 5:16pm

grrrrr! problems ArgumentError: Error #2025

<action name="fed up">
onclik="set(fabrice.commit suicide, true);"
</action>

gallery1.xml





<images>
<thumboptions>
<thumbW>150</thumbW>
<thumbH>70</thumbH>
<ThumbOffset>0</ThumbOffset>
<InitialAlpha>0.2</InitialAlpha>
<ThumbPadding>10</ThumbPadding>
<ScrollSpeed>20</ScrollSpeed>
<ShownThumbs>5</ShownThumbs>
<font_type>Arial</font_type>
<font_size>20</font_size>
<font_alpha>1</font_alpha>
<font_color>0xffffff</font_color>
</thumboptions>
<pic>
<thumb>vignettes/img1.jpg</thumb>
<panoToLoadXml>thumb01action</panoToLoadXml>
<about>1</about>
</pic>
<pic>
<thumb>vignettes/img2.jpg</thumb>
<panoToLoadXml>thumb02action</panoToLoadXml>
<about>1</about>
</pic>

</images>


krpano.xml



<plugin name="thumbnails"
url="as3Thumbsforkrpano.swf?TheXML=gallery1.xml"
align="bottom"
keep="true"
x="0" y="-50"
/>
<action name="thumb01action">loadpano(test sivory completbeta0.xml);</action>
<action name="thumb02action">loadpano(test sivory completbeta1.xml);</action>


so when i open krpano.swf
i have this error message...

ArgumentError: Error #2025: Le DisplayObject indiqué doit être un enfant de l'appelant.
at flash.display::Loader/_load()
at flash.display::Loader/load()
at as3Thumbsforkrpano_fla::MainTimeline/loadThumbs()
at as3Thumbsforkrpano_fla::MainTimeline/thumbLoaded()



only one image appear on the thumbnails and works correclty....

there is a message on the krpano.swf windows
loaded one of two thumbnails..
i'm a novice and i don't know how to resolve my problem...
i someone have the soluce... it would be great .. i didn't read all the pages but some of its i didn't find the clue..

thanks.

Shanti

Intermediate

Posts: 301

Location: Puerto Vallarta

Occupation: Web Developer

  • Send private message

179

Saturday, October 31st 2009, 2:15am

<action name="fed up">
onclik="set(fabrice.commit suicide, true);"
</action>

gallery1.xml





<images>
<thumboptions>
<thumbW>150</thumbW>
<thumbH>70</thumbH>
<ThumbOffset>0</ThumbOffset>
<InitialAlpha>0.2</InitialAlpha>
<ThumbPadding>10</ThumbPadding>
<ScrollSpeed>20</ScrollSpeed>
<ShownThumbs>5</ShownThumbs>
<font_type>Arial</font_type>
<font_size>20</font_size>
<font_alpha>1</font_alpha>
<font_color>0xffffff</font_color>
</thumboptions>
<pic>
<thumb>vignettes/img1.jpg</thumb>
<panoToLoadXml>thumb01action</panoToLoadXml>
<about>1</about>
</pic>
<pic>
<thumb>vignettes/img2.jpg</thumb>
<panoToLoadXml>thumb02action</panoToLoadXml>
<about>1</about>
</pic>

</images>


krpano.xml



<plugin name="thumbnails"
url="as3Thumbsforkrpano.swf?TheXML=gallery1.xml"
align="bottom"
keep="true"
x="0" y="-50"
/>
<action name="thumb01action">loadpano(test sivory completbeta0.xml);</action>
<action name="thumb02action">loadpano(test sivory completbeta1.xml);</action>


so when i open krpano.swf
i have this error message...

ArgumentError: Error #2025: Le DisplayObject indiqué doit être un enfant de l'appelant.
at flash.display::Loader/_load()
at flash.display::Loader/load()
at as3Thumbsforkrpano_fla::MainTimeline/loadThumbs()
at as3Thumbsforkrpano_fla::MainTimeline/thumbLoaded()



only one image appear on the thumbnails and works correclty....

there is a message on the krpano.swf windows
loaded one of two thumbnails..
i'm a novice and i don't know how to resolve my problem...
i someone have the soluce... it would be great .. i didn't read all the pages but some of its i didn't find the clue..

thanks.


please give me an url so I can see the problem.


Hello, you didn't answer on my comment #167. Please let me know if anybody can help me with this:

The thumbnails does not load and plugin shows “Loaded 2 of 10 thumbnails”.
But some pictures does not have these problems. Could you please tell us what can cause these problems? Thank you!
P.S. We have these problems on both server and local machine.


same here, can I see the url of the pano ?

Posts: 192

Location: Turkey

Occupation: 360 Software and Hardware Developing

  • Send private message

180

Saturday, October 31st 2009, 6:40am

hello i have the same problem too with www.ankamall.com.tr when you use this with google chrome error message comes