Search found 145 matches

by 3DV
Tue Oct 24, 2023 3:41 pm
Forum: Pano2VR general
Topic: How to init variables when a new node open ?
Replies: 5
Views: 10945

Re: How to init variables when a new node open ?

I'm simply using an empty container in the root of the skin, called 'Initialize' for actions with sources like ConfigLoaded, NodeChanges, TilesReady etc.
Just name it something so you can easily find it again.
by 3DV
Tue Oct 24, 2023 3:32 pm
Forum: Pano2VR general
Topic: How to go to a specific node ?
Replies: 5
Views: 11019

Re: How to go to a specific node ?

Sorry if the example wasn't clear, the URL: part should not be in the input field. There were double _ in my reply, which shouldn't be there either.
Just this:

{$(*_nomDuZoomAvant)}
by 3DV
Mon Oct 23, 2023 7:26 pm
Forum: Pano2VR general
Topic: How to init variables when a new node open ?
Replies: 5
Views: 10945

Re: How to init variables when a new node open ?

You can use Actions with Action Source: Node Changed
by 3DV
Mon Oct 23, 2023 7:25 pm
Forum: Pano2VR general
Topic: How to go to a specific node ?
Replies: 5
Views: 11019

Re: How to go to a specific node ?

Make sure the final node string has { } around it, so it looks like this: {node11}.
So if _nomDuZoomAvant is node11, use URL: {$(*_nomDuZoomAvant)}
by 3DV
Fri Jun 30, 2023 10:43 am
Forum: Pano2VR/Object2VR Skins
Topic: No Thumbnail in V7.04a
Replies: 4
Views: 12778

Re: No Thumbnail in V7.04a

You're right, it doesn't work with 7.04a.
When creating new output with 7.03 everything works fine, when doing this with 7.04a the images don't load.

Looks like a bug in the added translation support for the skin.
by 3DV
Thu Jun 29, 2023 2:52 pm
Forum: Pano2VR/Object2VR Skins
Topic: No Thumbnail in V7.04a
Replies: 4
Views: 12778

Re: No Thumbnail in V7.04a

There's a problem in your project: you're adding an Assets folder that is inside your output folder. Don't keep your original content (images, panoramas, skin graphics etc) in the output folder, but in another subfolder of your project folder, like 'media' or 'design'. Personally I prefer using a fo...
by 3DV
Mon Jun 26, 2023 11:35 am
Forum: Pano2VR general
Topic: Custom images not loading in 7.0.4
Replies: 9
Views: 22061

Re: Custom images not loading in 7.0.4

Excellent, thanks!
by 3DV
Fri Jun 23, 2023 12:07 pm
Forum: Pano2VR general
Topic: Custom images not loading in 7.0.4
Replies: 9
Views: 22061

Custom images not loading in 7.0.4

After exporting with Pano2VR 7.0.4 custom hotspot images are not loaded: NS_BINDING_ABORTED
Happens on FireFox, Chrome and Edge. When exporting with Pano2VR 7.0.3 the hotspots show up fine.

Attached a screenshot of the Network activity.
by 3DV
Fri Jun 16, 2023 6:12 pm
Forum: Pano2VR general
Topic: Bug when using the same image twice in tour
Replies: 1
Views: 5903

Bug when using the same image twice in tour

Bug report for Pano2VR 7.0.3 on Windows 10 x64 : When using the same Input Image twice or more in a tour, and using Image Name: images\$n_o.jpg then an extra set of images for this node is generated every time. For example, I have three nodes with Input Images like this: node1 PanoA.jpg node2 PanoB....
by 3DV
Sun Jun 04, 2023 9:21 am
Forum: Pano2VR general
Topic: Action Settings / Set Variable Value / Operation
Replies: 3
Views: 6629

Re: Action Settings / Set Variable Value / Operation

These are boolean logic operators: SET: Sets the value to "true" or "false" AND: This operator returns "true" only if the existing value and the new value are both true. If one of the two values isn't "true", the AND operator returns "false". OR: Thi...
by 3DV
Sun May 21, 2023 2:20 pm
Forum: Pano2VR general
Topic: Hide hotspot on web, but not in VRTourviewer
Replies: 3
Views: 6352

Re: Hide hotspot on web, but not in VRTourviewer

In VR Tourviewer, if you use _hidden as part of the ID or Skin-ID, the hotspot will be hidden. So if you'd like to hide a hotspot on web and not in VR Tourviewer, use a different name for the Skin-ID, like ht_hide or ht_invisible. Then you can use that skin-ID for invisible hotspot in the skin that ...
by 3DV
Sat Apr 29, 2023 9:00 am
Forum: Pano2VR general
Topic: Hotspot flickering in v. 7.0.3
Replies: 5
Views: 8557

Re: Hotspot flickering in v. 7.0.3

Seeing the same here. To work around it, you can set the visibility of the text with a Logic Block instead of using the Mouse Enter and Mouse Leave actions: - Select the hsText - Click on the arrows icon next to Visible in the Appearance rollout - Set a Logic Block to Trigger: Mouse Over Parent = tr...
by 3DV
Mon Apr 24, 2023 8:34 am
Forum: Pano2VR general
Topic: A small problem with the variable
Replies: 1
Views: 6585

Re: A small problem with the variable

You're not doing anything wrong. This is caused by the 32-bit precision of the number, which allows for precise numbers up to about 7 decimal digits. If you'd like to round of your number to avoid adding up this lack of precision (or for display purposes), you can add an Action with 'Goto URL' to th...
by 3DV
Fri Apr 14, 2023 3:15 pm
Forum: Pano2VR general
Topic: damaged pano 2 vr project file
Replies: 1
Views: 5642

Re: damaged pano 2 vr project file

Both aren't Pano2VR project files. A Pano2VR project file is an XML file, which can also be opened with a text editor and starts with something like: <?xml version='1.0' encoding='utf-8'?> ALCALA DE LA SELVA is a damaged JPG image (you can see part of the sky when renaming to JPG) ALBENTOSA looks li...
by 3DV
Thu Apr 13, 2023 10:16 pm
Forum: Pano2VR general
Topic: left-aligned font in polygon hotspot
Replies: 7
Views: 15229

Re: left-aligned font in polygon hotspot

As I understand, the # refers to the ID of an element in the panorama, not in the skin.
The .* part is a RegEx expression: . (period) matches any single character except for a newline. * (asterisk) is a quantifier that means "zero or more occurrences of the preceding character or group".