You are not logged in.

Dear visitor, welcome to krpano.com Forum. If this is your first visit here, please read the Help. It explains in detail how this page works. To use all features of this page, you should consider registering. Please use the registration form, to register here or read more information about the registration process. If you are already registered, please login here.

161

Sunday, March 29th 2020, 2:38pm

@agufon... no wonder if you have turned deeplinking off...

your code : deeplinking="false" ---> change to true!

162

Tuesday, March 31st 2020, 11:04am

Solved

Yeeeees, it is perfect.
Thank you

Ustungor

Beginner

Posts: 3

Location: istanbul

Occupation: Creative Director

  • Send private message

163

Tuesday, April 7th 2020, 6:35pm

Freelance

Sorry for posting here but I couldn't manage to create a new post. ı can only reply. Again sorry if I shouldn't be doing this. ;(
I am looking for a freelancer who has good knowledge of Krpano for a game we have created. The gigapixel photo is ready but we need help on the coding part. Normal coders aren't very good at this.

Sergey74

Intermediate

Posts: 193

Location: Russia, Chelyabinsk

Occupation: professional noob

  • Send private message

164

Saturday, April 11th 2020, 4:53pm

It seems onhover.addevent is not working

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<style name="teststyle"
   	onover.addevent="trace(onover);"
   	onhover.addevent="trace(onhover);"
   	onout.addevent="trace(onout);"
   	onclick.addevent="trace(onclick);"
   	ondown.addevent="trace(ondown);"
   	onup.addevent="trace(onup);"
   	onloaded.addevent="trace(onloaded);"
   	/>
<layer name="testlayer"
   	type="container"
   	style="teststyle"
   	bgalpha="1.0"
        ...
   	bgcapture="true"
   	/>
translation difficulties *huh*

toosten

Intermediate

Posts: 521

Location: Berlin

Occupation: Software-Entwickler bei VR-Easy ( HTML, JS, PHP, krpano, C++, Java )

  • Send private message

165

Saturday, April 11th 2020, 5:03pm

https://krpano.com/docu/xml/#addevent

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
<style name="teststyle"
   	onover.addevent="trace(onover);"
   	onhover.addevent="trace(onhover);"
   	onout.addevent="trace(onout);"
   	onclick.addevent="trace(onclick);"
   	ondown.addevent="trace(ondown);"
   	onup.addevent="trace(onup);"
   	onloaded.addevent="trace(onloaded);"
   	/>
<layer name="testlayer"
   	type="container"
   	style="teststyle"
   	bgalpha="1.0"
        ...
   	bgcapture="true"

   	onover="trace(onoverLayer);"
   	onhover="trace(onhoverLayer);"
   	onout="trace(onoutLayer);"
   	onclick="trace(onclickLayer);"
   	ondown="trace(ondownLayer);"
   	onup="trace(onupLayer);"
   	onloaded="trace(onloadedLayer);"
   	/>

Sergey74

Intermediate

Posts: 193

Location: Russia, Chelyabinsk

Occupation: professional noob

  • Send private message

166

Saturday, April 11th 2020, 5:17pm

toosten,
I do not understand your answer. onhover - works, onhover.addevent - doesn't work
translation difficulties *huh*

toosten

Intermediate

Posts: 521

Location: Berlin

Occupation: Software-Entwickler bei VR-Easy ( HTML, JS, PHP, krpano, C++, Java )

  • Send private message

167

Saturday, April 11th 2020, 5:30pm

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
<krpano onstart="showlog()">
	
	<!-- view settings -->
	<view hlookat="0" vlookat="0" maxpixelzoom="1.0" fovmax="150" limitview="auto" />
	
	<preview type="grid" />
	
	<style name="teststyle"
   	onover.addevent=" trace(onoverStyle);"
   	onhover.addevent=" trace(onhoverStyle);"
   	onout.addevent=" trace(onoutStyle);"
   	onclick.addevent=" trace(onclickStyle);"
   	ondown.addevent=" trace(ondownStyle);"
   	onup.addevent=" trace(onupStyle);"
   	onloaded.addevent=" trace(onloadedStyle);"
   	/>

	<layer name="testlayer"
   	type="container"
   	style="teststyle"
   	bgalpha="1.0"
	bgcolor="0xff0000"
   	bgcapture="true"
	width="200"
	height="200"

	/>

</krpano>


INFO: krpano 1.20.5 (build 2020-03-05)
INFO: HTML5/Desktop - Firefox 75.0 - WebGL
INFO: Registered to:
INFO: onloadedStyle
INFO: onoverStyle
INFO: onoutStyle
INFO: onoverStyle
INFO: onoutStyle

toosten

Intermediate

Posts: 521

Location: Berlin

Occupation: Software-Entwickler bei VR-Easy ( HTML, JS, PHP, krpano, C++, Java )

  • Send private message

168

Saturday, April 11th 2020, 5:33pm

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
<krpano onstart="showlog()">
	
	<!-- view settings -->
	<view hlookat="0" vlookat="0" maxpixelzoom="1.0" fovmax="150" limitview="auto" />
	
	<preview type="grid" />
	
	<style name="teststyle"
   	onover.addevent=" trace(onoverStyle);"
   	onhover.addevent=" trace(onhoverStyle);"
   	onout.addevent=" trace(onoutStyle);"
   	onclick.addevent=" trace(onclickStyle);"
   	ondown.addevent=" trace(ondownStyle);"
   	onup.addevent=" trace(onupStyle);"
   	onloaded.addevent=" trace(onloadedStyle);"
   	/>

	<layer name="testlayer"
   	type="container"
   	style="teststyle"
   	bgalpha="1.0"
	bgcolor="0xff0000"
   	bgcapture="true"
	width="200"
	height="200"

   	onover="trace(onoverLayer);"
   	onhover="trace(onhoverLayer);"
   	onout="trace(onoutLayer);"
   	onclick="trace(onclickLayer);"
   	ondown="trace(ondownLayer);"
   	onup="trace(onupLayer);"
   	onloaded="trace(onloadedLayer);"
	/>

</krpano>


INFO: krpano 1.20.5 (build 2020-03-05)
INFO: HTML5/Desktop - Firefox 75.0 - WebGL
INFO: Registered to:
INFO: onloadedStyle
INFO: onloadedLayer
INFO: onoverStyle
INFO: onoverLayer
INFO: onhoverStyle
INFO: onhoverLayer

Sergey74

Intermediate

Posts: 193

Location: Russia, Chelyabinsk

Occupation: professional noob

  • Send private message

169

Saturday, April 11th 2020, 5:48pm

Ok, I understand you. But there is one oddity, I don’t know if it is important or not.

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
<krpano onstart="showlog();">
  <!-- grid preview pano -->
  <preview type="grid();" />

  <!-- view/fov settings -->
  <view hlookat="0" vlookat="0" fovtype="VFOV" fov="90" fovmin="30" fovmax="150"/>


<style name="teststyle"
       onover.addevent="trace(onoverStyle);"
       onhover.addevent="trace(onhoverStyle);"
       />
<layer name="testlayer"
       type="container"
       style="teststyle"
       bgalpha="1.0"
       width="50%"
       height="50%"
       bgcapture="true"
       onover="trace(onoverLayer);"
       onhover="trace(onhoverLayer);"
       />
</krpano>

INFO: krpano 1.20.5 (build 2020-03-05)
INFO: HTML5/Desktop - Firefox 75.0 - WebGL
INFO: Registered to:
INFO: onoverStyle
INFO: onoverLayer
INFO: onhoverStyle
INFO: onhoverLayer

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<krpano onstart="showlog();">
  <!-- grid preview pano -->
  <preview type="grid();" />

  <!-- view/fov settings -->
  <view hlookat="0" vlookat="0" fovtype="VFOV" fov="90" fovmin="30" fovmax="150"/>


<style name="teststyle"
       onover.addevent="trace(onoverStyle);"
       onhover.addevent="trace(onhoverStyle);"
       />
<layer name="testlayer"
       type="container"
       style="teststyle"
       bgalpha="1.0"
       width="50%"
       height="50%"
       bgcapture="true"
       />
</krpano>

INFO: krpano 1.20.5 (build 2020-03-05)
INFO: HTML5/Desktop - Firefox 75.0 - WebGL
INFO: Registered to:
INFO: onoverStyle


P.S. those. until something is written in the layer, the style will not be processed
translation difficulties *huh*

toosten

Intermediate

Posts: 521

Location: Berlin

Occupation: Software-Entwickler bei VR-Easy ( HTML, JS, PHP, krpano, C++, Java )

  • Send private message

170

Saturday, April 11th 2020, 5:55pm

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
<krpano onstart="showlog();">
  <!-- grid preview pano -->
  <preview type="grid();" />

  <!-- view/fov settings -->
  <view hlookat="0" vlookat="0" fovtype="VFOV" fov="90" fovmin="30" fovmax="150" aerial="true"/>


<style name="teststyle"
       onover.addevent="trace(onoverStyle);"
       onhover.addevent="trace(onhoverStyle);"
       />
<layer name="testlayer"
       type="container"
       style="teststyle"
       bgalpha="1.0"
       width="50%"
       height="50%"
       bgcapture="true"
	   onover=" "
	   onhover=" "
       />
</krpano>


NULL & addevent = NULL *whistling*

171

Monday, April 13th 2020, 8:51am

Hi,

thanks for the reporting - yes, there is a bug here:
The onhover events added with 'addevent' currently work only when there is also an onhover event actually defined at the element itself.

This is a bug and will be fixed in 1.20.6.

Best regards,
Klaus

172

Tuesday, April 14th 2020, 1:09pm

hi everyone.
i'm new here and i have a question. does the new krpano update (1.20.5) work on macos catalina 10.15.4? i have a problem whit it. which version of krpano will work on my system?
best,
agu

173

Tuesday, April 14th 2020, 1:26pm

Hi,

i'm new here and i have a question. does the new krpano update (1.20.5) work on macos catalina 10.15.4?

Yes, it works.

Did you follow the installation instructions?
https://krpano.com/docu/osx/install/

Best regards,
Klaus

174

Tuesday, April 14th 2020, 5:14pm

Hi,

i'm new here and i have a question. does the new krpano update (1.20.5) work on macos catalina 10.15.4?

Yes, it works.

Did you follow the installation instructions?
https://krpano.com/docu/osx/install/

Best regards,
Klaus

it works now. thank you. i made a mistake in the installation process. need to read the instructions more carefully.
best,
agu

175

Wednesday, April 15th 2020, 5:12pm

krpano 1.20.6

Hi,

here a new krpano release:
krpano 1.20.6

It fixes several smaller bugs and problems, all details here:
Release Notes 1.20.6

Best regards,
Klaus

176

Wednesday, April 15th 2020, 6:08pm

Bugfix-Release and camroll

Hi Klaus,
...a Minor Release, but fantastic bugfix for camroll.

I will send you an example.



Thanks, Marco

Tuur

Sage

Posts: 3,822

Location: Netherlands

Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer

  • Send private message

Scott Witte

Intermediate

Posts: 382

Location: Milwaukee, WI USA

Occupation: Professional Photographer

  • Send private message

178

Wednesday, April 15th 2020, 6:36pm

Klaus,

SO much appreciate this "minor" release. Looking forward to testing it.

Tuur

Sage

Posts: 3,822

Location: Netherlands

Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer

  • Send private message

179

Tuesday, April 28th 2020, 5:25pm

Hi Klaus,

Perhaps this preview bug is still there (?)

i still find an/the issue on the preview image on larger panos.
I dropped a 66222 x 33111 pano on MAKE VTOUR (VR-OPT) Droplet
i see the issue since 1.20.3.. just checked.
I tried with psb and tif.. both the same issue.

When i use a smaller pano like 13k then it seems ok.

Let me know if you want me to send you the file or the droplet output. (Klaus only)
I'm on mac osx 10.15.4 (19E266)

Tuur *thumbsup*

Tuur

Sage

Posts: 3,822

Location: Netherlands

Occupation: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer

  • Send private message

180

Saturday, May 2nd 2020, 11:41pm

...
i have the same using the
MAKE VTOUR (MULTIRES) Droplet
or
MAKE PANO (MULTIRES) Droplet

When i add type="CUBESTRIP" to the preview it is ok.
I think this is a template/skin bug.

https://krpano.com/docu/xml/#preview.type

Quoted

Possible settings:
empty, not set, the default - when not set, the type of the preview image will be detected automatically by its image-size and side-aspect (e.g. 2:1 = sphere, 1:6 = cubestrip, ...)


@Klaus
Can you change that in next release?
Tuur *thumbsup*

Similar threads